From 2318d284e69dca7b1fa922996f64af7aff4024fe Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Fri, 4 Aug 2017 15:27:29 +0300 Subject: [PATCH 01/33] CHE-5892: Temporary state --- .../git/client/GitLocalizationConstant.java | 9 + .../ext/git/client/compare/ChangedItem.java | 29 +++ .../git/client/compare/ComparePresenter.java | 191 +++++++++++++----- .../ext/git/client/compare/CompareView.java | 36 +++- .../git/client/compare/CompareViewImpl.java | 49 +++-- .../changeslist/ChangesListPresenter.java | 2 +- .../changespanel/ChangesPanelPresenter.java | 2 +- .../client/GitLocalizationConstant.properties | 3 + 8 files changed, 234 insertions(+), 87 deletions(-) create mode 100644 plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItem.java diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java index edbb0536622..ab7f717dd16 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java @@ -72,6 +72,15 @@ public interface GitLocalizationConstant extends Messages { @Key("button.compare") String buttonCompare(); + @Key("button.save_changes") + String buttonSaveChanges(); + + @Key("button.next_diff") + String buttonNextDiff(); + + @Key("button.previous_diff") + String buttonPreviousDiff(); + @Key("console.tooltip.clear") String buttonClear(); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItem.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItem.java new file mode 100644 index 00000000000..06494a78b5d --- /dev/null +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItem.java @@ -0,0 +1,29 @@ +package org.eclipse.che.ide.ext.git.client.compare; + +import org.eclipse.che.ide.api.resources.File; +import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; + +/** + * Describes changed file in git comparison process. + * + * @author Mykola Morhun + */ +public class ChangedItem { + + private final File file; + private final Status status; + + public ChangedItem(File path, Status status) { + this.file = path; + this.status = status; + } + + public File getFile() { + return file; + } + + public Status getStatus() { + return status; + } + +} diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 93ebc0ffacc..fa6d7146c59 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -29,6 +29,8 @@ import org.eclipse.che.ide.api.dialogs.DialogFactory; import org.eclipse.che.ide.resource.Path; +import java.util.List; + import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.ADDED; @@ -39,6 +41,7 @@ * * @author Igor Vinokur * @author Vlad Zhukovskyi + * @author Mykola Morhun */ @Singleton public class ComparePresenter implements CompareView.ActionDelegate { @@ -51,10 +54,17 @@ public class ComparePresenter implements CompareView.ActionDelegate { private final GitLocalizationConstant locale; private final NotificationManager notificationManager; + private boolean compareWithLatest; + private List changedItems; + private int currentItemNumber; + private File comparedFile; private String revision; private String localContent; - private boolean compareWithLatest; + + private Path projectLocation; + private String revisionA; + private String revisionB; @Inject public ComparePresenter(AppContext appContext, @@ -75,59 +85,33 @@ public ComparePresenter(AppContext appContext, } /** - * Show compare window. + * Show compare window for given set of files between given revision and latest code version. * - * @param file - * file name with its full path - * @param status - * status of the file + * @param changedItems + * ordered list with touched files + * @param currentFile + * file which will be shown first * @param revision * hash of revision or branch */ - public void showCompareWithLatest(final File file, final Status status, final String revision) { - this.comparedFile = file; + public void showCompareWithLatest(final List changedItems, + final File currentFile, + final String revision) { + this.changedItems = changedItems; this.revision = revision; - this.compareWithLatest = true; - if (status.equals(ADDED)) { - showCompare(""); - return; - } - - final Container rootProject = GitUtil.getRootProject(file); - - if (rootProject == null) { - return; - } - - final Path relPath = file.getLocation().removeFirstSegments(rootProject.getLocation().segmentCount()); + this.compareWithLatest = true; - if (status.equals(DELETED)) { - service.showFileContent(rootProject.getLocation(), relPath, revision) - .then(content -> { - view.setTitle(file.getLocation().toString()); - view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); - view.show(content.getContent(), "", file.getLocation().toString(), false); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } else { - service.showFileContent(rootProject.getLocation(), relPath, revision) - .then(content -> { - showCompare(content.getContent()); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } + showCompareWithLatestForFile(findItem(currentFile)); } /** - * @param file - * path of the file - * @param status - * status of the file + * Shows compare window for given set of files between specified revisions. + * + * @param changedItems + * ordered list with touched files + * @param currentFile + * file which will be shown first * @param revisionA * hash of the first revision or branch. * If it is set to {@code null}, compare with empty repository state will be performed @@ -135,42 +119,52 @@ public void showCompareWithLatest(final File file, final Status status, final St * hash of the second revision or branch. * If it is set to {@code null}, compare with latest repository state will be performed */ - public void showCompareBetweenRevisions(final Path file, - final Status status, + public void showCompareBetweenRevisions(final List changedItems, + final File currentFile, @Nullable final String revisionA, @Nullable final String revisionB) { + this.changedItems = changedItems; + this.revisionA = revisionA; + this.revisionB = revisionB; + this.compareWithLatest = false; + this.projectLocation = appContext.getRootProject().getLocation(); + + showCompareBetweenRevisionsForFile(findItem(currentFile)); + } - final Path projectLocation = appContext.getRootProject().getLocation(); + private void showCompareBetweenRevisionsForFile(final ChangedItem item) { + final Path pathToFile = item.getFile().getLocation(); + final Status status = item.getStatus(); - view.setTitle(file.toString()); + view.setTitle(pathToFile.toString()); if (status == Status.ADDED) { - service.showFileContent(projectLocation, file, revisionB) + service.showFileContent(projectLocation, pathToFile, revisionB) .then(response -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA == null ? "" : revisionA + locale.compareReadOnlyTitle()); - view.show("", response.getContent(), file.toString(), true); + view.show("", response.getContent(), pathToFile.toString(), true); }) .catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else if (status == Status.DELETED) { - service.showFileContent(projectLocation, file, revisionA) + service.showFileContent(projectLocation, pathToFile, revisionA) .then(response -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); - view.show(response.getContent(), "", file.toString(), true); + view.show(response.getContent(), "", pathToFile.toString(), true); }) .catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else { - service.showFileContent(projectLocation, file, revisionA) + service.showFileContent(projectLocation, pathToFile, revisionA) .then(contentAResponse -> { - service.showFileContent(projectLocation, file, revisionB) + service.showFileContent(projectLocation, pathToFile, revisionB) .then(contentBResponse -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); - view.show(contentAResponse.getContent(), contentBResponse.getContent(), file.toString(), true); + view.show(contentAResponse.getContent(), contentBResponse.getContent(), pathToFile.toString(), true); }) .catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); @@ -179,6 +173,46 @@ public void showCompareBetweenRevisions(final Path file, } } + private void showCompareWithLatestForFile(final ChangedItem item) { + final File file = item.getFile(); + final Status status = item.getStatus(); + + this.comparedFile = file; + + if (status.equals(ADDED)) { + showCompare(""); + return; + } + + // Get project/module in which git repository is located. + final Container rootProject = GitUtil.getRootProject(file); + if (rootProject == null) { + return; + } + + final Path relPath = file.getLocation().removeFirstSegments(rootProject.getLocation().segmentCount()); + + if (status.equals(DELETED)) { + service.showFileContent(rootProject.getLocation(), relPath, revision) + .then(content -> { + view.setTitle(file.getLocation().toString()); + view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); + view.show(content.getContent(), "", file.getLocation().toString(), false); + }) + .catchError(error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } else { + service.showFileContent(rootProject.getLocation(), relPath, revision) + .then(content -> { + showCompare(content.getContent()); + }) + .catchError(error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } + } + @Override public void onClose(final String newContent) { if (!compareWithLatest || this.localContent == null || newContent.equals(localContent)) { @@ -205,6 +239,36 @@ public void onClose(final String newContent) { confirmCallback, cancelCallback).show(); } + @Override + public void onSaveChangesClicked() { + // TODO impl + view.setEnableSaveChangesButton(false); + } + + @Override + public void onNextDiffClicked() { + currentItemNumber++; + showCurrentDiff(); + } + + @Override + public void onPreviousDiffClicked() { + currentItemNumber--; + showCurrentDiff(); + } + + /** Updates diff window with diff for current item. */ + private void showCurrentDiff() { + if (compareWithLatest) { + showCompareWithLatestForFile(changedItems.get(currentItemNumber)); + } else { + showCompareBetweenRevisionsForFile(changedItems.get(currentItemNumber)); + } + + view.setEnableNextDiffButton(currentItemNumber != (changedItems.size() - 1)); + view.setEnablePreviousDiffButton(currentItemNumber != 0); + } + private void showCompare(final String remoteContent) { comparedFile.getContent().then(local -> { localContent = local; @@ -214,4 +278,21 @@ private void showCompare(final String remoteContent) { view.show(remoteContent, localContent, path, false); }); } + + /** + * Searches for given file in the changes files list and save it sequential number to class field. + * @throws RuntimeException + * if given file isn't contained in changed files + */ + private ChangedItem findItem(File file) { + currentItemNumber = 0; + for (ChangedItem changedItem : changedItems) { + if (changedItem.getFile().equals(file)) { + return changedItem; + } + currentItemNumber++; + } + throw new RuntimeException("File " + file + " not found in the diff list."); + } + } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java index 692e1b97c37..f4f1e4eb1c2 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java @@ -22,6 +22,25 @@ @ImplementedBy(CompareViewImpl.class) interface CompareView extends View { + interface ActionDelegate { + /** + * Performs some actions in response to user's closing the window. + * + * @param newContent + * new content of compare widget + */ + void onClose(String newContent); + + /** Performs save of editable panel in diff dialog. */ + void onSaveChangesClicked(); + + /** Shows next diff. */ + void onNextDiffClicked(); + + /** Shows previous diff. */ + void onPreviousDiffClicked(); + } + /** * Set a title for the window. * @@ -57,13 +76,12 @@ interface CompareView extends View { */ void show(String oldContent, String newContent, String file, boolean readOnly); - interface ActionDelegate { - /** - * Performs some actions in response to user's closing the window. - * - * @param newContent - * new content of compare widget - */ - void onClose(String newContent); - } + /** Change the enable state of the Save Changes button */ + void setEnableSaveChangesButton(boolean enabled); + + /** Change the enable state of the Next Diff button */ + void setEnableNextDiffButton(boolean enabled); + + /** Change the enable state of the Previous Diff button */ + void setEnablePreviousDiffButton(boolean enabled); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index ba4cc5f257c..2c188b08d8b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -12,8 +12,6 @@ import com.google.gwt.core.client.GWT; import com.google.gwt.dom.client.Document; -import com.google.gwt.event.dom.client.ClickEvent; -import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.user.client.ui.Button; @@ -29,7 +27,6 @@ import org.eclipse.che.ide.orion.compare.CompareConfig; import org.eclipse.che.ide.orion.compare.CompareFactory; import org.eclipse.che.ide.orion.compare.CompareWidget; -import org.eclipse.che.ide.orion.compare.CompareWidget.ContentCallBack; import org.eclipse.che.ide.orion.compare.FileOptions; import org.eclipse.che.ide.ui.loaders.request.LoaderFactory; import org.eclipse.che.ide.ui.window.Window; @@ -59,6 +56,10 @@ interface PreviewViewImplUiBinder extends UiBinder { @UiField(provided = true) final GitLocalizationConstant locale; + private final Button btnSaveChanges; + private final Button btnNextDiff; + private final Button btnPrevDiff; + private ActionDelegate delegate; private ThemeAgent themeAgent; private CompareWidget compare; @@ -78,22 +79,18 @@ public CompareViewImpl(CompareFactory compareFactory, setWidget(UI_BINDER.createAndBindUi(this)); - Button closeButton = createButton(locale.buttonClose(), "git-compare-close-btn", new ClickHandler() { - @Override - public void onClick(ClickEvent event) { - onClose(); - } - }); + Button closeButton = createButton(locale.buttonClose(), "git-compare-close-btn", event -> onClose()); + Button refreshButton = createButton(locale.buttonRefresh(), "git-compare-refresh-btn", event -> compare.refresh()); - Button refreshButton = createButton(locale.buttonRefresh(), "git-compare-refresh-btn", new ClickHandler() { - @Override - public void onClick(ClickEvent event) { - compare.refresh(); - } - }); + btnSaveChanges = createButton(locale.buttonSaveChanges(), "git-compare-save-changes-btn", event -> delegate.onSaveChangesClicked()); + btnNextDiff = createButton(locale.buttonNextDiff(), "git-compare-next-diff-btn", event -> delegate.onNextDiffClicked()); + btnPrevDiff = createButton(locale.buttonPreviousDiff(), "git-compare-prev-diff-btn", event -> delegate.onPreviousDiffClicked()); addButtonToFooter(closeButton); addButtonToFooter(refreshButton); + addButtonToFooter(btnSaveChanges); + addButtonToFooter(btnNextDiff); + addButtonToFooter(btnPrevDiff); comparePanel.getElement().setId(Document.get().createUniqueId()); } @@ -105,12 +102,7 @@ public void setDelegate(ActionDelegate delegate) { @Override protected void onClose() { - compare.getContent(new ContentCallBack() { - @Override - public void onContentReceived(String content) { - delegate.onClose(content); - } - }); + compare.getContent(content -> delegate.onClose(content)); } @Override @@ -148,4 +140,19 @@ public void show(String oldContent, String newContent, String fileName, boolean comparePanel.add(compare); } + @Override + public void setEnableSaveChangesButton(boolean enabled) { + btnSaveChanges.setEnabled(enabled); + } + + @Override + public void setEnableNextDiffButton(boolean enabled) { + btnNextDiff.setEnabled(enabled); + } + + @Override + public void setEnablePreviousDiffButton(boolean enabled) { + btnPrevDiff.setEnabled(enabled); + } + } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java index 37cdacad22a..836548edcc7 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java @@ -33,7 +33,7 @@ import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; /** - * Presenter for displaying list of changed files. + * Presenter for displaying window with list of changed files. * * @author Igor Vinokur * @author Vlad Zhukovskyi diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java index f7afb4bef18..b5684a57910 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java @@ -26,7 +26,7 @@ import static org.eclipse.che.ide.ext.git.client.compare.changespanel.ViewMode.TREE; /** - * Presenter for displaying window with list of changed files. + * Presenter for displaying list of changed files. * * @author Igor Vinokur * @author Vlad Zhukovskyi diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties index 5ceb701e80d..80c4aa4a2e2 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties @@ -29,6 +29,9 @@ button.no=No button.fetch=Fetch button.push=Push button.pull=Pull +button.save_changes=Save Changes +button.next_diff=Next +button.previous_diff=Prev ############MESSAGES################ messages.unableGetSshKey = Failed to get private ssh key. \ From 28ea7d48c7769e6eda11e42e36cc5daaff2f6c61 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Mon, 7 Aug 2017 16:29:06 +0300 Subject: [PATCH 02/33] CHE-5892: Use an object to hold git diff data Signed-off-by: Mykola Morhun --- .../action/CompareWithLatestAction.java | 19 +--- .../ext/git/client/compare/ChangedItem.java | 29 ----- .../ext/git/client/compare/ChangedItems.java | 81 ++++++++++++++ .../git/client/compare/ComparePresenter.java | 100 ++++++++++-------- .../changeslist/ChangesListPresenter.java | 48 +++------ .../changespanel/ChangesPanelPresenter.java | 32 ++---- .../changespanel/ChangesPanelView.java | 4 +- .../changespanel/ChangesPanelViewImpl.java | 8 +- .../git/client/history/HistoryPresenter.java | 17 ++- 9 files changed, 176 insertions(+), 162 deletions(-) delete mode 100644 plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItem.java create mode 100644 plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java index 68ffaf79427..3467d36b9ff 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java @@ -20,6 +20,7 @@ import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.api.resources.Resource; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; @@ -91,21 +92,11 @@ public void actionPerformed(ActionEvent e) { dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), locale.compareMessageIdenticalContentText(), null).show(); } else { - final String[] changedFiles = diff.split("\n"); - if (changedFiles.length == 1) { - project.getFile(changedFiles[0].substring(2)).then(file -> { - if (file.isPresent()) { - comparePresenter.showCompareWithLatest(file.get(), - defineStatus(changedFiles[0].substring(0, 1)), - REVISION); - } - }); + ChangedItems changedItems = new ChangedItems(project, diff); + if (changedItems.getFilesQuantity() == 1) { + comparePresenter.showCompareWithLatest(changedItems, null, REVISION); } else { - Map items = new HashMap<>(); - for (String item : changedFiles) { - items.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); - } - changesListPresenter.show(items, REVISION, null, project); + changesListPresenter.show(changedItems, REVISION, null); } } }) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItem.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItem.java deleted file mode 100644 index 06494a78b5d..00000000000 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItem.java +++ /dev/null @@ -1,29 +0,0 @@ -package org.eclipse.che.ide.ext.git.client.compare; - -import org.eclipse.che.ide.api.resources.File; -import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; - -/** - * Describes changed file in git comparison process. - * - * @author Mykola Morhun - */ -public class ChangedItem { - - private final File file; - private final Status status; - - public ChangedItem(File path, Status status) { - this.file = path; - this.status = status; - } - - public File getFile() { - return file; - } - - public Status getStatus() { - return status; - } - -} diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java new file mode 100644 index 00000000000..19305203dd8 --- /dev/null +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java @@ -0,0 +1,81 @@ +package org.eclipse.che.ide.ext.git.client.compare; + +import org.eclipse.che.ide.api.resources.Project; +import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; + +import java.util.ArrayList; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + +import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; + +/** + * Describes changed files in git comparison process. + * + * @author Mykola Morhun + */ +public class ChangedItems { + + private final Project project; + private final LinkedHashMap changedFilesStatuses; + private final List changedFilesList; + private final int length; + + /** + * Creates user-friendly representation of git diff. + * + * @param project + * the project under diff operation + * @param diff + * plain result of git diff operation + */ + public ChangedItems(Project project, String diff) { + this.project = project; + + changedFilesStatuses = new LinkedHashMap<>(); + for (String item : diff.split("\n")) { + changedFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); + } + + changedFilesList = new ArrayList<>(changedFilesStatuses.keySet()); + + length = changedFilesList.size(); + } + + public Project getProject() { + return project; + } + + /** + * @return number of files in the diff + */ + public int getFilesQuantity() { + return length; + } + + public boolean isEmpty() { + return 0 == length; + } + + public Map getChangedItemsMap() { + return changedFilesStatuses; + } + + public List getChangedItemsList() { + return changedFilesList; + } + + public Status getStatusByPath(String pathToChangedItem) { + return changedFilesStatuses.get(pathToChangedItem); + } + + public Status getStatusByIndex(int index) { + return changedFilesStatuses.get(changedFilesList.get(index)); + } + + public String getItemByIndex(int index) { + return changedFilesList.get(index); + } + +} diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index fa6d7146c59..4961a7d63f9 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -29,8 +29,6 @@ import org.eclipse.che.ide.api.dialogs.DialogFactory; import org.eclipse.che.ide.resource.Path; -import java.util.List; - import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.ADDED; @@ -54,9 +52,9 @@ public class ComparePresenter implements CompareView.ActionDelegate { private final GitLocalizationConstant locale; private final NotificationManager notificationManager; - private boolean compareWithLatest; - private List changedItems; - private int currentItemNumber; + private boolean compareWithLatest; + private ChangedItems changedItems; + private int currentItemIndex; private File comparedFile; private String revision; @@ -88,30 +86,31 @@ public ComparePresenter(AppContext appContext, * Show compare window for given set of files between given revision and latest code version. * * @param changedItems - * ordered list with touched files + * ordered touched files * @param currentFile - * file which will be shown first + * file which will be shown first, if null then the first from the list will be shown * @param revision * hash of revision or branch */ - public void showCompareWithLatest(final List changedItems, - final File currentFile, + public void showCompareWithLatest(final ChangedItems changedItems, + @Nullable final String currentFile, final String revision) { this.changedItems = changedItems; this.revision = revision; this.compareWithLatest = true; - showCompareWithLatestForFile(findItem(currentFile)); + setupCurrentFile(currentFile); + showCompareForCurrentFile(); } /** * Shows compare window for given set of files between specified revisions. * * @param changedItems - * ordered list with touched files + * ordered touched files * @param currentFile - * file which will be shown first + * file which will be shown first, if null then the first from the list will be shown * @param revisionA * hash of the first revision or branch. * If it is set to {@code null}, compare with empty repository state will be performed @@ -119,8 +118,8 @@ public void showCompareWithLatest(final List changedItems, * hash of the second revision or branch. * If it is set to {@code null}, compare with latest repository state will be performed */ - public void showCompareBetweenRevisions(final List changedItems, - final File currentFile, + public void showCompareBetweenRevisions(final ChangedItems changedItems, + @Nullable final String currentFile, @Nullable final String revisionA, @Nullable final String revisionB) { this.changedItems = changedItems; @@ -128,14 +127,34 @@ public void showCompareBetweenRevisions(final List changedItems, this.revisionB = revisionB; this.compareWithLatest = false; - this.projectLocation = appContext.getRootProject().getLocation(); + this.projectLocation = appContext.getRootProject().getLocation(); // TODO replace with given project + + setupCurrentFile(currentFile); + showCompareForCurrentFile(); + } - showCompareBetweenRevisionsForFile(findItem(currentFile)); + /** + * Shows comparison for selected file. + * Type of comparison to show depends on {@code compareWithLatest} field. + */ + private void showCompareForCurrentFile() { + changedItems.getProject() + .getFile(changedItems.getItemByIndex(currentItemIndex)) + .then(file -> { + if (file.isPresent()) { + if (compareWithLatest) { + showCompareBetweenRevisionsForFile(file.get(), changedItems.getStatusByIndex(currentItemIndex)); + } else { + showCompareWithLatestForFile(file.get(), changedItems.getStatusByIndex(currentItemIndex)); + } + } + }).catchError(error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); } - private void showCompareBetweenRevisionsForFile(final ChangedItem item) { - final Path pathToFile = item.getFile().getLocation(); - final Status status = item.getStatus(); + private void showCompareBetweenRevisionsForFile(File file, Status status) { + final Path pathToFile = file.getLocation(); view.setTitle(pathToFile.toString()); if (status == Status.ADDED) { @@ -173,10 +192,7 @@ private void showCompareBetweenRevisionsForFile(final ChangedItem item) { } } - private void showCompareWithLatestForFile(final ChangedItem item) { - final File file = item.getFile(); - final Status status = item.getStatus(); - + private void showCompareWithLatestForFile(File file, Status status) { this.comparedFile = file; if (status.equals(ADDED)) { @@ -247,26 +263,23 @@ public void onSaveChangesClicked() { @Override public void onNextDiffClicked() { - currentItemNumber++; - showCurrentDiff(); + currentItemIndex++; + updateDiff(); } @Override public void onPreviousDiffClicked() { - currentItemNumber--; - showCurrentDiff(); + currentItemIndex--; + updateDiff(); } /** Updates diff window with diff for current item. */ - private void showCurrentDiff() { - if (compareWithLatest) { - showCompareWithLatestForFile(changedItems.get(currentItemNumber)); - } else { - showCompareBetweenRevisionsForFile(changedItems.get(currentItemNumber)); - } + private void updateDiff() { + // TODO check for changes and show dialog + showCompareForCurrentFile(); - view.setEnableNextDiffButton(currentItemNumber != (changedItems.size() - 1)); - view.setEnablePreviousDiffButton(currentItemNumber != 0); + view.setEnableNextDiffButton(currentItemIndex != (changedItems.getFilesQuantity() - 1)); + view.setEnablePreviousDiffButton(currentItemIndex != 0); } private void showCompare(final String remoteContent) { @@ -281,18 +294,15 @@ private void showCompare(final String remoteContent) { /** * Searches for given file in the changes files list and save it sequential number to class field. - * @throws RuntimeException - * if given file isn't contained in changed files + * + * @param currentFile + * name of file to set up as current; if null or invalid, the first one will be chosen. */ - private ChangedItem findItem(File file) { - currentItemNumber = 0; - for (ChangedItem changedItem : changedItems) { - if (changedItem.getFile().equals(file)) { - return changedItem; - } - currentItemNumber++; + private void setupCurrentFile(@Nullable String currentFile) { + currentItemIndex = changedItems.getChangedItemsList().indexOf(currentFile); + if (currentItemIndex == -1) { + currentItemIndex = 0; } - throw new RuntimeException("File " + file + " not found in the diff list."); } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java index 836548edcc7..256bfc5f4d7 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java @@ -15,50 +15,39 @@ import org.eclipse.che.commons.annotation.Nullable; import org.eclipse.che.ide.api.data.tree.Node; -import org.eclipse.che.ide.api.notification.NotificationManager; -import org.eclipse.che.ide.api.resources.Project; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; -import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; -import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangedFileNode; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangedFolderNode; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangesPanelPresenter; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangesPanelView; -import org.eclipse.che.ide.resource.Path; import org.eclipse.che.ide.ui.smartTree.event.SelectionChangedEvent.SelectionChangedHandler; -import java.util.Map; - import static com.google.common.collect.Iterables.getFirst; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; /** * Presenter for displaying window with list of changed files. * * @author Igor Vinokur * @author Vlad Zhukovskyi + * @author Mykola Morhun */ @Singleton public class ChangesListPresenter implements ChangesListView.ActionDelegate { private final ChangesListView view; - private final NotificationManager notificationManager; private final ChangesPanelPresenter changesPanelPresenter; private final ComparePresenter comparePresenter; - private Project project; - private String file; - private String revisionA; - private String revisionB; - private Status status; + private ChangedItems changedItems; + private String file; + private String revisionA; + private String revisionB; @Inject public ChangesListPresenter(ChangesListView view, ComparePresenter comparePresenter, - NotificationManager notificationManager, ChangesPanelPresenter changesPanelPresenter) { this.comparePresenter = comparePresenter; this.view = view; - this.notificationManager = notificationManager; this.changesPanelPresenter = changesPanelPresenter; this.changesPanelPresenter.setFileNodeDoubleClickHandler((path, status) -> this.onCompareClicked()); this.view.setDelegate(this); @@ -74,7 +63,6 @@ public ChangesListPresenter(ChangesListView view, } ChangesListPresenter.this.view.setEnableCompareButton(true); ChangesListPresenter.this.file = node.getName(); - ChangesListPresenter.this.status = ((ChangedFileNode)node).getStatus(); }; ChangesPanelView changesPanelView = changesPanelPresenter.getView(); @@ -83,10 +71,10 @@ public ChangesListPresenter(ChangesListView view, } /** - * Show window with changed files. + * Shows window with changed files. * - * @param changedFiles - * Map with files and their status + * @param changedItems + * files and their status * @param revisionA * hash of the first revision or branch. * If it is set to {@code null}, compare with empty repository state will be performed @@ -94,15 +82,15 @@ public ChangesListPresenter(ChangesListView view, * hash of the second revision or branch. * If it is set to {@code null}, compare with latest repository state will be performed */ - public void show(Map changedFiles, @Nullable String revisionA, @Nullable String revisionB, Project project) { - this.project = project; + public void show(ChangedItems changedItems, @Nullable String revisionA, @Nullable String revisionB) { + this.changedItems = changedItems; this.revisionA = revisionA; this.revisionB = revisionB; view.setEnableCompareButton(false); view.showDialog(); - changesPanelPresenter.show(changedFiles); + changesPanelPresenter.show(changedItems); } @Override @@ -113,17 +101,9 @@ public void onCloseClicked() { @Override public void onCompareClicked() { if (revisionB == null) { - project.getFile(file) - .then(file -> { - if (file.isPresent()) { - comparePresenter.showCompareWithLatest(file.get(), status, revisionA); - } - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); + comparePresenter.showCompareWithLatest(changedItems, file, revisionA); } else { - comparePresenter.showCompareBetweenRevisions(Path.valueOf(file), status, revisionA, revisionB); + comparePresenter.showCompareBetweenRevisions(changedItems, file, revisionA, revisionB); } } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java index b5684a57910..0d0f47d1851 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java @@ -12,16 +12,11 @@ import com.google.inject.Inject; -import org.eclipse.che.ide.api.app.AppContext; -import org.eclipse.che.ide.api.notification.NotificationManager; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; -import java.util.Map; - -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import static org.eclipse.che.ide.ext.git.client.compare.changespanel.ViewMode.LIST; import static org.eclipse.che.ide.ext.git.client.compare.changespanel.ViewMode.TREE; @@ -33,37 +28,26 @@ */ public class ChangesPanelPresenter implements ChangesPanelView.ActionDelegate { - private final ChangesPanelView view; + private static final String REVISION = "HEAD"; + + private final ChangesPanelView view; private final GitLocalizationConstant locale; - private Map changedFiles; - private ViewMode viewMode; + private ChangedItems changedFiles; + private ViewMode viewMode; private FileNodeDoubleClickHandler fileNodeDoubleClickHandler; @Inject public ChangesPanelPresenter(GitLocalizationConstant locale, ChangesPanelView view, - AppContext appContext, - NotificationManager notificationManager, ComparePresenter comparePresenter) { this.locale = locale; this.view = view; this.view.setDelegate(this); this.viewMode = TREE; - this.fileNodeDoubleClickHandler = (path, status) -> { - appContext.getRootProject() - .getFile(path) - .then(file -> { - if (file.isPresent()) { - comparePresenter.showCompareWithLatest(file.get(), status, "HEAD"); - } - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - }; + this.fileNodeDoubleClickHandler = (path, status) -> comparePresenter.showCompareWithLatest(changedFiles, path, REVISION); } /** @@ -72,7 +56,7 @@ public ChangesPanelPresenter(GitLocalizationConstant locale, * @param changedFiles * Map with files and their status */ - public void show(Map changedFiles) { + public void show(ChangedItems changedFiles) { this.changedFiles = changedFiles; if (changedFiles.isEmpty()) { view.setTextToChangeViewModeButton(locale.changeListRowListViewButtonText()); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java index d0ef8b32a82..d0080ea8104 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java @@ -11,6 +11,7 @@ package org.eclipse.che.ide.ext.git.client.compare.changespanel; import org.eclipse.che.ide.api.mvp.View; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.resource.Path; import org.eclipse.che.ide.ui.smartTree.Tree; @@ -18,7 +19,6 @@ import org.eclipse.che.ide.ui.smartTree.event.SelectionChangedEvent.SelectionChangedHandler; import org.eclipse.che.ide.ui.smartTree.presentation.PresentationRenderer; -import java.util.Map; import java.util.Set; /** @@ -51,7 +51,7 @@ interface ActionDelegate { */ void addSelectionHandler(SelectionChangedHandler handler); - void viewChangedFiles(Map files, ViewMode viewMode); + void viewChangedFiles(ChangedItems files, ViewMode viewMode); /** * Clear panel from old nodes. diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java index eb0d77b2701..a6cffc66530 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java @@ -23,6 +23,7 @@ import org.eclipse.che.ide.api.data.tree.Node; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.ext.git.client.GitResources; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.project.shared.NodesResources; import org.eclipse.che.ide.resource.Path; @@ -107,14 +108,15 @@ public void addSelectionHandler(SelectionChangedHandler handler) { } @Override - public void viewChangedFiles(Map files, ViewMode viewMode) { + public void viewChangedFiles(ChangedItems files, ViewMode viewMode) { NodeStorage nodeStorage = tree.getNodeStorage(); nodeStorage.clear(); if (viewMode == TREE) { - getGroupedNodes(files).forEach(nodeStorage::add); + getGroupedNodes(files.getChangedItemsMap()).forEach(nodeStorage::add); tree.expandAll(); } else { - files.keySet().forEach(file -> nodeStorage.add(new ChangedFileNode(file, files.get(file), nodesResources, delegate, false))); + files.getChangedItemsList().forEach( + file -> nodeStorage.add(new ChangedFileNode(file, files.getStatusByPath(file), nodesResources, delegate, false))); } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java index d6b26de0804..79eb3e7dc21 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java @@ -21,6 +21,7 @@ import org.eclipse.che.ide.api.notification.NotificationManager; import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.FileStatus; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; @@ -171,18 +172,12 @@ private void compare() { dialogFactory.createMessageDialog(locale.historyTitle(), locale.historyNothingToDisplay(), null).show(); return; } - final String[] changedFiles = diff.split("\n"); - if (changedFiles.length == 1) { - comparePresenter.showCompareBetweenRevisions(Path.valueOf(diff.substring(2)), - defineStatus(diff.substring(0, 1)), - revisionA, - revisionB); + + ChangedItems changedItems = new ChangedItems(project, diff); + if (changedItems.getFilesQuantity() == 1) { + comparePresenter.showCompareBetweenRevisions(changedItems, null, revisionA, revisionB); } else { - Map items = new HashMap<>(); - for (String item : changedFiles) { - items.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); - } - changesListPresenter.show(items, revisionA, revisionB, project); + changesListPresenter.show(changedItems, revisionA, revisionB); } }) .catchError(error -> { From 5814596290569ea084731459114702c22420024c Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 9 Aug 2017 14:30:39 +0300 Subject: [PATCH 03/33] CHE-5892: Draft solution. --- .../git/client/compare/ComparePresenter.java | 75 +++++++++++++------ .../ext/git/client/compare/CompareView.java | 6 ++ .../git/client/compare/CompareViewImpl.java | 5 ++ 3 files changed, 63 insertions(+), 23 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 4961a7d63f9..0f93fbf4e58 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -127,7 +127,7 @@ public void showCompareBetweenRevisions(final ChangedItems changedItems, this.revisionB = revisionB; this.compareWithLatest = false; - this.projectLocation = appContext.getRootProject().getLocation(); // TODO replace with given project + this.projectLocation = appContext.getRootProject().getLocation(); setupCurrentFile(currentFile); showCompareForCurrentFile(); @@ -231,23 +231,15 @@ private void showCompareWithLatestForFile(File file, Status status) { @Override public void onClose(final String newContent) { - if (!compareWithLatest || this.localContent == null || newContent.equals(localContent)) { + if (!isEdited(newContent)) { view.hide(); return; } - ConfirmCallback confirmCallback = () -> comparedFile.updateContent(newContent) - .then(ignored -> { - final Container parent = comparedFile.getParent(); - - if (parent != null) { - parent.synchronize(); - } - - eventBus.fireEvent(new FileContentUpdateEvent(comparedFile.getLocation() - .toString())); - view.hide(); - }); + ConfirmCallback confirmCallback = () -> { + saveContent(newContent); + view.hide(); + }; CancelCallback cancelCallback = view::hide; @@ -257,29 +249,43 @@ public void onClose(final String newContent) { @Override public void onSaveChangesClicked() { - // TODO impl - view.setEnableSaveChangesButton(false); + view.getEditableContent(content -> { + if (isEdited(content)) { + saveContent(content); + } + }); } @Override public void onNextDiffClicked() { - currentItemIndex++; - updateDiff(); + view.getEditableContent(content -> { + if (isEdited(content)) { + saveContent(content); + } + + currentItemIndex++; + updateDiff(); + }); } @Override public void onPreviousDiffClicked() { - currentItemIndex--; - updateDiff(); + view.getEditableContent(content -> { + if (isEdited(content)) { + saveContent(content); + } + + currentItemIndex--; + updateDiff(); + }); } /** Updates diff window with diff for current item. */ private void updateDiff() { - // TODO check for changes and show dialog - showCompareForCurrentFile(); - view.setEnableNextDiffButton(currentItemIndex != (changedItems.getFilesQuantity() - 1)); view.setEnablePreviousDiffButton(currentItemIndex != 0); + + showCompareForCurrentFile(); } private void showCompare(final String remoteContent) { @@ -305,4 +311,27 @@ private void setupCurrentFile(@Nullable String currentFile) { } } + /** @return true if user edited content in the compare widget i.e. initial and current isn't equal. */ + private boolean isEdited(String newContent) { + return compareWithLatest && this.localContent != null && !newContent.equals(localContent); + } + + /** Saves given contents into file under edit. */ + private void saveContent(String content) { + comparedFile.updateContent(content) + .then(ignored -> { + final Container parent = comparedFile.getParent(); + + if (parent != null) { + parent.synchronize(); + } + + eventBus.fireEvent(new FileContentUpdateEvent(comparedFile.getLocation() + .toString())); + }) + .catchError(error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } + } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java index f4f1e4eb1c2..2b0ca9e864a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java @@ -41,6 +41,12 @@ interface ActionDelegate { void onPreviousDiffClicked(); } + interface ContentConsumer { + void processContent(String content); + } + + void getEditableContent(ContentConsumer contentConsumer); + /** * Set a title for the window. * diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index 2c188b08d8b..531f41ab9d8 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -105,6 +105,11 @@ protected void onClose() { compare.getContent(content -> delegate.onClose(content)); } + @Override + public void getEditableContent(ContentConsumer contentConsumer) { + compare.getContent(contentConsumer::processContent); + } + @Override public void setColumnTitles(String leftTitle, String rightTitle) { this.leftTitle.setText(leftTitle); From 88bc81936e15104d464913eb50a3632d567319a3 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 9 Aug 2017 16:11:02 +0300 Subject: [PATCH 04/33] CHE-5892: Fix build and tests Signed-off-by: Mykola Morhun --- .../git/client/commit/CommitPresenter.java | 19 +++++--------- .../ide/ext/git/client/commit/CommitView.java | 2 +- .../ext/git/client/compare/ChangedItems.java | 26 +++++++++++++++++++ .../git/client/compare/ComparePresenter.java | 15 ++++------- .../branchlist/BranchListPresenter.java | 19 ++++---------- .../revisionslist/RevisionListPresenter.java | 10 +++---- .../client/commit/CommitPresenterTest.java | 11 ++++++-- .../client/history/HistoryPresenterTest.java | 18 ++++++++----- 8 files changed, 66 insertions(+), 54 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index 419a02c24c0..857f326cc4a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -24,6 +24,7 @@ import org.eclipse.che.ide.commons.exception.ServerException; import org.eclipse.che.ide.ext.git.client.DateTimeFormatter; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsole; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsoleFactory; @@ -76,7 +77,7 @@ public class CommitPresenter implements CommitView.ActionDelegate { private final ProcessesPanelPresenter consolesPanelPresenter; private Project project; - private Set allFiles; + private List allFiles; private List filesToCommit; @Inject @@ -165,26 +166,18 @@ private void showAskForAmendDialog() { } private void show(@Nullable String diff) { - Map files = toFileStatusMap(diff); + ChangedItems changedItems = new ChangedItems(project, diff); filesToCommit.clear(); - allFiles = files.keySet(); + allFiles = changedItems.getChangedItemsList(); view.setEnableCommitButton(!view.getMessage().isEmpty()); view.focusInMessageField(); view.showDialog(); - changesPanelPresenter.show(files); + changesPanelPresenter.show(changedItems); view.setMarkedCheckBoxes(stream(appContext.getResources()).map(resource -> resource.getLocation().removeFirstSegments(1)) .collect(Collectors.toSet())); } - private Map toFileStatusMap(@Nullable String diff) { - Map items = new HashMap<>(); - if (!isNullOrEmpty(diff)) { - stream(diff.split("\n")).forEach(item -> items.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1)))); - } - return items; - } - @Override public void onCommitClicked() { Path location = project.getLocation(); @@ -279,7 +272,7 @@ public void onFileNodeCheckBoxValueChanged(Path path, boolean newCheckBoxValue) } @Override - public Set getChangedFiles() { + public List getChangedFiles() { return allFiles; } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java index ff22690e214..91ad7d3c1e6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java @@ -43,7 +43,7 @@ interface ActionDelegate { void setAmendCommitMessage(); /** Get list of changed files paths. */ - Set getChangedFiles(); + List getChangedFiles(); } /** @return entered message */ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java index 19305203dd8..9a17d5374d4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2012-2017 Codenvy, S.A. + * 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: + * Codenvy, S.A. - initial API and implementation + *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare; import org.eclipse.che.ide.api.resources.Project; @@ -7,6 +17,7 @@ import java.util.LinkedHashMap; import java.util.List; import java.util.Map; +import java.util.Objects; import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; @@ -78,4 +89,19 @@ public String getItemByIndex(int index) { return changedFilesList.get(index); } + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + ChangedItems that = (ChangedItems)o; + return Objects.equals(project, that.project) && + Objects.equals(changedFilesStatuses, that.changedFilesStatuses) && + Objects.equals(changedFilesList, that.changedFilesList); + } + + @Override + public int hashCode() { + return Objects.hash(project, changedFilesStatuses, changedFilesList); + } + } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 0f93fbf4e58..8144ba97523 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -138,6 +138,9 @@ public void showCompareBetweenRevisions(final ChangedItems changedItems, * Type of comparison to show depends on {@code compareWithLatest} field. */ private void showCompareForCurrentFile() { + view.setEnableNextDiffButton(currentItemIndex != (changedItems.getFilesQuantity() - 1)); + view.setEnablePreviousDiffButton(currentItemIndex != 0); + changedItems.getProject() .getFile(changedItems.getItemByIndex(currentItemIndex)) .then(file -> { @@ -264,7 +267,7 @@ public void onNextDiffClicked() { } currentItemIndex++; - updateDiff(); + showCompareForCurrentFile(); }); } @@ -276,18 +279,10 @@ public void onPreviousDiffClicked() { } currentItemIndex--; - updateDiff(); + showCompareForCurrentFile(); }); } - /** Updates diff window with diff for current item. */ - private void updateDiff() { - view.setEnableNextDiffButton(currentItemIndex != (changedItems.getFilesQuantity() - 1)); - view.setEnablePreviousDiffButton(currentItemIndex != 0); - - showCompareForCurrentFile(); - } - private void showCompare(final String remoteContent) { comparedFile.getContent().then(local -> { localContent = local; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java index f61ab503fbd..c319fc5fd3a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java @@ -21,6 +21,7 @@ import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.api.resources.Resource; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; @@ -124,21 +125,11 @@ public void onCompareClicked() { dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), locale.compareMessageIdenticalContentText(), null).show(); } else { - final String[] changedFiles = diff.split("\n"); - if (changedFiles.length == 1) { - project.getFile(changedFiles[0].substring(2)).then(file -> { - if (file.isPresent()) { - comparePresenter.showCompareWithLatest(file.get(), - defineStatus(changedFiles[0].substring(0, 1)), - selectedBranch.getName()); - } - }); + ChangedItems changedItems = new ChangedItems(project, diff); + if (changedItems.getFilesQuantity() == 1) { + comparePresenter.showCompareWithLatest(changedItems, null, selectedBranch.getName()); } else { - Map items = new HashMap<>(); - for (String item : changedFiles) { - items.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); - } - changesListPresenter.show(items, selectedBranch.getName(), null, project); + changesListPresenter.show(changedItems, selectedBranch.getName(), null); } } }) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java index 5a332ac6a26..3f78aa2abfe 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java @@ -21,6 +21,7 @@ import org.eclipse.che.ide.api.resources.File; import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.api.dialogs.DialogFactory; import org.eclipse.che.ide.resource.Path; @@ -150,13 +151,8 @@ private void compare() { dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), locale.compareMessageIdenticalContentText(), null).show(); } else { - appContext.getRootProject().getFile(diff.substring(2)).then(file -> { - if (file.isPresent()) { - comparePresenter.showCompareWithLatest(file.get(), defineStatus(diff.substring(0, 1)), - selectedRevision.getId()); - } - }); - + ChangedItems changedItems = new ChangedItems(project, diff); + comparePresenter.showCompareWithLatest(changedItems, null, selectedRevision.getId()); } }) .catchError(arg -> { diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java index ea8525a3296..dbc495e6d36 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java @@ -26,6 +26,7 @@ import org.eclipse.che.ide.commons.exception.ServerException; import org.eclipse.che.ide.ext.git.client.BaseTest; import org.eclipse.che.ide.ext.git.client.DateTimeFormatter; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangesPanelPresenter; import org.eclipse.che.ide.resource.Path; import org.junit.Test; @@ -143,6 +144,9 @@ public void shouldShowMessageWhenNothingToCommit() throws Exception { @Test public void shouldShowDialog() throws Exception { + final String diff = "M file"; + final ChangedItems changedItems = new ChangedItems(project, diff); + ConfirmDialog dialog = mock(ConfirmDialog.class); when(dialogFactory.createConfirmDialog(anyString(), anyString(), @@ -159,7 +163,7 @@ public void shouldShowDialog() throws Exception { verify(view).setEnableAmendCheckBox(true); verify(view).setEnablePushAfterCommitCheckBox(true); - verify(changesPanelPresenter).show(eq(singletonMap("file", MODIFIED))); + verify(changesPanelPresenter).show(eq(changedItems)); verify(view).focusInMessageField(); verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); verify(view).getMessage(); @@ -169,6 +173,9 @@ public void shouldShowDialog() throws Exception { @Test public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { + final String diff = "A file"; + final ChangedItems changedItems = new ChangedItems(project, diff); + PromiseError error = mock(PromiseError.class); ServerException exception = mock(ServerException.class); when(exception.getErrorCode()).thenReturn(ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED); @@ -186,7 +193,7 @@ public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { verify(view).setEnableAmendCheckBox(false); verify(view).setEnablePushAfterCommitCheckBox(false); - verify(changesPanelPresenter).show(eq(singletonMap("file", ADDED))); + verify(changesPanelPresenter).show(eq(changedItems)); verify(view).focusInMessageField(); verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); verify(view).getMessage(); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java index 82c693fc145..da20eebf64b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java @@ -18,10 +18,10 @@ import org.eclipse.che.api.promises.client.PromiseError; import org.eclipse.che.ide.api.dialogs.ConfirmCallback; import org.eclipse.che.ide.api.dialogs.MessageDialog; -import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.api.resources.Resource; import org.eclipse.che.ide.commons.exception.ServerException; import org.eclipse.che.ide.ext.git.client.BaseTest; +import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.resource.Path; @@ -35,13 +35,11 @@ import static java.util.Collections.singletonList; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.MODIFIED; import static org.eclipse.che.ide.resource.Path.EMPTY; import static org.mockito.Matchers.any; import static org.mockito.Matchers.anyBoolean; import static org.mockito.Matchers.anyInt; import static org.mockito.Matchers.anyList; -import static org.mockito.Matchers.anyMap; import static org.mockito.Matchers.anyString; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.mock; @@ -139,6 +137,9 @@ public void shouldShowNotificationOnGetLogError() throws Exception { @Test public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Exception { + final String diff = "M file"; + final ChangedItems changedItems = new ChangedItems(project, diff); + Revision parentRevision = mock(Revision.class); Revision selectedRevision = mock(Revision.class); when(parentRevision.getId()).thenReturn("commitA"); @@ -155,13 +156,16 @@ public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Except logCaptor.getValue().apply(logResponse); presenter.onCompareClicked(); verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply("M file"); + stringCaptor.getValue().apply(diff); - verify(comparePresenter).showCompareBetweenRevisions(eq(Path.valueOf("file")), eq(MODIFIED), eq("commitA"), eq("commitB")); + verify(comparePresenter).showCompareBetweenRevisions(eq(changedItems), anyString(), eq("commitA"), eq("commitB")); } @Test public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() throws Exception { + final String diff = "M file1\nM file2"; + final ChangedItems changedItems = new ChangedItems(project, diff); + Revision revisionA = mock(Revision.class); Revision revisionB = mock(Revision.class); when(revisionA.getId()).thenReturn("commitA"); @@ -178,9 +182,9 @@ public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() thr logCaptor.getValue().apply(logResponse); presenter.onCompareClicked(); verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply("M file1\nM file2"); + stringCaptor.getValue().apply(diff); - verify(changesListPresenter).show(anyMap(), eq("commitB"), eq("commitA"), any(Project.class)); + verify(changesListPresenter).show(eq(changedItems), eq("commitB"), eq("commitA")); } @Test From a3e2c7cf29811fe881173e5eb646cab02c7e81a6 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 9 Aug 2017 17:51:58 +0300 Subject: [PATCH 05/33] CHE-5892: Fix inverted comparation type Signed-off-by: Mykola Morhun --- .../che/ide/ext/git/client/compare/ComparePresenter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 8144ba97523..535458d219c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -146,9 +146,9 @@ private void showCompareForCurrentFile() { .then(file -> { if (file.isPresent()) { if (compareWithLatest) { - showCompareBetweenRevisionsForFile(file.get(), changedItems.getStatusByIndex(currentItemIndex)); - } else { showCompareWithLatestForFile(file.get(), changedItems.getStatusByIndex(currentItemIndex)); + } else { + showCompareBetweenRevisionsForFile(file.get(), changedItems.getStatusByIndex(currentItemIndex)); } } }).catchError(error -> { From e27895cf2d9a82a9117e87c42b0b14fc11e9a78d Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Thu, 10 Aug 2017 11:20:36 +0300 Subject: [PATCH 06/33] CHE-5892: Fix comparation between revisions --- .../git/client/compare/ComparePresenter.java | 28 +++++++++++-------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 535458d219c..6e59be4559e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -156,37 +156,43 @@ private void showCompareForCurrentFile() { }); } - private void showCompareBetweenRevisionsForFile(File file, Status status) { - final Path pathToFile = file.getLocation(); + private void showCompareBetweenRevisionsForFile(final File file, final Status status) { + // Get project/module in which git repository is located. + final Container rootProject = GitUtil.getRootProject(file); + if (rootProject == null) { + return; + } + + final Path relPath = file.getLocation().removeFirstSegments(rootProject.getLocation().segmentCount()); - view.setTitle(pathToFile.toString()); + view.setTitle(relPath.toString()); if (status == Status.ADDED) { - service.showFileContent(projectLocation, pathToFile, revisionB) + service.showFileContent(projectLocation, relPath, revisionB) .then(response -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA == null ? "" : revisionA + locale.compareReadOnlyTitle()); - view.show("", response.getContent(), pathToFile.toString(), true); + view.show("", response.getContent(), relPath.toString(), true); }) .catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else if (status == Status.DELETED) { - service.showFileContent(projectLocation, pathToFile, revisionA) + service.showFileContent(projectLocation, relPath, revisionA) .then(response -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); - view.show(response.getContent(), "", pathToFile.toString(), true); + view.show(response.getContent(), "", relPath.toString(), true); }) .catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else { - service.showFileContent(projectLocation, pathToFile, revisionA) + service.showFileContent(projectLocation, relPath, revisionA) .then(contentAResponse -> { - service.showFileContent(projectLocation, pathToFile, revisionB) + service.showFileContent(projectLocation, relPath, revisionB) .then(contentBResponse -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); - view.show(contentAResponse.getContent(), contentBResponse.getContent(), pathToFile.toString(), true); + view.show(contentAResponse.getContent(), contentBResponse.getContent(), relPath.toString(), true); }) .catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); @@ -195,7 +201,7 @@ private void showCompareBetweenRevisionsForFile(File file, Status status) { } } - private void showCompareWithLatestForFile(File file, Status status) { + private void showCompareWithLatestForFile(final File file, final Status status) { this.comparedFile = file; if (status.equals(ADDED)) { From 72fb9775c9ad4e50a2ac07a853413e8bd2150af2 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Thu, 10 Aug 2017 12:20:14 +0300 Subject: [PATCH 07/33] CHE-5892: Small refactor in ComparePresenter --- .../git/client/compare/ComparePresenter.java | 115 +++++++++--------- 1 file changed, 59 insertions(+), 56 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 6e59be4559e..9bdda2cf604 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -17,7 +17,6 @@ import org.eclipse.che.commons.annotation.Nullable; import org.eclipse.che.ide.api.event.FileContentUpdateEvent; import org.eclipse.che.ide.api.git.GitServiceClient; -import org.eclipse.che.ide.api.app.AppContext; import org.eclipse.che.ide.api.notification.NotificationManager; import org.eclipse.che.ide.api.resources.Container; import org.eclipse.che.ide.api.resources.File; @@ -44,7 +43,6 @@ @Singleton public class ComparePresenter implements CompareView.ActionDelegate { - private final AppContext appContext; private final EventBus eventBus; private final DialogFactory dialogFactory; private final CompareView view; @@ -60,19 +58,16 @@ public class ComparePresenter implements CompareView.ActionDelegate { private String revision; private String localContent; - private Path projectLocation; private String revisionA; private String revisionB; @Inject - public ComparePresenter(AppContext appContext, - EventBus eventBus, + public ComparePresenter(EventBus eventBus, DialogFactory dialogFactory, CompareView view, GitServiceClient service, GitLocalizationConstant locale, NotificationManager notificationManager) { - this.appContext = appContext; this.eventBus = eventBus; this.dialogFactory = dialogFactory; this.view = view; @@ -127,7 +122,6 @@ public void showCompareBetweenRevisions(final ChangedItems changedItems, this.revisionB = revisionB; this.compareWithLatest = false; - this.projectLocation = appContext.getRootProject().getLocation(); setupCurrentFile(currentFile); showCompareForCurrentFile(); @@ -156,18 +150,51 @@ private void showCompareForCurrentFile() { }); } - private void showCompareBetweenRevisionsForFile(final File file, final Status status) { - // Get project/module in which git repository is located. - final Container rootProject = GitUtil.getRootProject(file); - if (rootProject == null) { + private void showCompareWithLatestForFile(final File file, final Status status) { + this.comparedFile = file; + + if (status.equals(ADDED)) { + showCompare(""); + return; + } + + final Container gitDir = getGitDir(file); + if (gitDir == null) { return; } + final Path relPath = getRelPath(gitDir, file); + + if (status.equals(DELETED)) { + service.showFileContent(gitDir.getLocation(), relPath, revision) + .then(content -> { + view.setTitle(relPath.toString()); + view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); + view.show(content.getContent(), "", relPath.toString(), false); + }) + .catchError(error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } else { + service.showFileContent(gitDir.getLocation(), relPath, revision) + .then(content -> { + showCompare(content.getContent()); + }) + .catchError(error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } + } - final Path relPath = file.getLocation().removeFirstSegments(rootProject.getLocation().segmentCount()); + private void showCompareBetweenRevisionsForFile(final File file, final Status status) { + final Container gitDir = getGitDir(file); + if (gitDir == null) { + return; + } + final Path relPath = getRelPath(gitDir, file); view.setTitle(relPath.toString()); if (status == Status.ADDED) { - service.showFileContent(projectLocation, relPath, revisionB) + service.showFileContent(gitDir.getLocation(), relPath, revisionB) .then(response -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA == null ? "" : revisionA + locale.compareReadOnlyTitle()); @@ -177,7 +204,7 @@ private void showCompareBetweenRevisionsForFile(final File file, final Status st notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else if (status == Status.DELETED) { - service.showFileContent(projectLocation, relPath, revisionA) + service.showFileContent(gitDir.getLocation(), relPath, revisionA) .then(response -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); view.show(response.getContent(), "", relPath.toString(), true); @@ -186,9 +213,9 @@ private void showCompareBetweenRevisionsForFile(final File file, final Status st notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else { - service.showFileContent(projectLocation, relPath, revisionA) + service.showFileContent(gitDir.getLocation(), relPath, revisionA) .then(contentAResponse -> { - service.showFileContent(projectLocation, relPath, revisionB) + service.showFileContent(gitDir.getLocation(), relPath, revisionB) .then(contentBResponse -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); @@ -201,43 +228,6 @@ private void showCompareBetweenRevisionsForFile(final File file, final Status st } } - private void showCompareWithLatestForFile(final File file, final Status status) { - this.comparedFile = file; - - if (status.equals(ADDED)) { - showCompare(""); - return; - } - - // Get project/module in which git repository is located. - final Container rootProject = GitUtil.getRootProject(file); - if (rootProject == null) { - return; - } - - final Path relPath = file.getLocation().removeFirstSegments(rootProject.getLocation().segmentCount()); - - if (status.equals(DELETED)) { - service.showFileContent(rootProject.getLocation(), relPath, revision) - .then(content -> { - view.setTitle(file.getLocation().toString()); - view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); - view.show(content.getContent(), "", file.getLocation().toString(), false); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } else { - service.showFileContent(rootProject.getLocation(), relPath, revision) - .then(content -> { - showCompare(content.getContent()); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } - } - @Override public void onClose(final String newContent) { if (!isEdited(newContent)) { @@ -305,7 +295,7 @@ private void showCompare(final String remoteContent) { * @param currentFile * name of file to set up as current; if null or invalid, the first one will be chosen. */ - private void setupCurrentFile(@Nullable String currentFile) { + private void setupCurrentFile(@Nullable String currentFile) { currentItemIndex = changedItems.getChangedItemsList().indexOf(currentFile); if (currentItemIndex == -1) { currentItemIndex = 0; @@ -313,12 +303,12 @@ private void setupCurrentFile(@Nullable String currentFile) { } /** @return true if user edited content in the compare widget i.e. initial and current isn't equal. */ - private boolean isEdited(String newContent) { + private boolean isEdited(final String newContent) { return compareWithLatest && this.localContent != null && !newContent.equals(localContent); } /** Saves given contents into file under edit. */ - private void saveContent(String content) { + private void saveContent(final String content) { comparedFile.updateContent(content) .then(ignored -> { final Container parent = comparedFile.getParent(); @@ -335,4 +325,17 @@ private void saveContent(String content) { }); } + /** @return relative path of given file from specified project */ + private Path getRelPath(final Container project, final File file) { + return file.getLocation().removeFirstSegments(project.getLocation().segmentCount()); + } + + /** + * Searches for project with git repository to which given file belongs. + */ + @Nullable + private Container getGitDir(final File file) { + // For now we have support only for git repository in the root project + return GitUtil.getRootProject(file); + } } From 347b2e054fdc97b6fdfe4c18b42fa244ca984bf4 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Thu, 10 Aug 2017 12:32:50 +0300 Subject: [PATCH 08/33] CHE-5892: Fix Save Changes button --- .../ext/git/client/compare/ComparePresenter.java | 15 ++++++++++----- .../ide/ext/git/client/compare/CompareView.java | 5 ++++- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 9bdda2cf604..4558e561c65 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -94,6 +94,7 @@ public void showCompareWithLatest(final ChangedItems changedItems, this.revision = revision; this.compareWithLatest = true; + view.setEnableSaveChangesButton(true); setupCurrentFile(currentFile); showCompareForCurrentFile(); @@ -122,6 +123,7 @@ public void showCompareBetweenRevisions(final ChangedItems changedItems, this.revisionB = revisionB; this.compareWithLatest = false; + view.setEnableSaveChangesButton(false); setupCurrentFile(currentFile); showCompareForCurrentFile(); @@ -248,11 +250,13 @@ public void onClose(final String newContent) { @Override public void onSaveChangesClicked() { - view.getEditableContent(content -> { - if (isEdited(content)) { - saveContent(content); - } - }); + if (compareWithLatest) { + view.getEditableContent(content -> { + if (isEdited(content)) { + saveContent(content); + } + }); + } } @Override @@ -309,6 +313,7 @@ private boolean isEdited(final String newContent) { /** Saves given contents into file under edit. */ private void saveContent(final String content) { + localContent = content; comparedFile.updateContent(content) .then(ignored -> { final Container parent = comparedFile.getParent(); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java index 2b0ca9e864a..980c28d4357 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java @@ -31,7 +31,10 @@ interface ActionDelegate { */ void onClose(String newContent); - /** Performs save of editable panel in diff dialog. */ + /** + * Performs save of editable panel in diff dialog. + * Does nothing if content isn't editable. + */ void onSaveChangesClicked(); /** Shows next diff. */ From 638153be50608454a3ad4b34fd54e70e4b89ecd5 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Thu, 10 Aug 2017 12:54:20 +0300 Subject: [PATCH 09/33] CHE-5892: Remove unnecessary imports --- .../ide/ext/git/client/action/CompareWithLatestAction.java | 5 ----- .../che/ide/ext/git/client/commit/CommitPresenter.java | 6 ------ .../git/client/compare/branchlist/BranchListPresenter.java | 4 ---- .../compare/revisionslist/RevisionListPresenter.java | 7 +------ .../che/ide/ext/git/client/history/HistoryPresenter.java | 4 ---- 5 files changed, 1 insertion(+), 25 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java index 3467d36b9ff..41aac1bff00 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java @@ -22,19 +22,14 @@ import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; -import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.api.dialogs.DialogFactory; -import java.util.HashMap; -import java.util.Map; - import static com.google.common.base.Preconditions.checkState; import static java.util.Collections.singletonList; import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; /** * Action for comparing with latest repository version diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index 857f326cc4a..182291f9cab 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -25,7 +25,6 @@ import org.eclipse.che.ide.ext.git.client.DateTimeFormatter; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; -import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsole; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsoleFactory; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangesPanelPresenter; @@ -34,13 +33,9 @@ import javax.validation.constraints.NotNull; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; -import java.util.Map; -import java.util.Set; import java.util.stream.Collectors; -import static com.google.common.base.Strings.isNullOrEmpty; import static com.google.common.collect.Iterables.getFirst; import static java.util.Arrays.stream; import static java.util.Collections.singletonList; @@ -51,7 +46,6 @@ import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.SUCCESS; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; /** diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java index c319fc5fd3a..aae277005e2 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java @@ -23,15 +23,12 @@ import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; -import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsole; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsoleFactory; import org.eclipse.che.ide.processes.panel.ProcessesPanelPresenter; import javax.validation.constraints.NotNull; -import java.util.HashMap; -import java.util.Map; import static com.google.common.base.Preconditions.checkState; import static java.util.Collections.singletonList; @@ -39,7 +36,6 @@ import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; /** * Presenter for displaying list of branches for comparing selected with local changes. diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java index 3f78aa2abfe..a35cd2437a4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java @@ -16,7 +16,6 @@ import org.eclipse.che.api.core.ErrorCodes; import org.eclipse.che.ide.api.git.GitServiceClient; import org.eclipse.che.api.git.shared.Revision; -import org.eclipse.che.ide.api.app.AppContext; import org.eclipse.che.ide.api.notification.NotificationManager; import org.eclipse.che.ide.api.resources.File; import org.eclipse.che.ide.api.resources.Project; @@ -33,7 +32,6 @@ import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; /** @@ -49,7 +47,6 @@ public class RevisionListPresenter implements RevisionListView.ActionDelegate { private final RevisionListView view; private final GitServiceClient service; private final GitLocalizationConstant locale; - private final AppContext appContext; private final NotificationManager notificationManager; private Revision selectedRevision; @@ -62,14 +59,12 @@ public RevisionListPresenter(RevisionListView view, GitServiceClient service, GitLocalizationConstant locale, NotificationManager notificationManager, - DialogFactory dialogFactory, - AppContext appContext) { + DialogFactory dialogFactory) { this.view = view; this.comparePresenter = comparePresenter; this.dialogFactory = dialogFactory; this.service = service; this.locale = locale; - this.appContext = appContext; this.notificationManager = notificationManager; this.view.setDelegate(this); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java index 79eb3e7dc21..a77b9805b4d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java @@ -23,22 +23,18 @@ import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; -import org.eclipse.che.ide.ext.git.client.compare.FileStatus; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.resource.Path; import javax.validation.constraints.NotNull; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; -import java.util.Map; import static java.util.Collections.singletonList; import static org.eclipse.che.api.git.shared.Constants.DEFAULT_PAGE_SIZE; import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; /** From 9f18acd7bc4daebfcb02e36addc362d9c1ef6637 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Thu, 10 Aug 2017 15:01:52 +0300 Subject: [PATCH 10/33] CHE-5892: Small fixes Signed-off-by: Mykola Morhun --- .../git/client/GitLocalizationConstant.java | 3 +++ .../ext/git/client/compare/ChangedItems.java | 11 ++++------ .../git/client/compare/ComparePresenter.java | 21 +++++++++++++------ .../client/GitLocalizationConstant.properties | 3 ++- 4 files changed, 24 insertions(+), 14 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java index 6af491b15b1..7d40a91562f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java @@ -88,6 +88,9 @@ public interface GitLocalizationConstant extends Messages { String buttonScroll(); // MESSAGES + @Key("messages.file_is_not_under_git") + String messageFileIsNotUnderGit(String file); + @Key("messages.unableGetSshKey") String messagesUnableGetSshKey(); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java index 9a17d5374d4..236fa89ef83 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java @@ -31,10 +31,9 @@ public class ChangedItems { private final Project project; private final LinkedHashMap changedFilesStatuses; private final List changedFilesList; - private final int length; /** - * Creates user-friendly representation of git diff. + * Git diff representation. * * @param project * the project under diff operation @@ -50,8 +49,6 @@ public ChangedItems(Project project, String diff) { } changedFilesList = new ArrayList<>(changedFilesStatuses.keySet()); - - length = changedFilesList.size(); } public Project getProject() { @@ -59,14 +56,14 @@ public Project getProject() { } /** - * @return number of files in the diff + * Returns number of files in the diff. */ public int getFilesQuantity() { - return length; + return changedFilesList.size(); } public boolean isEmpty() { - return 0 == length; + return 0 == changedFilesList.size(); } public Map getChangedItemsMap() { diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 4558e561c65..8f9ba386fcf 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -28,8 +28,10 @@ import org.eclipse.che.ide.api.dialogs.DialogFactory; import org.eclipse.che.ide.resource.Path; +import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; +import static org.eclipse.che.ide.api.notification.StatusNotification.Status.WARNING; import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.ADDED; import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.DELETED; @@ -78,7 +80,7 @@ public ComparePresenter(EventBus eventBus, } /** - * Show compare window for given set of files between given revision and latest code version. + * Show compare window for given set of files between given revision and HEAD. * * @param changedItems * ordered touched files @@ -96,7 +98,7 @@ public void showCompareWithLatest(final ChangedItems changedItems, this.compareWithLatest = true; view.setEnableSaveChangesButton(true); - setupCurrentFile(currentFile); + findCurrentFile(currentFile); showCompareForCurrentFile(); } @@ -125,7 +127,7 @@ public void showCompareBetweenRevisions(final ChangedItems changedItems, this.compareWithLatest = false; view.setEnableSaveChangesButton(false); - setupCurrentFile(currentFile); + findCurrentFile(currentFile); showCompareForCurrentFile(); } @@ -162,6 +164,7 @@ private void showCompareWithLatestForFile(final File file, final Status status) final Container gitDir = getGitDir(file); if (gitDir == null) { + notificationManager.notify(locale.messageFileIsNotUnderGit(file.toString()), WARNING, EMERGE_MODE); return; } final Path relPath = getRelPath(gitDir, file); @@ -190,6 +193,7 @@ private void showCompareWithLatestForFile(final File file, final Status status) private void showCompareBetweenRevisionsForFile(final File file, final Status status) { final Container gitDir = getGitDir(file); if (gitDir == null) { + notificationManager.notify(locale.messageFileIsNotUnderGit(file.toString()), WARNING, EMERGE_MODE); return; } final Path relPath = getRelPath(gitDir, file); @@ -299,14 +303,19 @@ private void showCompare(final String remoteContent) { * @param currentFile * name of file to set up as current; if null or invalid, the first one will be chosen. */ - private void setupCurrentFile(@Nullable String currentFile) { + private void findCurrentFile(@Nullable String currentFile) { + if (currentFile == null) { + currentItemIndex = 0; + return; + } + currentItemIndex = changedItems.getChangedItemsList().indexOf(currentFile); if (currentItemIndex == -1) { currentItemIndex = 0; } } - /** @return true if user edited content in the compare widget i.e. initial and current isn't equal. */ + /** Returns true if user edited content in the compare widget i.e. initial and current isn't equal. */ private boolean isEdited(final String newContent) { return compareWithLatest && this.localContent != null && !newContent.equals(localContent); } @@ -330,7 +339,7 @@ private void saveContent(final String content) { }); } - /** @return relative path of given file from specified project */ + /** Returns relative path of given file from specified project */ private Path getRelPath(final Container project, final File file) { return file.getLocation().removeFirstSegments(project.getLocation().segmentCount()); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties index 2021588c32b..b443dd8866c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties @@ -31,9 +31,10 @@ button.push=Push button.pull=Pull button.save_changes=Save Changes button.next_diff=Next -button.previous_diff=Prev +button.previous_diff=Previous ############MESSAGES################ +messages.file_is_not_under_git=File {0} is not under git. messages.unableGetSshKey = Failed to get private ssh key. \ You can create a new SSH key pair in Profile->Preferences->SSH->VCS. messages.warningTitle = Warning From 3cd740e466590379691099851dff7017c6fd2aff Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Fri, 11 Aug 2017 09:02:47 +0300 Subject: [PATCH 11/33] CHE-5892: Rename ChangedItems Signed-off-by: Mykola Morhun --- .../action/CompareWithLatestAction.java | 10 +++---- .../git/client/commit/CommitPresenter.java | 8 +++--- .../{ChangedItems.java => AlteredFiles.java} | 8 +++--- .../git/client/compare/ComparePresenter.java | 28 ++++++++++--------- .../branchlist/BranchListPresenter.java | 10 +++---- .../changeslist/ChangesListPresenter.java | 16 +++++------ .../changespanel/ChangesPanelPresenter.java | 6 ++-- .../changespanel/ChangesPanelView.java | 4 +-- .../changespanel/ChangesPanelViewImpl.java | 4 +-- .../revisionslist/RevisionListPresenter.java | 6 ++-- .../git/client/history/HistoryPresenter.java | 10 +++---- .../client/commit/CommitPresenterTest.java | 13 ++++----- .../client/history/HistoryPresenterTest.java | 10 +++---- 13 files changed, 66 insertions(+), 67 deletions(-) rename plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/{ChangedItems.java => AlteredFiles.java} (93%) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java index 41aac1bff00..b71cb1dcadc 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java @@ -20,7 +20,7 @@ import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.api.resources.Resource; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.api.dialogs.DialogFactory; @@ -87,11 +87,11 @@ public void actionPerformed(ActionEvent e) { dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), locale.compareMessageIdenticalContentText(), null).show(); } else { - ChangedItems changedItems = new ChangedItems(project, diff); - if (changedItems.getFilesQuantity() == 1) { - comparePresenter.showCompareWithLatest(changedItems, null, REVISION); + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + if (alteredFiles.getFilesQuantity() == 1) { + comparePresenter.showCompareWithLatest(alteredFiles, null, REVISION); } else { - changesListPresenter.show(changedItems, REVISION, null); + changesListPresenter.show(alteredFiles, REVISION, null); } } }) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index 182291f9cab..571083c867d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -24,7 +24,7 @@ import org.eclipse.che.ide.commons.exception.ServerException; import org.eclipse.che.ide.ext.git.client.DateTimeFormatter; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsole; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsoleFactory; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangesPanelPresenter; @@ -160,14 +160,14 @@ private void showAskForAmendDialog() { } private void show(@Nullable String diff) { - ChangedItems changedItems = new ChangedItems(project, diff); + AlteredFiles alteredFiles = new AlteredFiles(project, diff); filesToCommit.clear(); - allFiles = changedItems.getChangedItemsList(); + allFiles = alteredFiles.getChangedItemsList(); view.setEnableCommitButton(!view.getMessage().isEmpty()); view.focusInMessageField(); view.showDialog(); - changesPanelPresenter.show(changedItems); + changesPanelPresenter.show(alteredFiles); view.setMarkedCheckBoxes(stream(appContext.getResources()).map(resource -> resource.getLocation().removeFirstSegments(1)) .collect(Collectors.toSet())); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java similarity index 93% rename from plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java rename to plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java index 236fa89ef83..f3d21563c4c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ChangedItems.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java @@ -22,11 +22,11 @@ import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; /** - * Describes changed files in git comparison process. + * Describes changed in any way files in git comparison process. * * @author Mykola Morhun */ -public class ChangedItems { +public class AlteredFiles { private final Project project; private final LinkedHashMap changedFilesStatuses; @@ -40,7 +40,7 @@ public class ChangedItems { * @param diff * plain result of git diff operation */ - public ChangedItems(Project project, String diff) { + public AlteredFiles(Project project, String diff) { this.project = project; changedFilesStatuses = new LinkedHashMap<>(); @@ -90,7 +90,7 @@ public String getItemByIndex(int index) { public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; - ChangedItems that = (ChangedItems)o; + AlteredFiles that = (AlteredFiles)o; return Objects.equals(project, that.project) && Objects.equals(changedFilesStatuses, that.changedFilesStatuses) && Objects.equals(changedFilesList, that.changedFilesList); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 8f9ba386fcf..2e8d3ed2f0c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -53,7 +53,7 @@ public class ComparePresenter implements CompareView.ActionDelegate { private final NotificationManager notificationManager; private boolean compareWithLatest; - private ChangedItems changedItems; + private AlteredFiles alteredFiles; private int currentItemIndex; private File comparedFile; @@ -82,17 +82,17 @@ public ComparePresenter(EventBus eventBus, /** * Show compare window for given set of files between given revision and HEAD. * - * @param changedItems + * @param alteredFiles * ordered touched files * @param currentFile * file which will be shown first, if null then the first from the list will be shown * @param revision * hash of revision or branch */ - public void showCompareWithLatest(final ChangedItems changedItems, + public void showCompareWithLatest(final AlteredFiles alteredFiles, @Nullable final String currentFile, final String revision) { - this.changedItems = changedItems; + this.alteredFiles = alteredFiles; this.revision = revision; this.compareWithLatest = true; @@ -105,7 +105,7 @@ public void showCompareWithLatest(final ChangedItems changedItems, /** * Shows compare window for given set of files between specified revisions. * - * @param changedItems + * @param alteredFiles * ordered touched files * @param currentFile * file which will be shown first, if null then the first from the list will be shown @@ -116,11 +116,11 @@ public void showCompareWithLatest(final ChangedItems changedItems, * hash of the second revision or branch. * If it is set to {@code null}, compare with latest repository state will be performed */ - public void showCompareBetweenRevisions(final ChangedItems changedItems, + public void showCompareBetweenRevisions(final AlteredFiles alteredFiles, @Nullable final String currentFile, @Nullable final String revisionA, @Nullable final String revisionB) { - this.changedItems = changedItems; + this.alteredFiles = alteredFiles; this.revisionA = revisionA; this.revisionB = revisionB; @@ -136,18 +136,20 @@ public void showCompareBetweenRevisions(final ChangedItems changedItems, * Type of comparison to show depends on {@code compareWithLatest} field. */ private void showCompareForCurrentFile() { - view.setEnableNextDiffButton(currentItemIndex != (changedItems.getFilesQuantity() - 1)); + view.setEnableNextDiffButton(currentItemIndex != (alteredFiles.getFilesQuantity() - 1)); view.setEnablePreviousDiffButton(currentItemIndex != 0); - changedItems.getProject() - .getFile(changedItems.getItemByIndex(currentItemIndex)) + alteredFiles.getProject() + .getFile(alteredFiles.getItemByIndex(currentItemIndex)) .then(file -> { if (file.isPresent()) { if (compareWithLatest) { - showCompareWithLatestForFile(file.get(), changedItems.getStatusByIndex(currentItemIndex)); + showCompareWithLatestForFile(file.get(), alteredFiles.getStatusByIndex(currentItemIndex)); } else { - showCompareBetweenRevisionsForFile(file.get(), changedItems.getStatusByIndex(currentItemIndex)); + showCompareBetweenRevisionsForFile(file.get(), alteredFiles.getStatusByIndex(currentItemIndex)); } + } else { // file is deleted + // TODO implement (is broken in master too) } }).catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); @@ -309,7 +311,7 @@ private void findCurrentFile(@Nullable String currentFile) { return; } - currentItemIndex = changedItems.getChangedItemsList().indexOf(currentFile); + currentItemIndex = alteredFiles.getChangedItemsList().indexOf(currentFile); if (currentItemIndex == -1) { currentItemIndex = 0; } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java index aae277005e2..9b97e3ecfb4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java @@ -21,7 +21,7 @@ import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.api.resources.Resource; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.ext.git.client.outputconsole.GitOutputConsole; @@ -121,11 +121,11 @@ public void onCompareClicked() { dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), locale.compareMessageIdenticalContentText(), null).show(); } else { - ChangedItems changedItems = new ChangedItems(project, diff); - if (changedItems.getFilesQuantity() == 1) { - comparePresenter.showCompareWithLatest(changedItems, null, selectedBranch.getName()); + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + if (alteredFiles.getFilesQuantity() == 1) { + comparePresenter.showCompareWithLatest(alteredFiles, null, selectedBranch.getName()); } else { - changesListPresenter.show(changedItems, selectedBranch.getName(), null); + changesListPresenter.show(alteredFiles, selectedBranch.getName(), null); } } }) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java index 256bfc5f4d7..7a16db4db9b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java @@ -15,7 +15,7 @@ import org.eclipse.che.commons.annotation.Nullable; import org.eclipse.che.ide.api.data.tree.Node; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangedFolderNode; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangesPanelPresenter; @@ -37,7 +37,7 @@ public class ChangesListPresenter implements ChangesListView.ActionDelegate { private final ChangesPanelPresenter changesPanelPresenter; private final ComparePresenter comparePresenter; - private ChangedItems changedItems; + private AlteredFiles alteredFiles; private String file; private String revisionA; private String revisionB; @@ -73,7 +73,7 @@ public ChangesListPresenter(ChangesListView view, /** * Shows window with changed files. * - * @param changedItems + * @param alteredFiles * files and their status * @param revisionA * hash of the first revision or branch. @@ -82,15 +82,15 @@ public ChangesListPresenter(ChangesListView view, * hash of the second revision or branch. * If it is set to {@code null}, compare with latest repository state will be performed */ - public void show(ChangedItems changedItems, @Nullable String revisionA, @Nullable String revisionB) { - this.changedItems = changedItems; + public void show(AlteredFiles alteredFiles, @Nullable String revisionA, @Nullable String revisionB) { + this.alteredFiles = alteredFiles; this.revisionA = revisionA; this.revisionB = revisionB; view.setEnableCompareButton(false); view.showDialog(); - changesPanelPresenter.show(changedItems); + changesPanelPresenter.show(alteredFiles); } @Override @@ -101,9 +101,9 @@ public void onCloseClicked() { @Override public void onCompareClicked() { if (revisionB == null) { - comparePresenter.showCompareWithLatest(changedItems, file, revisionA); + comparePresenter.showCompareWithLatest(alteredFiles, file, revisionA); } else { - comparePresenter.showCompareBetweenRevisions(changedItems, file, revisionA, revisionB); + comparePresenter.showCompareBetweenRevisions(alteredFiles, file, revisionA, revisionB); } } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java index 0d0f47d1851..f483466cd7e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java @@ -13,7 +13,7 @@ import com.google.inject.Inject; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; @@ -33,7 +33,7 @@ public class ChangesPanelPresenter implements ChangesPanelView.ActionDelegate { private final ChangesPanelView view; private final GitLocalizationConstant locale; - private ChangedItems changedFiles; + private AlteredFiles changedFiles; private ViewMode viewMode; private FileNodeDoubleClickHandler fileNodeDoubleClickHandler; @@ -56,7 +56,7 @@ public ChangesPanelPresenter(GitLocalizationConstant locale, * @param changedFiles * Map with files and their status */ - public void show(ChangedItems changedFiles) { + public void show(AlteredFiles changedFiles) { this.changedFiles = changedFiles; if (changedFiles.isEmpty()) { view.setTextToChangeViewModeButton(locale.changeListRowListViewButtonText()); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java index d0080ea8104..2b1d8a76c0f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java @@ -11,7 +11,7 @@ package org.eclipse.che.ide.ext.git.client.compare.changespanel; import org.eclipse.che.ide.api.mvp.View; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.resource.Path; import org.eclipse.che.ide.ui.smartTree.Tree; @@ -51,7 +51,7 @@ interface ActionDelegate { */ void addSelectionHandler(SelectionChangedHandler handler); - void viewChangedFiles(ChangedItems files, ViewMode viewMode); + void viewChangedFiles(AlteredFiles files, ViewMode viewMode); /** * Clear panel from old nodes. diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java index a6cffc66530..06a8c256921 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java @@ -23,7 +23,7 @@ import org.eclipse.che.ide.api.data.tree.Node; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.ext.git.client.GitResources; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.project.shared.NodesResources; import org.eclipse.che.ide.resource.Path; @@ -108,7 +108,7 @@ public void addSelectionHandler(SelectionChangedHandler handler) { } @Override - public void viewChangedFiles(ChangedItems files, ViewMode viewMode) { + public void viewChangedFiles(AlteredFiles files, ViewMode viewMode) { NodeStorage nodeStorage = tree.getNodeStorage(); nodeStorage.clear(); if (viewMode == TREE) { diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java index a35cd2437a4..5079b0c96fa 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java @@ -20,7 +20,7 @@ import org.eclipse.che.ide.api.resources.File; import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.api.dialogs.DialogFactory; import org.eclipse.che.ide.resource.Path; @@ -146,8 +146,8 @@ private void compare() { dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), locale.compareMessageIdenticalContentText(), null).show(); } else { - ChangedItems changedItems = new ChangedItems(project, diff); - comparePresenter.showCompareWithLatest(changedItems, null, selectedRevision.getId()); + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + comparePresenter.showCompareWithLatest(alteredFiles, null, selectedRevision.getId()); } }) .catchError(arg -> { diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java index a77b9805b4d..a52c04f5950 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java @@ -21,7 +21,7 @@ import org.eclipse.che.ide.api.notification.NotificationManager; import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.resource.Path; @@ -169,11 +169,11 @@ private void compare() { return; } - ChangedItems changedItems = new ChangedItems(project, diff); - if (changedItems.getFilesQuantity() == 1) { - comparePresenter.showCompareBetweenRevisions(changedItems, null, revisionA, revisionB); + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + if (alteredFiles.getFilesQuantity() == 1) { + comparePresenter.showCompareBetweenRevisions(alteredFiles, null, revisionA, revisionB); } else { - changesListPresenter.show(changedItems, revisionA, revisionB); + changesListPresenter.show(alteredFiles, revisionA, revisionB); } }) .catchError(error -> { diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java index dbc495e6d36..136c29e8fa2 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java @@ -26,19 +26,16 @@ import org.eclipse.che.ide.commons.exception.ServerException; import org.eclipse.che.ide.ext.git.client.BaseTest; import org.eclipse.che.ide.ext.git.client.DateTimeFormatter; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangesPanelPresenter; import org.eclipse.che.ide.resource.Path; import org.junit.Test; import org.mockito.Mock; import static java.util.Collections.singletonList; -import static java.util.Collections.singletonMap; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.FLOAT_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.SUCCESS; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.ADDED; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.MODIFIED; import static org.mockito.Matchers.any; import static org.mockito.Matchers.anyBoolean; import static org.mockito.Matchers.anyInt; @@ -145,7 +142,7 @@ public void shouldShowMessageWhenNothingToCommit() throws Exception { @Test public void shouldShowDialog() throws Exception { final String diff = "M file"; - final ChangedItems changedItems = new ChangedItems(project, diff); + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); ConfirmDialog dialog = mock(ConfirmDialog.class); when(dialogFactory.createConfirmDialog(anyString(), @@ -163,7 +160,7 @@ public void shouldShowDialog() throws Exception { verify(view).setEnableAmendCheckBox(true); verify(view).setEnablePushAfterCommitCheckBox(true); - verify(changesPanelPresenter).show(eq(changedItems)); + verify(changesPanelPresenter).show(eq(alteredFiles)); verify(view).focusInMessageField(); verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); verify(view).getMessage(); @@ -174,7 +171,7 @@ public void shouldShowDialog() throws Exception { @Test public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { final String diff = "A file"; - final ChangedItems changedItems = new ChangedItems(project, diff); + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); PromiseError error = mock(PromiseError.class); ServerException exception = mock(ServerException.class); @@ -193,7 +190,7 @@ public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { verify(view).setEnableAmendCheckBox(false); verify(view).setEnablePushAfterCommitCheckBox(false); - verify(changesPanelPresenter).show(eq(changedItems)); + verify(changesPanelPresenter).show(eq(alteredFiles)); verify(view).focusInMessageField(); verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); verify(view).getMessage(); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java index da20eebf64b..483dca8444a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java @@ -21,7 +21,7 @@ import org.eclipse.che.ide.api.resources.Resource; import org.eclipse.che.ide.commons.exception.ServerException; import org.eclipse.che.ide.ext.git.client.BaseTest; -import org.eclipse.che.ide.ext.git.client.compare.ChangedItems; +import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.resource.Path; @@ -138,7 +138,7 @@ public void shouldShowNotificationOnGetLogError() throws Exception { @Test public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Exception { final String diff = "M file"; - final ChangedItems changedItems = new ChangedItems(project, diff); + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); Revision parentRevision = mock(Revision.class); Revision selectedRevision = mock(Revision.class); @@ -158,13 +158,13 @@ public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Except verify(stringPromise).then(stringCaptor.capture()); stringCaptor.getValue().apply(diff); - verify(comparePresenter).showCompareBetweenRevisions(eq(changedItems), anyString(), eq("commitA"), eq("commitB")); + verify(comparePresenter).showCompareBetweenRevisions(eq(alteredFiles), anyString(), eq("commitA"), eq("commitB")); } @Test public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() throws Exception { final String diff = "M file1\nM file2"; - final ChangedItems changedItems = new ChangedItems(project, diff); + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); Revision revisionA = mock(Revision.class); Revision revisionB = mock(Revision.class); @@ -184,7 +184,7 @@ public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() thr verify(stringPromise).then(stringCaptor.capture()); stringCaptor.getValue().apply(diff); - verify(changesListPresenter).show(eq(changedItems), eq("commitB"), eq("commitA")); + verify(changesListPresenter).show(eq(alteredFiles), eq("commitB"), eq("commitA")); } @Test From f22b6497f5d54a416f86c5b4d02a4b25843cb072 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Fri, 11 Aug 2017 16:55:44 +0300 Subject: [PATCH 12/33] CHE-5892: Fix compare with deleted file bug. Signed-off-by: Mykola Morhun --- .../git/client/compare/ComparePresenter.java | 96 +++++++++++-------- .../ext/git/client/compare/CompareView.java | 2 +- 2 files changed, 56 insertions(+), 42 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 2e8d3ed2f0c..22a6c24b596 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -54,7 +54,7 @@ public class ComparePresenter implements CompareView.ActionDelegate { private boolean compareWithLatest; private AlteredFiles alteredFiles; - private int currentItemIndex; + private int currentFileIndex; private File comparedFile; private String revision; @@ -96,7 +96,6 @@ public void showCompareWithLatest(final AlteredFiles alteredFiles, this.revision = revision; this.compareWithLatest = true; - view.setEnableSaveChangesButton(true); findCurrentFile(currentFile); showCompareForCurrentFile(); @@ -125,7 +124,6 @@ public void showCompareBetweenRevisions(final AlteredFiles alteredFiles, this.revisionB = revisionB; this.compareWithLatest = false; - view.setEnableSaveChangesButton(false); findCurrentFile(currentFile); showCompareForCurrentFile(); @@ -136,53 +134,75 @@ public void showCompareBetweenRevisions(final AlteredFiles alteredFiles, * Type of comparison to show depends on {@code compareWithLatest} field. */ private void showCompareForCurrentFile() { - view.setEnableNextDiffButton(currentItemIndex != (alteredFiles.getFilesQuantity() - 1)); - view.setEnablePreviousDiffButton(currentItemIndex != 0); + view.setEnableNextDiffButton(currentFileIndex != (alteredFiles.getFilesQuantity() - 1)); + view.setEnablePreviousDiffButton(currentFileIndex != 0); alteredFiles.getProject() - .getFile(alteredFiles.getItemByIndex(currentItemIndex)) + .getFile(alteredFiles.getItemByIndex(currentFileIndex)) .then(file -> { if (file.isPresent()) { + + view.setEnableSaveChangesButton(true); + + final Container gitDir = getGitDir(file.get()); + if (gitDir == null) { + notificationManager.notify(locale.messageFileIsNotUnderGit(file.toString()), WARNING, EMERGE_MODE); + return; + } + final Path relPath = getRelPath(gitDir, file.get()); + if (compareWithLatest) { - showCompareWithLatestForFile(file.get(), alteredFiles.getStatusByIndex(currentItemIndex)); + this.comparedFile = file.get(); + + showCompareWithLatestForFile(gitDir.getLocation(), + relPath, + alteredFiles.getStatusByIndex(currentFileIndex)); } else { - showCompareBetweenRevisionsForFile(file.get(), alteredFiles.getStatusByIndex(currentItemIndex)); + showCompareBetweenRevisionsForFile(gitDir.getLocation(), + relPath, + alteredFiles.getStatusByIndex(currentFileIndex)); } + } else { // file is deleted - // TODO implement (is broken in master too) + + view.setEnableSaveChangesButton(false); + + // For now git repository supported only in project root folder + final Path gitDir = alteredFiles.getProject().getLocation(); + final Path relPath = Path.valueOf(alteredFiles.getItemByIndex(currentFileIndex)); + + if (compareWithLatest) { + this.comparedFile = null; + + showCompareWithLatestForFile(gitDir, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); + } else { + showCompareBetweenRevisionsForFile(gitDir, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); + } + } }).catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } - private void showCompareWithLatestForFile(final File file, final Status status) { - this.comparedFile = file; - + private void showCompareWithLatestForFile(final Path gitDir, final Path relPath, final Status status) { if (status.equals(ADDED)) { showCompare(""); return; } - final Container gitDir = getGitDir(file); - if (gitDir == null) { - notificationManager.notify(locale.messageFileIsNotUnderGit(file.toString()), WARNING, EMERGE_MODE); - return; - } - final Path relPath = getRelPath(gitDir, file); - if (status.equals(DELETED)) { - service.showFileContent(gitDir.getLocation(), relPath, revision) + service.showFileContent(gitDir, relPath, revision) .then(content -> { view.setTitle(relPath.toString()); view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); - view.show(content.getContent(), "", relPath.toString(), false); + view.show(content.getContent(), "", relPath.toString(), true); }) .catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else { - service.showFileContent(gitDir.getLocation(), relPath, revision) + service.showFileContent(gitDir, relPath, revision) .then(content -> { showCompare(content.getContent()); }) @@ -192,17 +212,11 @@ private void showCompareWithLatestForFile(final File file, final Status status) } } - private void showCompareBetweenRevisionsForFile(final File file, final Status status) { - final Container gitDir = getGitDir(file); - if (gitDir == null) { - notificationManager.notify(locale.messageFileIsNotUnderGit(file.toString()), WARNING, EMERGE_MODE); - return; - } - final Path relPath = getRelPath(gitDir, file); - + private void showCompareBetweenRevisionsForFile(final Path gitDir, final Path relPath, final Status status) { view.setTitle(relPath.toString()); + if (status == Status.ADDED) { - service.showFileContent(gitDir.getLocation(), relPath, revisionB) + service.showFileContent(gitDir, relPath, revisionB) .then(response -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA == null ? "" : revisionA + locale.compareReadOnlyTitle()); @@ -212,7 +226,7 @@ private void showCompareBetweenRevisionsForFile(final File file, final Status st notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else if (status == Status.DELETED) { - service.showFileContent(gitDir.getLocation(), relPath, revisionA) + service.showFileContent(gitDir, relPath, revisionA) .then(response -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); view.show(response.getContent(), "", relPath.toString(), true); @@ -221,9 +235,9 @@ private void showCompareBetweenRevisionsForFile(final File file, final Status st notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else { - service.showFileContent(gitDir.getLocation(), relPath, revisionA) + service.showFileContent(gitDir, relPath, revisionA) .then(contentAResponse -> { - service.showFileContent(gitDir.getLocation(), relPath, revisionB) + service.showFileContent(gitDir, relPath, revisionB) .then(contentBResponse -> { view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); @@ -272,7 +286,7 @@ public void onNextDiffClicked() { saveContent(content); } - currentItemIndex++; + currentFileIndex++; showCompareForCurrentFile(); }); } @@ -284,7 +298,7 @@ public void onPreviousDiffClicked() { saveContent(content); } - currentItemIndex--; + currentFileIndex--; showCompareForCurrentFile(); }); } @@ -307,19 +321,19 @@ private void showCompare(final String remoteContent) { */ private void findCurrentFile(@Nullable String currentFile) { if (currentFile == null) { - currentItemIndex = 0; + currentFileIndex = 0; return; } - currentItemIndex = alteredFiles.getChangedItemsList().indexOf(currentFile); - if (currentItemIndex == -1) { - currentItemIndex = 0; + currentFileIndex = alteredFiles.getChangedItemsList().indexOf(currentFile); + if (currentFileIndex == -1) { + currentFileIndex = 0; } } /** Returns true if user edited content in the compare widget i.e. initial and current isn't equal. */ private boolean isEdited(final String newContent) { - return compareWithLatest && this.localContent != null && !newContent.equals(localContent); + return compareWithLatest && comparedFile != null && this.localContent != null && !newContent.equals(localContent); } /** Saves given contents into file under edit. */ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java index 980c28d4357..88cb6ae926e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java @@ -81,7 +81,7 @@ interface ContentConsumer { * @param file * changed file name with its full path * @param readOnly - * read only state of the right column + * read only state of the left column */ void show(String oldContent, String newContent, String file, boolean readOnly); From 2f82becbe14e0c7c386975cf936a471546397488 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Mon, 14 Aug 2017 09:54:46 +0300 Subject: [PATCH 13/33] License format --- agents/che-core-api-agent-shared/pom.xml | 4 ++-- .../eclipse/che/api/agent/shared/dto/AgentDto.java | 4 ++-- .../che/api/agent/shared/dto/AgentKeyDto.java | 4 ++-- .../eclipse/che/api/agent/shared/model/Agent.java | 4 ++-- .../eclipse/che/api/agent/shared/model/AgentKey.java | 4 ++-- .../che/api/agent/shared/model/impl/AgentImpl.java | 4 ++-- .../api/agent/shared/model/impl/AgentKeyImpl.java | 4 ++-- .../che/api/agent/shared/model/impl/BasicAgent.java | 4 ++-- agents/che-core-api-agent/pom.xml | 4 ++-- .../eclipse/che/api/agent/server/AgentRegistry.java | 4 ++-- .../che/api/agent/server/AgentRegistryService.java | 4 ++-- .../eclipse/che/api/agent/server/DtoConverter.java | 4 ++-- .../api/agent/server/exception/AgentException.java | 4 ++-- .../server/exception/AgentNotFoundException.java | 4 ++-- .../agent/server/exception/AgentStartException.java | 4 ++-- .../che/api/agent/server/impl/AgentRegistryImpl.java | 4 ++-- .../che/api/agent/server/impl/AgentSorter.java | 4 ++-- .../agent/server/launcher/AbstractAgentLauncher.java | 4 ++-- .../che/api/agent/server/launcher/AgentLauncher.java | 4 ++-- .../agent/server/launcher/AgentLauncherFactory.java | 4 ++-- .../agent/server/launcher/AgentLaunchingChecker.java | 4 ++-- .../server/launcher/CommandExistsAgentChecker.java | 4 ++-- .../launcher/CompositeAgentLaunchingChecker.java | 4 ++-- .../agent/server/launcher/DefaultAgentLauncher.java | 4 ++-- .../launcher/MappedPortIsListeningAgentChecker.java | 4 ++-- .../server/launcher/NoOpAgentLaunchingChecker.java | 4 ++-- .../server/launcher/ProcessIsLaunchedChecker.java | 4 ++-- .../server/launcher/SshAgentLaunchingChecker.java | 4 ++-- .../che/api/agent/server/impl/AgentKeyImplTest.java | 4 ++-- .../api/agent/server/impl/AgentRegistryImplTest.java | 4 ++-- .../che/api/agent/server/impl/AgentSorterTest.java | 4 ++-- .../server/launcher/AbstractAgentLauncherTest.java | 4 ++-- .../server/launcher/DefaultAgentLauncherTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../src/test/resources/run_launcher_bats_tests.sh | 4 ++-- agents/exec/pom.xml | 4 ++-- agents/exec/src/assembly/assembly.xml | 4 ++-- .../java/org/eclipse/che/api/agent/ExecAgent.java | 4 ++-- .../org/eclipse/che/api/agent/ExecAgentLauncher.java | 4 ++-- .../main/resources/org.eclipse.che.exec.script.sh | 4 ++-- agents/git-credentials/pom.xml | 4 ++-- .../eclipse/che/api/agent/GitCredentialsAgent.java | 4 ++-- .../src/main/resources/org.eclipse.che.git.script.sh | 4 ++-- agents/go-agents/core/activity/activity.go | 4 ++-- agents/go-agents/core/activity/noop.go | 4 ++-- agents/go-agents/core/auth/auth.go | 4 ++-- agents/go-agents/core/auth/default_cache.go | 4 ++-- agents/go-agents/core/auth/default_cache_test.go | 4 ++-- agents/go-agents/core/common/error.go | 4 ++-- agents/go-agents/core/jsonrpc/internals_test.go | 4 ++-- .../core/jsonrpc/jsonrpctest/native_conn_recorder.go | 4 ++-- .../jsonrpctest/recording_request_dispatcher.go | 4 ++-- .../go-agents/core/jsonrpc/jsonrpcws/jsonrpc_impl.go | 4 ++-- agents/go-agents/core/jsonrpc/model.go | 4 ++-- agents/go-agents/core/jsonrpc/registry.go | 4 ++-- agents/go-agents/core/jsonrpc/route.go | 4 ++-- agents/go-agents/core/jsonrpc/transport_specific.go | 4 ++-- agents/go-agents/core/jsonrpc/tunnel.go | 4 ++-- agents/go-agents/core/jsonrpc/tunnel_test.go | 4 ++-- agents/go-agents/core/process/common.go | 4 ++-- agents/go-agents/core/process/events.go | 4 ++-- agents/go-agents/core/process/file_logger.go | 4 ++-- agents/go-agents/core/process/file_logger_test.go | 4 ++-- agents/go-agents/core/process/logs_distributor.go | 4 ++-- .../go-agents/core/process/logs_distributor_test.go | 4 ++-- agents/go-agents/core/process/logs_reader.go | 4 ++-- agents/go-agents/core/process/logs_reader_test.go | 4 ++-- agents/go-agents/core/process/process.go | 4 ++-- agents/go-agents/core/process/process_builder.go | 4 ++-- agents/go-agents/core/process/process_cleaner.go | 4 ++-- .../go-agents/core/process/process_cleaner_test.go | 4 ++-- agents/go-agents/core/process/process_test.go | 4 ++-- .../go-agents/core/process/processtest/test_utils.go | 4 ++-- agents/go-agents/core/process/pumper.go | 4 ++-- agents/go-agents/core/rest/default_router.go | 4 ++-- agents/go-agents/core/rest/errors.go | 4 ++-- agents/go-agents/core/rest/restutil/util.go | 4 ++-- agents/go-agents/core/rest/route.go | 4 ++-- agents/go-agents/core/rest/router.go | 4 ++-- agents/go-agents/exec-agent/exec/common.go | 4 ++-- agents/go-agents/exec-agent/exec/rest_service.go | 4 ++-- .../go-agents/exec-agent/exec/rest_service_test.go | 4 ++-- agents/go-agents/exec-agent/exec/ws_service.go | 4 ++-- agents/go-agents/exec-agent/exec/ws_service_test.go | 4 ++-- agents/go-agents/exec-agent/main.go | 4 ++-- agents/go-agents/pom.xml | 4 ++-- agents/go-agents/terminal-agent/main.go | 4 ++-- agents/go-agents/terminal-agent/term/finalizer.go | 4 ++-- agents/go-agents/terminal-agent/term/pty.go | 4 ++-- agents/go-agents/terminal-agent/term/websocket.go | 4 ++-- agents/ls-csharp/pom.xml | 4 ++-- .../org/eclipse/che/api/agent/LSCSharpAgent.java | 4 ++-- .../resources/org.eclipse.che.ls.csharp.script.sh | 4 ++-- agents/ls-json/pom.xml | 4 ++-- .../java/org/eclipse/che/api/agent/LSJsonAgent.java | 4 ++-- .../main/resources/org.eclipse.che.ls.json.script.sh | 4 ++-- agents/ls-php/pom.xml | 4 ++-- .../java/org/eclipse/che/api/agent/LSPhpAgent.java | 4 ++-- .../main/resources/org.eclipse.che.ls.php.script.sh | 4 ++-- agents/ls-python/pom.xml | 4 ++-- .../org/eclipse/che/api/agent/LSPythonAgent.java | 4 ++-- .../resources/org.eclipse.che.ls.python.script.sh | 4 ++-- agents/ls-typescript/pom.xml | 4 ++-- .../org/eclipse/che/api/agent/LSTypeScriptAgent.java | 4 ++-- .../org.eclipse.che.ls.typescript.script.sh | 4 ++-- agents/pom.xml | 4 ++-- agents/ssh/pom.xml | 4 ++-- .../java/org/eclipse/che/api/agent/SshAgent.java | 4 ++-- .../org/eclipse/che/api/agent/SshAgentLauncher.java | 4 ++-- .../src/main/resources/org.eclipse.che.ssh.script.sh | 4 ++-- agents/terminal/pom.xml | 4 ++-- agents/terminal/src/assembly/assembly.xml | 4 ++-- .../org/eclipse/che/api/agent/TerminalAgent.java | 4 ++-- .../eclipse/che/api/agent/TerminalAgentLauncher.java | 4 ++-- .../resources/org.eclipse.che.terminal.script.sh | 4 ++-- agents/unison/pom.xml | 4 ++-- .../java/org/eclipse/che/api/agent/UnisonAgent.java | 4 ++-- .../main/resources/org.eclipse.che.unison.script.sh | 4 ++-- assembly/assembly-ide-war/pom.xml | 4 ++-- .../org/eclipse/che/DashboardRedirectionFilter.java | 4 ++-- .../resources/org/eclipse/che/ide/public/IDE.css | 4 ++-- assembly/assembly-ide-war/src/main/webapp/IDE.jsp | 4 ++-- .../src/main/webapp/META-INF/context.xml | 4 ++-- .../assembly-ide-war/src/main/webapp/WEB-INF/web.xml | 4 ++-- .../src/main/webapp/_app/browserNotSupported.js | 4 ++-- .../src/main/webapp/_app/factory-contribute.svg | 4 ++-- .../src/main/webapp/_app/factory-review.svg | 4 ++-- .../eclipse/che/DashboardRedirectionFilterTest.java | 4 ++-- assembly/assembly-main/pom.xml | 4 ++-- assembly/assembly-main/src/assembly/assembly.xml | 4 ++-- .../src/assembly/bin/che-install-plugin.bat | 4 ++-- .../src/assembly/bin/che-install-plugin.sh | 4 ++-- assembly/assembly-wsagent-server/pom.xml | 4 ++-- .../src/assembly/assembly.xml | 4 ++-- .../assembly-wsagent-server/src/assembly/setenv.sh | 4 ++-- assembly/assembly-wsagent-war/pom.xml | 4 ++-- .../che/wsagent/server/SwaggerServletModule.java | 4 ++-- assembly/assembly-wsmaster-war/pom.xml | 4 ++-- .../eclipse/che/api/deploy/CheWebSocketEndpoint.java | 4 ++-- .../che/api/deploy/WsMasterAnalyticsAddresser.java | 4 ++-- .../org/eclipse/che/api/deploy/WsMasterModule.java | 4 ++-- .../che/api/deploy/WsMasterServletModule.java | 4 ++-- .../src/main/resources/META-INF/persistence.xml | 4 ++-- .../src/main/webapp/META-INF/context.xml | 4 ++-- .../webapp/WEB-INF/classes/che_aliases.properties | 4 ++-- .../webapp/WEB-INF/classes/codenvy/che.properties | 4 ++-- .../src/main/webapp/WEB-INF/web.xml | 4 ++-- assembly/pom.xml | 4 ++-- core/che-core-api-core/pom.xml | 4 ++-- .../java/org/eclipse/che/api/core/ApiException.java | 4 ++-- .../eclipse/che/api/core/BadRequestException.java | 4 ++-- .../org/eclipse/che/api/core/ConflictException.java | 4 ++-- .../java/org/eclipse/che/api/core/ErrorCodes.java | 4 ++-- .../org/eclipse/che/api/core/ForbiddenException.java | 4 ++-- .../org/eclipse/che/api/core/NotFoundException.java | 4 ++-- .../src/main/java/org/eclipse/che/api/core/Page.java | 4 ++-- .../main/java/org/eclipse/che/api/core/Pages.java | 4 ++-- .../org/eclipse/che/api/core/ServerException.java | 4 ++-- .../eclipse/che/api/core/UnauthorizedException.java | 4 ++-- .../org/eclipse/che/api/core/cors/CheCorsFilter.java | 4 ++-- .../che/api/core/factory/FactoryParameter.java | 4 ++-- .../api/core/jsonrpc/commons/JsonRpcComposer.java | 4 ++-- .../che/api/core/jsonrpc/commons/JsonRpcError.java | 4 ++-- .../jsonrpc/commons/JsonRpcErrorTransmitter.java | 4 ++-- .../api/core/jsonrpc/commons/JsonRpcException.java | 4 ++-- .../api/core/jsonrpc/commons/JsonRpcMarshaller.java | 4 ++-- .../core/jsonrpc/commons/JsonRpcMessageReceiver.java | 4 ++-- .../che/api/core/jsonrpc/commons/JsonRpcParams.java | 4 ++-- .../che/api/core/jsonrpc/commons/JsonRpcPromise.java | 4 ++-- .../api/core/jsonrpc/commons/JsonRpcQualifier.java | 4 ++-- .../che/api/core/jsonrpc/commons/JsonRpcRequest.java | 4 ++-- .../api/core/jsonrpc/commons/JsonRpcResponse.java | 4 ++-- .../che/api/core/jsonrpc/commons/JsonRpcResult.java | 4 ++-- .../core/jsonrpc/commons/JsonRpcUnmarshaller.java | 4 ++-- .../che/api/core/jsonrpc/commons/JsonRpcUtils.java | 4 ++-- .../core/jsonrpc/commons/NotificationHandler.java | 4 ++-- .../api/core/jsonrpc/commons/RequestDispatcher.java | 4 ++-- .../che/api/core/jsonrpc/commons/RequestHandler.java | 4 ++-- .../jsonrpc/commons/RequestHandlerConfigurator.java | 4 ++-- .../core/jsonrpc/commons/RequestHandlerManager.java | 4 ++-- .../api/core/jsonrpc/commons/RequestProcessor.java | 4 ++-- .../api/core/jsonrpc/commons/RequestTransmitter.java | 4 ++-- .../api/core/jsonrpc/commons/ResponseDispatcher.java | 4 ++-- .../core/jsonrpc/commons/TimeoutActionRunner.java | 4 ++-- .../reception/ConsumerConfiguratorManyToNone.java | 4 ++-- .../reception/ConsumerConfiguratorNoneToNone.java | 4 ++-- .../reception/ConsumerConfiguratorOneToNone.java | 4 ++-- .../reception/FunctionConfiguratorManyToMany.java | 4 ++-- .../reception/FunctionConfiguratorManyToOne.java | 4 ++-- .../reception/FunctionConfiguratorNoneToMany.java | 4 ++-- .../reception/FunctionConfiguratorNoneToOne.java | 4 ++-- .../reception/FunctionConfiguratorOneToMany.java | 4 ++-- .../reception/FunctionConfiguratorOneToOne.java | 4 ++-- .../commons/reception/MethodNameConfigurator.java | 4 ++-- .../commons/reception/ParamsConfigurator.java | 4 ++-- .../reception/ResultConfiguratorFromMany.java | 4 ++-- .../reception/ResultConfiguratorFromNone.java | 4 ++-- .../commons/reception/ResultConfiguratorFromOne.java | 4 ++-- .../commons/transmission/EndpointIdConfigurator.java | 4 ++-- .../commons/transmission/MethodNameConfigurator.java | 4 ++-- .../commons/transmission/ParamsConfigurator.java | 4 ++-- .../transmission/SendConfiguratorFromMany.java | 4 ++-- .../transmission/SendConfiguratorFromNone.java | 4 ++-- .../transmission/SendConfiguratorFromOne.java | 4 ++-- .../api/core/jsonrpc/impl/GsonJsonRpcComposer.java | 4 ++-- .../api/core/jsonrpc/impl/GsonJsonRpcMarshaller.java | 4 ++-- .../api/core/jsonrpc/impl/GsonJsonRpcQualifier.java | 4 ++-- .../core/jsonrpc/impl/GsonJsonRpcUnmarshaller.java | 4 ++-- .../che/api/core/jsonrpc/impl/JsonRpcModule.java | 4 ++-- .../jsonrpc/impl/ServerSideRequestProcessor.java | 4 ++-- .../jsonrpc/impl/ServerSideTimeoutActionRunner.java | 4 ++-- .../notification/ClientEventPropagationPolicy.java | 4 ++-- .../che/api/core/notification/EventOrigin.java | 4 ++-- .../EventOriginClientPropagationPolicy.java | 4 ++-- .../EventOriginServerPropagationPolicy.java | 4 ++-- .../che/api/core/notification/EventService.java | 4 ++-- .../che/api/core/notification/EventSubscriber.java | 4 ++-- .../eclipse/che/api/core/notification/Messages.java | 4 ++-- .../notification/ServerEventPropagationPolicy.java | 4 ++-- .../api/core/notification/WSocketEventBusClient.java | 4 ++-- .../api/core/notification/WSocketEventBusServer.java | 4 ++-- .../che/api/core/rest/ApiExceptionMapper.java | 4 ++-- .../eclipse/che/api/core/rest/ApiInfoService.java | 4 ++-- .../eclipse/che/api/core/rest/CheJsonProvider.java | 4 ++-- .../org/eclipse/che/api/core/rest/Constants.java | 4 ++-- .../eclipse/che/api/core/rest/CoreRestModule.java | 4 ++-- .../che/api/core/rest/DefaultHttpJsonRequest.java | 4 ++-- .../api/core/rest/DefaultHttpJsonRequestFactory.java | 4 ++-- .../che/api/core/rest/DefaultHttpJsonResponse.java | 4 ++-- .../api/core/rest/DownloadFileResponseFilter.java | 4 ++-- .../eclipse/che/api/core/rest/HttpJsonHelper.java | 4 ++-- .../eclipse/che/api/core/rest/HttpJsonRequest.java | 4 ++-- .../che/api/core/rest/HttpJsonRequestFactory.java | 4 ++-- .../eclipse/che/api/core/rest/HttpJsonResponse.java | 4 ++-- .../eclipse/che/api/core/rest/HttpOutputMessage.java | 4 ++-- .../che/api/core/rest/HttpServletProxyResponse.java | 4 ++-- .../core/rest/JAXRSDownloadFileResponseFilter.java | 4 ++-- .../che/api/core/rest/MessageBodyAdapter.java | 4 ++-- .../api/core/rest/MessageBodyAdapterInterceptor.java | 4 ++-- .../eclipse/che/api/core/rest/OutputProvider.java | 4 ++-- .../che/api/core/rest/RemoteServiceDescriptor.java | 4 ++-- .../che/api/core/rest/RuntimeExceptionMapper.java | 4 ++-- .../java/org/eclipse/che/api/core/rest/Service.java | 4 ++-- .../eclipse/che/api/core/rest/ServiceContext.java | 4 ++-- .../che/api/core/rest/annotations/Description.java | 4 ++-- .../che/api/core/rest/annotations/GenerateLink.java | 4 ++-- .../che/api/core/rest/annotations/OPTIONS.java | 4 ++-- .../che/api/core/rest/annotations/Required.java | 4 ++-- .../eclipse/che/api/core/rest/annotations/Valid.java | 4 ++-- .../org/eclipse/che/api/core/rest/shared/Links.java | 4 ++-- .../che/api/core/rest/shared/ParameterType.java | 4 ++-- .../che/api/core/rest/shared/dto/ApiInfo.java | 4 ++-- .../che/api/core/rest/shared/dto/ExtendedError.java | 4 ++-- .../che/api/core/rest/shared/dto/Hyperlinks.java | 4 ++-- .../eclipse/che/api/core/rest/shared/dto/Link.java | 4 ++-- .../che/api/core/rest/shared/dto/LinkParameter.java | 4 ++-- .../core/rest/shared/dto/RequestBodyDescriptor.java | 4 ++-- .../api/core/rest/shared/dto/ServiceDescriptor.java | 4 ++-- .../che/api/core/rest/shared/dto/ServiceError.java | 4 ++-- .../che/api/core/util/AbstractLineConsumer.java | 4 ++-- .../che/api/core/util/AbstractMessageConsumer.java | 4 ++-- .../org/eclipse/che/api/core/util/Cancellable.java | 4 ++-- .../che/api/core/util/CancellableProcessWrapper.java | 4 ++-- .../org/eclipse/che/api/core/util/CommandLine.java | 4 ++-- .../che/api/core/util/CompositeLineConsumer.java | 4 ++-- .../che/api/core/util/ContentTypeGuesser.java | 4 ++-- .../eclipse/che/api/core/util/CustomPortService.java | 4 ++-- .../che/api/core/util/DefaultProcessManager.java | 4 ++-- .../eclipse/che/api/core/util/DownloadPlugin.java | 4 ++-- .../che/api/core/util/ErrorFilteredConsumer.java | 4 ++-- .../org/eclipse/che/api/core/util/FileCleaner.java | 4 ++-- .../eclipse/che/api/core/util/FileLineConsumer.java | 4 ++-- .../che/api/core/util/HttpDownloadPlugin.java | 4 ++-- .../che/api/core/util/IndentWrapperLineConsumer.java | 4 ++-- .../che/api/core/util/JsonRpcEndpointIdProvider.java | 4 ++-- .../che/api/core/util/JsonRpcEndpointIdsHolder.java | 4 ++-- .../util/JsonRpcEndpointToMachineNameHolder.java | 4 ++-- .../che/api/core/util/JsonRpcLineConsumer.java | 4 ++-- .../che/api/core/util/JsonRpcMessageConsumer.java | 4 ++-- .../org/eclipse/che/api/core/util/LineConsumer.java | 4 ++-- .../che/api/core/util/LineConsumerFactory.java | 4 ++-- .../org/eclipse/che/api/core/util/LinksHelper.java | 4 ++-- .../eclipse/che/api/core/util/ListLineConsumer.java | 4 ++-- .../eclipse/che/api/core/util/MessageConsumer.java | 4 ++-- .../org/eclipse/che/api/core/util/PagingUtil.java | 4 ++-- .../eclipse/che/api/core/util/ProcessManager.java | 4 ++-- .../org/eclipse/che/api/core/util/ProcessUtil.java | 4 ++-- .../che/api/core/util/RateExceedDetector.java | 4 ++-- .../org/eclipse/che/api/core/util/ShellFactory.java | 4 ++-- .../org/eclipse/che/api/core/util/StreamPump.java | 4 ++-- .../org/eclipse/che/api/core/util/SystemInfo.java | 4 ++-- .../che/api/core/util/UnixProcessManager.java | 4 ++-- .../org/eclipse/che/api/core/util/ValueHolder.java | 4 ++-- .../java/org/eclipse/che/api/core/util/Watchdog.java | 4 ++-- .../che/api/core/util/WebsocketLineConsumer.java | 4 ++-- .../che/api/core/util/WebsocketMessageConsumer.java | 4 ++-- .../che/api/core/util/WritableLineConsumer.java | 4 ++-- .../ConcurrentCompositeLineConsumer.java | 4 ++-- .../lineconsumer/ConcurrentFileLineConsumer.java | 4 ++-- .../lineconsumer/ConsumerAlreadyClosedException.java | 4 ++-- .../websocket/commons/WebSocketMessageReceiver.java | 4 ++-- .../commons/WebSocketMessageTransmitter.java | 4 ++-- .../core/websocket/impl/BasicWebSocketEndpoint.java | 4 ++-- .../impl/BasicWebSocketMessageTransmitter.java | 4 ++-- .../impl/GuiceInjectorEndpointConfigurator.java | 4 ++-- .../api/core/websocket/impl/MessagesReSender.java | 4 ++-- .../che/api/core/websocket/impl/WebSocketModule.java | 4 ++-- .../websocket/impl/WebSocketSessionRegistry.java | 4 ++-- .../api/core/websocket/impl/WebsocketIdService.java | 4 ++-- .../eclipse/che/commons/env/EnvironmentContext.java | 4 ++-- .../che/commons/proxy/ProxyAuthenticator.java | 4 ++-- .../org/eclipse/che/commons/subject/Subject.java | 4 ++-- .../org/eclipse/che/commons/subject/SubjectImpl.java | 4 ++-- .../eclipse/che/everrest/CheAsynchronousJobPool.java | 4 ++-- .../eclipse/che/everrest/CheMethodInvokerFilter.java | 4 ++-- .../org/eclipse/che/everrest/CheWSConnection.java | 4 ++-- .../org/eclipse/che/everrest/ETagResponseFilter.java | 4 ++-- .../everrest/EverrestDownloadFileResponseFilter.java | 4 ++-- .../everrest/ServerContainerInitializeListener.java | 4 ++-- .../everrest/WebSocketMethodInvokerDecorator.java | 4 ++-- .../WebSocketMethodInvokerDecoratorFactory.java | 4 ++-- .../che/security/PBKDF2PasswordEncryptor.java | 4 ++-- .../org/eclipse/che/security/PasswordEncryptor.java | 4 ++-- .../che/security/SHA512PasswordEncryptor.java | 4 ++-- .../src/main/resources/content-types.properties | 4 ++-- .../test/java/org/eclipse/che/api/core/PageTest.java | 4 ++-- .../java/org/eclipse/che/api/core/PagesTest.java | 4 ++-- .../jsonrpc/commons/JsonRpcMessageReceiverTest.java | 4 ++-- .../core/jsonrpc/commons/RequestDispatcherTest.java | 4 ++-- .../che/api/core/notification/EventServiceTest.java | 4 ++-- .../api/core/rest/DefaultHttpJsonRequestTest.java | 4 ++-- .../api/core/rest/DefaultHttpJsonResponseTest.java | 4 ++-- .../che/api/core/rest/LinkHeaderGenerationTest.java | 4 ++-- .../api/core/rest/RemoteServiceDescriptorTest.java | 4 ++-- .../api/core/rest/RuntimeExceptionMapperTest.java | 4 ++-- .../che/api/core/rest/ServiceDescriptorTest.java | 4 ++-- .../org/eclipse/che/api/core/rest/TestService.java | 4 ++-- .../che/api/core/util/CompositeLineConsumerTest.java | 4 ++-- .../che/api/core/util/ErrorFilteredConsumerTest.java | 4 ++-- .../che/api/core/util/FileLineConsumerTest.java | 4 ++-- .../eclipse/che/api/core/util/PagingUtilTest.java | 4 ++-- .../eclipse/che/api/core/util/ProcessUtilTest.java | 4 ++-- .../che/api/core/util/RateExceedDetectorTest.java | 4 ++-- .../che/api/core/util/StandardLinuxShellTest.java | 4 ++-- .../org/eclipse/che/api/core/util/WatchdogTest.java | 4 ++-- .../ConcurrentCompositeLineConsumerTest.java | 4 ++-- .../lineconsumer/ConcurrentFileLineConsumerTest.java | 4 ++-- .../impl/BasicWebSocketMessageTransmitterTest.java | 4 ++-- .../core/websocket/impl/MessagesReSenderTest.java | 4 ++-- .../websocket/impl/WebSocketSessionRegistryTest.java | 4 ++-- .../che/commons/env/EnvironmentContextTest.java | 4 ++-- .../che/commons/proxy/ProxyAuthenticatorTest.java | 4 ++-- .../che/everrest/DownloadFileResponseFilterTest.java | 4 ++-- .../eclipse/che/everrest/ETagResponseFilterTest.java | 4 ++-- .../eclipse/che/security/PasswordEncryptorsTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- core/che-core-api-dto-maven-plugin/pom.xml | 4 ++-- .../dto/generator/maven/plugin/DtoGeneratorMojo.java | 4 ++-- core/che-core-api-dto/pom.xml | 4 ++-- .../java/org/eclipse/che/dto/server/DtoFactory.java | 4 ++-- .../eclipse/che/dto/server/DtoFactoryVisitor.java | 4 ++-- .../java/org/eclipse/che/dto/server/DtoProvider.java | 4 ++-- .../org/eclipse/che/dto/server/JsonArrayImpl.java | 4 ++-- .../eclipse/che/dto/server/JsonStringMapImpl.java | 4 ++-- .../main/java/org/eclipse/che/dto/shared/DTO.java | 4 ++-- .../java/org/eclipse/che/dto/shared/DTOImpl.java | 4 ++-- .../org/eclipse/che/dto/shared/DelegateRule.java | 4 ++-- .../java/org/eclipse/che/dto/shared/DelegateTo.java | 4 ++-- .../java/org/eclipse/che/dto/shared/JsonArray.java | 4 ++-- .../org/eclipse/che/dto/shared/JsonFieldName.java | 4 ++-- .../org/eclipse/che/dto/shared/JsonStringMap.java | 4 ++-- .../test/java/org/eclipse/che/dto/ServerDtoTest.java | 4 ++-- .../eclipse/che/dto/definitions/ComplicatedDto.java | 4 ++-- .../eclipse/che/dto/definitions/DTOHierarchy.java | 4 ++-- .../org/eclipse/che/dto/definitions/DtoWithAny.java | 4 ++-- .../eclipse/che/dto/definitions/DtoWithDelegate.java | 4 ++-- .../che/dto/definitions/DtoWithFieldNames.java | 4 ++-- .../org/eclipse/che/dto/definitions/SimpleDto.java | 4 ++-- .../eclipse/che/dto/definitions/TestInterface.java | 4 ++-- .../java/org/eclipse/che/dto/definitions/Util.java | 4 ++-- .../org/eclipse/che/dto/definitions/model/Model.java | 4 ++-- .../che/dto/definitions/model/ModelComponent.java | 4 ++-- .../che/dto/definitions/model/ModelComponentDto.java | 4 ++-- .../eclipse/che/dto/definitions/model/ModelDto.java | 4 ++-- core/che-core-api-model/pom.xml | 4 ++-- .../eclipse/che/api/core/model/factory/Action.java | 4 ++-- .../eclipse/che/api/core/model/factory/Author.java | 4 ++-- .../eclipse/che/api/core/model/factory/Button.java | 4 ++-- .../che/api/core/model/factory/ButtonAttributes.java | 4 ++-- .../eclipse/che/api/core/model/factory/Factory.java | 4 ++-- .../org/eclipse/che/api/core/model/factory/Ide.java | 4 ++-- .../che/api/core/model/factory/OnAppClosed.java | 4 ++-- .../che/api/core/model/factory/OnAppLoaded.java | 4 ++-- .../che/api/core/model/factory/OnProjectsLoaded.java | 4 ++-- .../eclipse/che/api/core/model/factory/Policies.java | 4 ++-- .../eclipse/che/api/core/model/machine/Command.java | 4 ++-- .../eclipse/che/api/core/model/machine/Machine.java | 4 ++-- .../che/api/core/model/machine/MachineConfig.java | 4 ++-- .../che/api/core/model/machine/MachineLimits.java | 4 ++-- .../api/core/model/machine/MachineLogMessage.java | 4 ++-- .../che/api/core/model/machine/MachineProcess.java | 4 ++-- .../api/core/model/machine/MachineRuntimeInfo.java | 4 ++-- .../che/api/core/model/machine/MachineSource.java | 4 ++-- .../che/api/core/model/machine/MachineStatus.java | 4 ++-- .../eclipse/che/api/core/model/machine/Recipe.java | 4 ++-- .../eclipse/che/api/core/model/machine/Server.java | 4 ++-- .../che/api/core/model/machine/ServerConf.java | 4 ++-- .../che/api/core/model/machine/ServerProperties.java | 4 ++-- .../eclipse/che/api/core/model/machine/Snapshot.java | 4 ++-- .../che/api/core/model/project/NewProjectConfig.java | 4 ++-- .../eclipse/che/api/core/model/project/Project.java | 4 ++-- .../che/api/core/model/project/ProjectConfig.java | 4 ++-- .../che/api/core/model/project/SourceStorage.java | 4 ++-- .../che/api/core/model/project/fs/Folder.java | 4 ++-- .../che/api/core/model/project/type/Attribute.java | 4 ++-- .../che/api/core/model/project/type/ProjectType.java | 4 ++-- .../che/api/core/model/project/type/Value.java | 4 ++-- .../org/eclipse/che/api/core/model/user/Profile.java | 4 ++-- .../org/eclipse/che/api/core/model/user/User.java | 4 ++-- .../che/api/core/model/workspace/Environment.java | 4 ++-- .../api/core/model/workspace/EnvironmentRecipe.java | 4 ++-- .../api/core/model/workspace/ExtendedMachine.java | 4 ++-- .../che/api/core/model/workspace/ServerConf2.java | 4 ++-- .../che/api/core/model/workspace/Workspace.java | 4 ++-- .../api/core/model/workspace/WorkspaceConfig.java | 4 ++-- .../api/core/model/workspace/WorkspaceRuntime.java | 4 ++-- .../api/core/model/workspace/WorkspaceStatus.java | 4 ++-- core/che-core-db-vendor-h2/pom.xml | 4 ++-- .../eclipse/che/core/db/h2/H2DataSourceProvider.java | 4 ++-- .../db/h2/jpa/eclipselink/H2ExceptionHandler.java | 4 ++-- core/che-core-db-vendor-postgresql/pom.xml | 4 ++-- .../jpa/eclipselink/PostgreSqlExceptionHandler.java | 4 ++-- core/che-core-db/pom.xml | 4 ++-- .../java/org/eclipse/che/core/db/DBErrorCode.java | 4 ++-- .../java/org/eclipse/che/core/db/DBInitializer.java | 4 ++-- .../eclipse/che/core/db/JndiDataSourceProvider.java | 4 ++-- .../eclipse/che/core/db/cascade/CascadeContext.java | 4 ++-- .../che/core/db/cascade/CascadeEventSubscriber.java | 4 ++-- .../che/core/db/cascade/event/CascadeEvent.java | 4 ++-- .../che/core/db/cascade/event/PersistEvent.java | 4 ++-- .../che/core/db/cascade/event/RemoveEvent.java | 4 ++-- .../che/core/db/cascade/event/UpdateEvent.java | 4 ++-- .../che/core/db/jpa/DetailedRollbackException.java | 4 ++-- .../che/core/db/jpa/DuplicateKeyException.java | 4 ++-- .../jpa/IntegrityConstraintViolationException.java | 4 ++-- .../org/eclipse/che/core/db/jpa/JpaInitializer.java | 4 ++-- .../GuiceEntityListenerInjectionManager.java | 4 ++-- .../che/core/db/jpa/guice/GuiceJpaInitializer.java | 4 ++-- .../db/schema/SchemaInitializationException.java | 4 ++-- .../che/core/db/schema/SchemaInitializer.java | 4 ++-- .../impl/flyway/CustomSqlMigrationResolver.java | 4 ++-- .../schema/impl/flyway/FlywaySchemaInitializer.java | 4 ++-- .../impl/flyway/PlaceholderReplacerProvider.java | 4 ++-- .../core/db/schema/impl/flyway/ResourcesFinder.java | 4 ++-- .../che/core/db/schema/impl/flyway/SqlScript.java | 4 ++-- .../core/db/schema/impl/flyway/SqlScriptCreator.java | 4 ++-- .../core/db/schema/impl/flyway/VersionResolver.java | 4 ++-- .../impl/flyway/FlywaySchemaInitializerTest.java | 4 ++-- .../db/schema/impl/flyway/ResourcesFinderTest.java | 4 ++-- .../db/schema/impl/flyway/SqlScriptCreatorTest.java | 4 ++-- .../db/schema/impl/flyway/VersionResolverTest.java | 4 ++-- core/che-core-db/src/test/resources/logback-test.xml | 4 ++-- .../src/test/resources/sql/1.0/1.init.sql | 4 ++-- .../src/test/resources/sql/1.0/2.add_data.sql | 4 ++-- .../test/resources/sql/2.0/1.modify_test_table.sql | 4 ++-- .../sql/2.0/postgresql/1.modify_test_table.sql | 4 ++-- core/che-core-typescript-dto-maven-plugin/pom.xml | 4 ++-- .../dto/TypeScriptDTOGeneratorMojoITest.java | 4 ++-- .../src/it/resources/dto.spec.ts | 4 ++-- .../eclipse/che/plugin/typescript/dto/DTOHelper.java | 4 ++-- .../typescript/dto/TypeScriptDTOGeneratorMojo.java | 4 ++-- .../typescript/dto/TypeScriptDtoGenerator.java | 4 ++-- .../che/plugin/typescript/dto/model/DtoModel.java | 4 ++-- .../typescript/dto/model/FieldAttributeModel.java | 4 ++-- .../che/plugin/typescript/dto/model/MethodModel.java | 4 ++-- .../typescript/dto/model/ParameterMethodModel.java | 4 ++-- .../che/plugin/typescript/dto/MyCustomDTO.java | 4 ++-- .../che/plugin/typescript/dto/MyOtherDTO.java | 4 ++-- .../che/plugin/typescript/dto/MySimpleDTO.java | 4 ++-- .../che/plugin/typescript/dto/MySuperClassDTO.java | 4 ++-- .../che/plugin/typescript/dto/MySuperSuperClass.java | 4 ++-- .../eclipse/che/plugin/typescript/dto/Status.java | 4 ++-- .../dto/TypeScriptDTOGeneratorMojoTest.java | 4 ++-- .../stub/TypeScriptDTOGeneratorMojoProjectStub.java | 4 ++-- .../src/test/projects/project/pom.xml | 4 ++-- core/commons/che-core-commons-annotations/pom.xml | 4 ++-- .../org/eclipse/che/commons/annotation/Nullable.java | 4 ++-- core/commons/che-core-commons-inject/pom.xml | 4 ++-- .../java/org/eclipse/che/inject/CheBootstrap.java | 4 ++-- .../org/eclipse/che/inject/CodenvyBootstrap.java | 4 ++-- .../eclipse/che/inject/ConfigurationException.java | 4 ++-- .../eclipse/che/inject/ConfigurationProperties.java | 4 ++-- .../main/java/org/eclipse/che/inject/DynaModule.java | 4 ++-- .../java/org/eclipse/che/inject/FileConverter.java | 4 ++-- .../main/java/org/eclipse/che/inject/Matchers.java | 4 ++-- .../java/org/eclipse/che/inject/ModuleScanner.java | 4 ++-- .../org/eclipse/che/inject/PairArrayConverter.java | 4 ++-- .../java/org/eclipse/che/inject/PairConverter.java | 4 ++-- .../java/org/eclipse/che/inject/PathConverter.java | 4 ++-- .../org/eclipse/che/inject/StringArrayConverter.java | 4 ++-- .../java/org/eclipse/che/inject/URIConverter.java | 4 ++-- .../java/org/eclipse/che/inject/URLConverter.java | 4 ++-- .../che/inject/lifecycle/DestroyErrorHandler.java | 4 ++-- .../eclipse/che/inject/lifecycle/DestroyModule.java | 4 ++-- .../org/eclipse/che/inject/lifecycle/Destroyer.java | 4 ++-- .../org/eclipse/che/inject/lifecycle/InitModule.java | 4 ++-- .../che/inject/lifecycle/LifecycleModule.java | 4 ++-- .../org/eclipse/che/inject/CheBootstrapTest.java | 4 ++-- .../java/org/eclipse/che/inject/LifecycleTest.java | 4 ++-- .../org/eclipse/che/inject/MultiBindingTest.java | 4 ++-- .../org/eclipse/che/inject/PathConverterTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- core/commons/che-core-commons-j2ee/pom.xml | 4 ++-- .../eclipse/che/filter/CheCacheDisablingFilter.java | 4 ++-- .../eclipse/che/filter/CheCacheForcingFilter.java | 4 ++-- .../che/filter/CheCacheDisablingFilterTest.java | 4 ++-- .../che/filter/CheCacheForcingFilterTest.java | 4 ++-- core/commons/che-core-commons-json/pom.xml | 4 ++-- .../org/eclipse/che/commons/json/JsonHelper.java | 4 ++-- .../eclipse/che/commons/json/JsonNameConvention.java | 4 ++-- .../che/commons/json/JsonNameConventions.java | 4 ++-- .../eclipse/che/commons/json/JsonParseException.java | 4 ++-- .../che/commons/json/NameConventionJsonParser.java | 4 ++-- .../che/commons/json/NameConventionJsonWriter.java | 4 ++-- .../java/org/eclipse/che/commons/json/JsonTest.java | 4 ++-- core/commons/che-core-commons-lang/pom.xml | 4 ++-- .../org/eclipse/che/commons/lang/Deserializer.java | 4 ++-- .../java/org/eclipse/che/commons/lang/IoUtil.java | 4 ++-- .../org/eclipse/che/commons/lang/NameGenerator.java | 4 ++-- .../main/java/org/eclipse/che/commons/lang/Pair.java | 4 ++-- .../java/org/eclipse/che/commons/lang/PathUtil.java | 4 ++-- .../main/java/org/eclipse/che/commons/lang/Size.java | 4 ++-- .../org/eclipse/che/commons/lang/StringUtils.java | 4 ++-- .../java/org/eclipse/che/commons/lang/TarUtils.java | 4 ++-- .../eclipse/che/commons/lang/URLEncodedUtils.java | 4 ++-- .../java/org/eclipse/che/commons/lang/UrlUtils.java | 4 ++-- .../java/org/eclipse/che/commons/lang/ZipUtils.java | 4 ++-- .../lang/concurrent/CopyThreadLocalCallable.java | 4 ++-- .../lang/concurrent/CopyThreadLocalRunnable.java | 4 ++-- .../concurrent/LoggingUncaughtExceptionHandler.java | 4 ++-- .../concurrent/PropagatedThreadLocalsProvider.java | 4 ++-- .../che/commons/lang/concurrent/StripedLocks.java | 4 ++-- .../lang/concurrent/ThreadLocalPropagateContext.java | 4 ++-- .../che/commons/lang/concurrent/Unlocker.java | 4 ++-- .../che/commons/lang/execution/CommandLine.java | 4 ++-- .../commons/lang/execution/ExecutionException.java | 4 ++-- .../eclipse/che/commons/lang/execution/Executor.java | 4 ++-- .../che/commons/lang/execution/JavaParameters.java | 4 ++-- .../che/commons/lang/execution/OutputReader.java | 4 ++-- .../che/commons/lang/execution/ParametersList.java | 4 ++-- .../che/commons/lang/execution/ProcessEvent.java | 4 ++-- .../che/commons/lang/execution/ProcessExecutor.java | 4 ++-- .../che/commons/lang/execution/ProcessHandler.java | 4 ++-- .../che/commons/lang/execution/ProcessListener.java | 4 ++-- .../commons/lang/execution/ProcessOutputType.java | 4 ++-- .../commons/lang/execution/WaitForProcessEnd.java | 4 ++-- .../che/commons/lang/os/WindowsPathEscaper.java | 4 ++-- .../commons/lang/reflect/ParameterizedTypeImpl.java | 4 ++-- .../eclipse/che/commons/lang/ws/rs/ExtMediaType.java | 4 ++-- .../org/eclipse/che/commons/lang/PathUtilTest.java | 4 ++-- .../java/org/eclipse/che/commons/lang/SizeTest.java | 4 ++-- .../che/commons/lang/TestURLEncodedUtils.java | 4 ++-- .../org/eclipse/che/commons/lang/UrlUtilsTest.java | 4 ++-- .../org/eclipse/che/commons/lang/ZipUtilsTest.java | 4 ++-- .../concurrent/ThreadLocalPropagateContextTest.java | 4 ++-- .../che/commons/lang/os/WindowsPathEscaperTest.java | 4 ++-- .../src/test/resources/findbugs-exclude.xml | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- core/commons/che-core-commons-schedule/pom.xml | 4 ++-- .../org/eclipse/che/commons/schedule/Launcher.java | 4 ++-- .../eclipse/che/commons/schedule/ScheduleCron.java | 4 ++-- .../eclipse/che/commons/schedule/ScheduleDelay.java | 4 ++-- .../eclipse/che/commons/schedule/ScheduleRate.java | 4 ++-- .../schedule/executor/CronExecutorService.java | 4 ++-- .../schedule/executor/CronThreadPoolExecutor.java | 4 ++-- .../commons/schedule/executor/LoggedRunnable.java | 4 ++-- .../commons/schedule/executor/ScheduleModule.java | 4 ++-- .../schedule/executor/ThreadPullLauncher.java | 4 ++-- .../che/inject/lifecycle/InternalScheduleModule.java | 4 ++-- .../inject/lifecycle/ScheduleInjectionListener.java | 4 ++-- .../src/test/resources/findbugs-exclude.xml | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- core/commons/che-core-commons-test/pom.xml | 4 ++-- .../che/commons/test/SystemPropertiesHelper.java | 4 ++-- .../eclipse/che/commons/test/db/DBTestServer.java | 4 ++-- .../eclipse/che/commons/test/db/H2DBTestServer.java | 4 ++-- .../eclipse/che/commons/test/db/H2JpaCleaner.java | 4 ++-- .../eclipse/che/commons/test/db/H2TestHelper.java | 4 ++-- .../commons/test/db/PersistTestModuleBuilder.java | 4 ++-- .../test/mockito/answer/SelfReturningAnswer.java | 4 ++-- .../commons/test/mockito/answer/WaitingAnswer.java | 4 ++-- .../commons/test/servlet/MockServletInputStream.java | 4 ++-- .../org/eclipse/che/commons/test/tck/JpaCleaner.java | 4 ++-- .../eclipse/che/commons/test/tck/TckListener.java | 4 ++-- .../org/eclipse/che/commons/test/tck/TckModule.java | 4 ++-- .../che/commons/test/tck/TckResourcesCleaner.java | 4 ++-- .../che/commons/test/tck/TestListenerAdapter.java | 4 ++-- .../test/tck/repository/JpaTckRepository.java | 4 ++-- .../commons/test/tck/repository/TckRepository.java | 4 ++-- .../test/tck/repository/TckRepositoryException.java | 4 ++-- .../test/db/PersistTestModuleBuilderTest.java | 4 ++-- .../che/commons/test/tck/DBServerListener.java | 4 ++-- .../che/commons/test/tck/TckComponentsTest.java | 4 ++-- .../eclipse/che/commons/test/tck/TestModule1.java | 4 ++-- .../eclipse/che/commons/test/tck/TestModule2.java | 4 ++-- .../che/commons/test/db/test-persistence-1.xml | 4 ++-- core/commons/che-core-commons-xml/pom.xml | 4 ++-- .../java/org/eclipse/che/commons/xml/Attribute.java | 4 ++-- .../java/org/eclipse/che/commons/xml/Element.java | 4 ++-- .../org/eclipse/che/commons/xml/ElementMapper.java | 4 ++-- .../org/eclipse/che/commons/xml/NewAttribute.java | 4 ++-- .../java/org/eclipse/che/commons/xml/NewElement.java | 4 ++-- .../main/java/org/eclipse/che/commons/xml/QName.java | 4 ++-- .../java/org/eclipse/che/commons/xml/XMLTree.java | 4 ++-- .../eclipse/che/commons/xml/XMLTreeException.java | 4 ++-- .../org/eclipse/che/commons/xml/XMLTreeLocation.java | 4 ++-- .../org/eclipse/che/commons/xml/XMLTreeUtil.java | 4 ++-- .../org/eclipse/che/commons/xml/XMLTreeTest.java | 4 ++-- .../org/eclipse/che/commons/xml/XMLTreeUtilTest.java | 4 ++-- core/commons/pom.xml | 4 ++-- core/pom.xml | 4 ++-- dashboard/pom.xml | 4 ++-- dashboard/src/app/admin/admin-config.ts | 4 ++-- dashboard/src/app/admin/plugins/plugins-config.ts | 4 ++-- dashboard/src/app/admin/plugins/plugins-filter.ts | 4 ++-- .../src/app/admin/plugins/plugins.controller.ts | 4 ++-- .../src/app/administration/administration-config.ts | 4 ++-- .../docker-registry-list.controller.ts | 4 ++-- .../docker-registry-list.directive.ts | 4 ++-- .../edit-registry/edit-registry.controller.ts | 4 ++-- dashboard/src/app/colors/che-color.constant.ts | 4 ++-- .../src/app/constants/che-countries.constant.ts | 4 ++-- dashboard/src/app/constants/che-jobs.constant.ts | 4 ++-- dashboard/src/app/dashboard/dashboard-config.ts | 4 ++-- .../dashboard-panel/dashboard-panel.directive.ts | 4 ++-- .../last-workspaces/last-workspaces.controller.ts | 4 ++-- .../last-workspaces/last-workspaces.directive.ts | 4 ++-- .../demo-components/demo-components.controller.ts | 4 ++-- .../src/app/diagnostics/diagnostic-callback-state.ts | 5 ++--- dashboard/src/app/diagnostics/diagnostic-callback.ts | 4 ++-- dashboard/src/app/diagnostics/diagnostic-item.ts | 4 ++-- .../src/app/diagnostics/diagnostic-part-state.ts | 5 ++--- dashboard/src/app/diagnostics/diagnostic-part.ts | 4 ++-- dashboard/src/app/diagnostics/diagnostics-config.ts | 4 ++-- .../src/app/diagnostics/diagnostics.controller.ts | 4 ++-- .../src/app/diagnostics/diagnostics.directive.ts | 4 ++-- .../test/diagnostics-websocket-wsmaster.factory.ts | 4 ++-- .../diagnostics-workspace-check-workspace.factory.ts | 4 ++-- .../diagnostics-workspace-start-check.factory.ts | 4 ++-- .../action/factory-action-box.controller.ts | 4 ++-- .../action/factory-action-box.directive.ts | 4 ++-- .../action/factory-action-edit.controller.ts | 4 ++-- .../command/factory-command-edit.controller.ts | 4 ++-- .../command/factory-command.controller.ts | 4 ++-- .../command/factory-command.directive.ts | 4 ++-- .../config-file-tab/factory-from-file.controller.ts | 4 ++-- .../config-file-tab/factory-from-file.directive.ts | 4 ++-- .../create-factory/create-factory-config.ts | 4 ++-- .../create-factory/create-factory.controller.ts | 4 ++-- .../git/create-factory-git.controller.ts | 4 ++-- .../git/create-factory-git.directive.ts | 4 ++-- .../template-tab/factory-from-template.controller.ts | 4 ++-- .../template-tab/factory-from-template.directive.ts | 4 ++-- .../factory-from-workpsace.controller.ts | 4 ++-- .../factory-from-workspace.directive.ts | 4 ++-- dashboard/src/app/factories/factories-config.ts | 4 ++-- .../factory-details/factory-details-config.ts | 4 ++-- .../factory-details/factory-details.controller.ts | 4 ++-- .../factory-information.controller.ts | 4 ++-- .../factory-information.directive.ts | 4 ++-- .../information-tab/information-tab-config.ts | 4 ++-- .../last-factories/last-factories-config.ts | 4 ++-- .../last-factories/last-factories.controller.ts | 4 ++-- .../last-factories/last-factories.directive.ts | 4 ++-- .../factory-item/factory-item.controller.ts | 4 ++-- .../factory-item/factory-item.directive.ts | 4 ++-- .../list-factories/list-factories.controller.ts | 4 ++-- .../load-factory/load-factory.controller.ts | 4 ++-- .../factories/load-factory/load-factory.service.ts | 4 ++-- dashboard/src/app/ide/ide-config.ts | 4 ++-- .../src/app/ide/ide-iframe/ide-iframe.controller.ts | 4 ++-- .../src/app/ide/ide-iframe/ide-iframe.directive.ts | 4 ++-- .../src/app/ide/ide-iframe/ide-iframe.service.ts | 4 ++-- dashboard/src/app/ide/ide.controller.ts | 4 ++-- dashboard/src/app/ide/ide.service.ts | 4 ++-- dashboard/src/app/index.module.ts | 4 ++-- dashboard/src/app/navbar/navbar-config.ts | 4 ++-- .../navbar-dropdown-menu.controller.ts | 4 ++-- .../navbar-dropdown-menu.directive.ts | 4 ++-- .../src/app/navbar/navbar-selected.controller.ts | 4 ++-- .../src/app/navbar/navbar-selected.directive.ts | 4 ++-- dashboard/src/app/navbar/navbar.controller.ts | 4 ++-- dashboard/src/app/navbar/navbar.directive.ts | 4 ++-- .../notification/navbar-notification.controller.ts | 4 ++-- .../notification/navbar-notification.directive.ts | 4 ++-- .../recent-workspaces.controller.spec.ts | 4 ++-- .../recent-workspaces.controller.ts | 4 ++-- .../recent-workspaces/recent-workspaces.directive.ts | 4 ++-- .../add-ssh-key-notification.controller.ts | 4 ++-- .../create-project-conf-file.directive.ts | 4 ++-- .../create-project/create-project.controller.ts | 4 ++-- .../create-project/create-project.service.ts | 4 ++-- .../git/create-project-git.controller.ts | 4 ++-- .../git/create-project-git.directive.ts | 4 ++-- .../github/create-project-github.controller.ts | 4 ++-- .../github/create-project-github.directive.ts | 4 ++-- .../no-github-oauth-dialog.controller.ts | 4 ++-- .../project-error-notification.controller.ts | 4 ++-- .../samples/create-project-samples-tag.filter.ts | 4 ++-- .../samples/create-project-samples.controller.ts | 4 ++-- .../samples/create-project-samples.directive.ts | 4 ++-- .../create-project-workspaces.controller.ts | 4 ++-- .../create-project-workspaces.directive.ts | 4 ++-- .../zip/create-project-zip.directive.ts | 4 ++-- .../project-item/project-item.controller.ts | 4 ++-- .../project-item/project-item.directive.ts | 4 ++-- .../project-details/project-details.controller.ts | 4 ++-- .../repository/project-repository-config.ts | 4 ++-- .../repository/project-repository-data.ts | 4 ++-- .../repository/project-repository.controller.ts | 4 ++-- .../repository/project-repository.directive.ts | 4 ++-- dashboard/src/app/projects/projects-config.ts | 4 ++-- .../import-stack/import-stack.controller.ts | 4 ++-- .../app/stacks/list-stacks/list-stacks.controller.ts | 4 ++-- .../list-stacks/stack-item/stack-item.controller.ts | 4 ++-- .../list-stacks/stack-item/stack-item.directive.ts | 4 ++-- .../app/stacks/stack-details/import-stack.service.ts | 4 ++-- .../edit-component-dialog.controller.ts | 4 ++-- .../list-components/list-components.controller.ts | 4 ++-- .../list-components/list-components.directive.ts | 4 ++-- .../select-template/select-template.controller.ts | 4 ++-- .../stacks/stack-details/stack-validation.service.ts | 4 ++-- .../src/app/stacks/stack-details/stack.controller.ts | 4 ++-- dashboard/src/app/stacks/stacks-config.ts | 4 ++-- .../create-workspace/create-workspace.controller.ts | 4 ++-- .../create-workspace/create-workspace.service.ts | 4 ++-- .../namespace-selector.controller.ts | 4 ++-- .../namespace-selector.directive.ts | 4 ++-- .../namespace-selector/namespace-selector.service.ts | 4 ++-- .../import-blank-project.controller.ts | 4 ++-- .../import-blank-project.directive.ts | 4 ++-- .../import-blank-project.service.ts | 4 ++-- .../import-git-project.controller.ts | 4 ++-- .../import-git-project.directive.ts | 4 ++-- .../import-git-project/import-git-project.service.ts | 4 ++-- .../github-repository-interface.ts | 4 ++-- .../github-repository-item.directive.ts | 4 ++-- .../import-github-project.controller.ts | 4 ++-- .../import-github-project.directive.ts | 4 ++-- .../import-github-project.service.ts | 4 ++-- .../no-github-oauth-dialog.controller.ts | 4 ++-- .../import-zip-project.controller.ts | 4 ++-- .../import-zip-project.directive.ts | 4 ++-- .../import-zip-project/import-zip-project.service.ts | 4 ++-- .../project-metadata/project-metadata.controller.ts | 4 ++-- .../project-metadata/project-metadata.directive.ts | 4 ++-- .../project-metadata/project-metadata.service.ts | 4 ++-- .../project-source-selector-action-type.enum.ts | 4 ++-- .../project-source-selector-editing-progress.ts | 4 ++-- .../project-source-selector-service-observable.ts | 4 ++-- .../project-source-selector-service.observer.ts | 4 ++-- .../project-source-selector.controller.ts | 4 ++-- .../project-source-selector.directive.ts | 4 ++-- .../project-source-selector.service.ts | 4 ++-- .../project-source-selector/project-source.enum.ts | 4 ++-- .../template-selector-item.directive.ts | 4 ++-- .../template-selector.controller.ts | 4 ++-- .../template-selector/template-selector.directive.ts | 4 ++-- .../template-selector/template-selector.service.ts | 4 ++-- .../ram-settings-machine-item.controller.ts | 4 ++-- .../ram-settings-machine-item.directive.ts | 4 ++-- .../ram-settings/ram-settings.controller.ts | 4 ++-- .../ram-settings/ram-settings.directive.ts | 4 ++-- .../che-stack-library-filter.controller.ts | 4 ++-- .../che-stack-library-filter.directive.ts | 4 ++-- .../stack-selector-item.directive.ts | 4 ++-- .../stack-selector/stack-selector-scope.enum.ts | 4 ++-- .../stack-selector/stack-selector-scope.filter.ts | 4 ++-- .../stack-selector/stack-selector-search.filter.ts | 4 ++-- .../stack-selector/stack-selector-tags.filter.ts | 4 ++-- .../stack-selector/stack-selector.controller.ts | 4 ++-- .../stack-selector/stack-selector.directive.ts | 4 ++-- .../stack-selector/stack-selector.service.ts | 4 ++-- .../list-workspaces/list-workspaces.controller.ts | 4 ++-- .../workspace-item/usage-chart.directive.ts | 4 ++-- .../workspace-item/workspace-item.controller.ts | 4 ++-- .../workspace-item/workspace-item.directive.ts | 4 ++-- .../workspace-status.controller.ts | 4 ++-- .../workspace-status.directive.ts | 4 ++-- .../src/app/workspaces/workspace-config.service.ts | 4 ++-- .../workspace-config-import.controller.ts | 4 ++-- .../workspace-config-import.directive.ts | 4 ++-- .../add-machine-dialog.controller.ts | 4 ++-- .../environments/environments.controller.ts | 4 ++-- .../environments/environments.directive.ts | 4 ++-- .../list-agents/list-agents.controller.ts | 4 ++-- .../list-agents/list-agents.directive.ts | 4 ++-- .../edit-variable-dialog.controller.ts | 4 ++-- .../list-env-variables.controller.ts | 4 ++-- .../list-env-variables.directive.ts | 4 ++-- .../edit-server-dialog.controller.ts | 4 ++-- .../list-servers/list-servers.controller.ts | 4 ++-- .../list-servers/list-servers.directive.ts | 4 ++-- .../delete-dev-machine-dialog.controller.ts | 4 ++-- .../dev-machine-label/dev-machine-label.directive.ts | 4 ++-- .../edit-machine-name-dialog.controller.ts | 4 ++-- .../machine-config/machine-config.controller.ts | 4 ++-- .../machine-config/machine-config.directive.ts | 4 ++-- .../dialog/export-workspace-dialog.controller.ts | 4 ++-- .../export-workspace/export-workspace.controller.ts | 4 ++-- .../export-workspace/export-workspace.directive.ts | 4 ++-- .../edit-command-dialog.controller.ts | 4 ++-- .../list-commands/list-commands.controller.ts | 4 ++-- .../list-commands/list-commands.directive.ts | 4 ++-- .../ready-to-go-stacks.controller.ts | 4 ++-- .../ready-to-go-stacks.directive.ts | 4 ++-- .../workspace-recipe-authoring.controller.ts | 4 ++-- .../workspace-recipe-authoring.directive.ts | 4 ++-- .../workspace-recipe-import.controller.ts | 4 ++-- .../workspace-recipe-import.directive.spec.ts | 4 ++-- .../workspace-recipe-import.directive.ts | 4 ++-- .../create-project-stack-library.controller.ts | 4 ++-- .../create-project-stack-library.directive.ts | 4 ++-- .../che-stack-library-selecter.directive.ts | 4 ++-- .../workspace-select-stack.controller.ts | 4 ++-- .../select-stack/workspace-select-stack.directive.ts | 4 ++-- .../workspace-details.controller.ts | 4 ++-- .../workspace-details/workspace-details.service.ts | 4 ++-- .../workspace-details-projects.controller.ts | 4 ++-- .../workspace-details-projects.directive.ts | 4 ++-- .../workspace-details-ssh.controller.ts | 4 ++-- .../workspace-ssh/workspace-details-ssh.directive.ts | 4 ++-- .../workspace-edit-mode-overlay.directive.ts | 4 ++-- .../workspace-edit-mode-toolbar-button.directive.ts | 4 ++-- ...che-workspace-ram-allocation-slider.controller.ts | 4 ++-- .../che-workspace-ram-allocation-slider.directive.ts | 4 ++-- .../workspace-status-indicator.directive.ts | 4 ++-- .../workspace-status/workspace-status.directive.ts | 4 ++-- dashboard/src/app/workspaces/workspaces-config.ts | 4 ++-- dashboard/src/assets/branding/che-logo-text.svg | 4 ++-- dashboard/src/assets/branding/che-logo.svg | 4 ++-- dashboard/src/assets/branding/loader.svg | 4 ++-- dashboard/src/assets/fonts/che.svg | 12 ++++++++++++ dashboard/src/assets/fonts/material-design.svg | 4 ++-- .../src/assets/images/bg-intermediate-screen.svg | 4 ++-- dashboard/src/assets/images/completed.svg | 4 ++-- dashboard/src/assets/images/expand.svg | 4 ++-- dashboard/src/assets/images/header-triangle.svg | 4 ++-- dashboard/src/assets/images/loader.svg | 4 ++-- dashboard/src/assets/images/next-step-separator.svg | 4 ++-- dashboard/src/assets/images/to-complete.svg | 4 ++-- dashboard/src/assets/svg/administration.svg | 4 ++-- dashboard/src/assets/svg/dashboard.svg | 4 ++-- dashboard/src/assets/svg/factory.svg | 4 ++-- dashboard/src/assets/svg/icon-wkps.svg | 4 ++-- dashboard/src/assets/svg/project.svg | 4 ++-- dashboard/src/assets/svg/rocket-icon.svg | 4 ++-- dashboard/src/assets/svg/stacks.svg | 4 ++-- dashboard/src/assets/svg/type-aspnet.svg | 4 ++-- dashboard/src/assets/svg/type-blank.svg | 4 ++-- dashboard/src/assets/svg/type-cpp.svg | 4 ++-- dashboard/src/assets/svg/type-go.svg | 4 ++-- dashboard/src/assets/svg/type-java.svg | 4 ++-- dashboard/src/assets/svg/type-javascript.svg | 4 ++-- dashboard/src/assets/svg/type-node.svg | 4 ++-- dashboard/src/assets/svg/type-php.svg | 4 ++-- dashboard/src/assets/svg/type-python.svg | 4 ++-- dashboard/src/assets/svg/type-ruby.svg | 4 ++-- dashboard/src/assets/svg/workspace.svg | 4 ++-- .../api/builder/che-api-builder.factory.ts | 4 ++-- .../components/api/builder/che-factory-builder.ts | 4 ++-- .../components/api/builder/che-profile-builder.ts | 4 ++-- .../api/builder/che-projectdetails-builder.ts | 4 ++-- .../api/builder/che-projectreference-builder.spec.ts | 4 ++-- .../api/builder/che-projectreference-builder.ts | 4 ++-- .../api/builder/che-projecttemplate-builder.ts | 4 ++-- .../che-projecttype-attribute-descriptor-builder.ts | 4 ++-- .../api/builder/che-projecttype-builder.ts | 4 ++-- .../src/components/api/builder/che-stack-builder.ts | 4 ++-- .../src/components/api/builder/che-user-builder.ts | 4 ++-- .../api/builder/che-workspace-builder.spec.ts | 4 ++-- .../components/api/builder/che-workspace-builder.ts | 4 ++-- dashboard/src/components/api/che-agent.factory.ts | 4 ++-- dashboard/src/components/api/che-api-config.ts | 4 ++-- dashboard/src/components/api/che-api.factory.ts | 4 ++-- .../components/api/che-factory-template.factory.ts | 4 ++-- dashboard/src/components/api/che-factory.factory.ts | 4 ++-- dashboard/src/components/api/che-factory.spec.ts | 4 ++-- dashboard/src/components/api/che-git.spec.ts | 4 ++-- dashboard/src/components/api/che-git.ts | 4 ++-- .../components/api/che-o-auth-provider.factory.ts | 4 ++-- .../src/components/api/che-preferences.factory.ts | 4 ++-- dashboard/src/components/api/che-preferences.spec.ts | 4 ++-- dashboard/src/components/api/che-profile.factory.ts | 4 ++-- dashboard/src/components/api/che-profile.spec.ts | 4 ++-- .../components/api/che-project-template.factory.ts | 4 ++-- .../src/components/api/che-project-template.spec.ts | 4 ++-- .../src/components/api/che-project-type.spec.ts | 4 ++-- dashboard/src/components/api/che-project-type.ts | 4 ++-- dashboard/src/components/api/che-project.spec.ts | 4 ++-- dashboard/src/components/api/che-project.ts | 4 ++-- .../components/api/che-recipe-template.factory.ts | 4 ++-- dashboard/src/components/api/che-recipe.factory.ts | 4 ++-- dashboard/src/components/api/che-service.factory.ts | 4 ++-- dashboard/src/components/api/che-ssh.factory.ts | 4 ++-- dashboard/src/components/api/che-stack.factory.ts | 4 ++-- dashboard/src/components/api/che-svn.spec.ts | 4 ++-- dashboard/src/components/api/che-svn.ts | 4 ++-- dashboard/src/components/api/che-user.factory.ts | 4 ++-- dashboard/src/components/api/che-user.spec.ts | 4 ++-- .../src/components/api/che-websocket.factory.ts | 4 ++-- dashboard/src/components/api/che-workspace-agent.ts | 4 ++-- .../src/components/api/che-workspace.factory.ts | 4 ++-- dashboard/src/components/api/che-workspace.spec.ts | 4 ++-- .../environment/che-environment-registry.factory.ts | 4 ++-- .../environment/compose-environment-manager.spec.ts | 4 ++-- .../api/environment/compose-environment-manager.ts | 4 ++-- .../src/components/api/environment/compose-parser.ts | 4 ++-- .../docker-file-environment-manager.spec.ts | 4 ++-- .../environment/docker-file-environment-manager.ts | 4 ++-- .../api/environment/docker-file-parser.spec.ts | 4 ++-- .../components/api/environment/docker-file-parser.ts | 4 ++-- .../docker-image-environment-manager.spec.ts | 4 ++-- .../environment/docker-image-environment-manager.ts | 4 ++-- .../api/environment/environment-manager-machine.ts | 4 ++-- .../api/environment/environment-manager.ts | 4 ++-- .../api/namespace/che-namespace-registry.factory.ts | 4 ++-- .../api/paging-resource/page-object-resource.ts | 4 ++-- .../api/paging-resource/page-object.factory.ts | 4 ++-- .../api/paging-resource/page-object.mock.ts | 4 ++-- .../api/paging-resource/page-object.spec.ts | 4 ++-- .../api/paging-resource/remote-page-labels.ts | 4 ++-- .../components/api/project/che-type-resolver.spec.ts | 4 ++-- .../src/components/api/project/che-type-resolver.ts | 4 ++-- .../src/components/api/remote/che-remote-login.ts | 4 ++-- .../src/components/api/remote/che-remote-project.ts | 4 ++-- .../src/components/api/remote/che-remote-recipe.ts | 4 ++-- .../components/api/remote/che-remote-workspace.ts | 4 ++-- .../src/components/api/remote/che-remote.factory.ts | 4 ++-- .../api/test/che-http-backend-provider.factory.ts | 4 ++-- .../components/api/test/che-http-backend.factory.ts | 4 ++-- .../src/components/api/test/che-http-backend.ts | 4 ++-- .../src/components/attribute/attribute-config.ts | 4 ++-- .../attribute/click/che-on-right-click.directive.ts | 4 ++-- .../attribute/focusable/che-focusable.directive.ts | 4 ++-- .../format-output/che-format-output.directive.ts | 4 ++-- .../attribute/input-type/input-city.directive.ts | 4 ++-- .../attribute/input-type/input-city.spec.ts | 4 ++-- .../attribute/input-type/input-number.directive.ts | 4 ++-- .../attribute/input-type/input-number.spec.ts | 4 ++-- .../attribute/input-type/input-type.directive.ts | 4 ++-- .../reload-href/che-reload-href.directive.ts | 4 ++-- .../scroll/che-automatic-scroll.directive.ts | 4 ++-- .../scroll/che-list-on-scroll-bottom.directive.ts | 4 ++-- .../attribute/touch/che-on-long-touch.directive.ts | 4 ++-- .../src/components/branding/che-branding-config.ts | 4 ++-- .../src/components/branding/che-branding.factory.ts | 4 ++-- dashboard/src/components/codemirror/codemirror.ts | 4 ++-- dashboard/src/components/components-config.ts | 4 ++-- .../error-messages/che-error-messages-config.ts | 4 ++-- .../error-messages/che-error-messages.directive.ts | 4 ++-- .../che-error-messages.service.spec.ts | 4 ++-- .../error-messages/che-error-messages.service.ts | 4 ++-- .../change-memory-unit.filter.spec.ts | 4 ++-- .../change-memory-unit/change-memory-unit.filter.ts | 4 ++-- dashboard/src/components/filter/filter-config.ts | 4 ++-- .../filter/number-round/number-round.filter.ts | 4 ++-- .../filter/number-round/number-round.spec.ts | 4 ++-- dashboard/src/components/github/github-service.ts | 4 ++-- .../components/ide-fetcher/che-ide-fetcher-config.ts | 4 ++-- .../ide-fetcher/che-ide-fetcher.service.ts | 4 ++-- .../injector/che-ui-elements-injector-config.ts | 4 ++-- .../injector/che-ui-elements-injector.service.ts | 4 ++-- .../application-notifications.factory.ts | 4 ++-- .../notification/che-notification-config.ts | 4 ++-- .../notification/che-notification.factory.ts | 4 ++-- .../src/components/routing/route-history.service.ts | 4 ++-- dashboard/src/components/routing/routing-config.ts | 4 ++-- .../components/routing/routing-redirect.factory.ts | 4 ++-- .../confirm-dialog/che-confirm-dialog.controller.ts | 4 ++-- .../service/confirm-dialog/confirm-dialog.service.ts | 4 ++-- dashboard/src/components/service/service-config.ts | 4 ++-- .../steps-container/steps-container.directive.ts | 4 ++-- dashboard/src/components/typings/che.d.ts | 5 ++--- dashboard/src/components/utils/observable.ts | 4 ++-- dashboard/src/components/utils/random.service.ts | 4 ++-- dashboard/src/components/utils/register.ts | 4 ++-- .../validator/city-name-validator.directive.ts | 4 ++-- .../components/validator/city-name-validator.spec.ts | 4 ++-- .../validator/custom-async-validator.directive.ts | 4 ++-- .../validator/custom-validator.directive.ts | 4 ++-- .../components/validator/custom-validator.spec.ts | 4 ++-- .../validator/git-url-validator.directive.ts | 4 ++-- .../components/validator/git-url-validator.spec.ts | 4 ++-- .../unique-project-name-validator.directive.ts | 4 ++-- .../validator/unique-project-name-validator.spec.ts | 4 ++-- .../unique-stack-name-validator.directive.ts | 4 ++-- .../validator/unique-stack-name-validator.spec.ts | 4 ++-- .../unique-workspace-name-validator.directive.ts | 4 ++-- .../unique-workspace-name-validator.spec.ts | 4 ++-- .../src/components/validator/validator-config.ts | 4 ++-- .../widget/accordion/che-accordion.directive.ts | 4 ++-- .../che-button-dropdown.controller.ts | 4 ++-- .../button-dropdown/che-button-dropdown.directive.ts | 4 ++-- .../button/che-button-cancel-flat.directive.ts | 4 ++-- .../widget/button/che-button-danger.directive.ts | 4 ++-- .../widget/button/che-button-default.directive.ts | 4 ++-- .../widget/button/che-button-notice.directive.ts | 4 ++-- .../button/che-button-primary-flat.directive.ts | 4 ++-- .../widget/button/che-button-primary.directive.ts | 4 ++-- .../widget/button/che-button-save-flat.directive.ts | 4 ++-- .../widget/button/che-button-warning.directive.ts | 4 ++-- .../components/widget/button/che-button.directive.ts | 4 ++-- .../widget/chips-list/chips-list.directive.ts | 4 ++-- .../widget/compile/che-compile.directive.ts | 4 ++-- .../widget/copy-clipboard/che-clipboard.directive.ts | 4 ++-- .../widget/description/che-description.directive.ts | 4 ++-- .../widget/dropzone/che-dropzone.controller.ts | 4 ++-- .../widget/dropzone/che-dropzone.directive.ts | 4 ++-- .../widget/editor/che-editor.controller.ts | 4 ++-- .../components/widget/editor/che-editor.directive.ts | 4 ++-- .../widget/empty-state/che-empty-state.directive.ts | 4 ++-- .../che-filter-selector.controller.ts | 4 ++-- .../filter-selector/che-filter-selector.directive.ts | 4 ++-- .../widget/footer/che-footer.controller.ts | 4 ++-- .../components/widget/footer/che-footer.directive.ts | 4 ++-- .../components/widget/frame/che-frame.directive.ts | 4 ++-- .../widget/html-source/che-html-source.directive.ts | 4 ++-- .../html-source/demo-source-render.directive.ts | 4 ++-- .../widget/input/che-input-box.directive.ts | 4 ++-- .../components/widget/input/che-input.directive.ts | 4 ++-- .../widget/input/che-number-spinner.directive.ts | 4 ++-- .../widget/input/che-textarea.directive.ts | 4 ++-- .../label-container/che-label-container.directive.ts | 4 ++-- .../components/widget/label/che-label.directive.ts | 4 ++-- .../learn-more/che-learn-more-item.directive.ts | 4 ++-- .../learn-more/che-learn-more-template.directive.ts | 4 ++-- .../widget/learn-more/che-learn-more.controller.ts | 4 ++-- .../widget/learn-more/che-learn-more.directive.ts | 4 ++-- .../src/components/widget/link/che-link.directive.ts | 4 ++-- .../widget/list/che-list-header-column.directive.ts | 4 ++-- .../widget/list/che-list-header.directive.ts | 4 ++-- .../widget/list/che-list-helper.factory.ts | 4 ++-- .../components/widget/list/che-list-helper.mock.ts | 4 ++-- .../components/widget/list/che-list-helper.spec.ts | 4 ++-- .../src/components/widget/list/che-list-helper.ts | 4 ++-- .../widget/list/che-list-item-checked.directive.ts | 4 ++-- .../widget/list/che-list-item.directive.ts | 4 ++-- .../widget/list/che-list-title.directive.ts | 4 ++-- .../src/components/widget/list/che-list.directive.ts | 4 ++-- .../widget/loader/che-loader-crane.directive.ts | 4 ++-- .../components/widget/loader/che-loader.directive.ts | 4 ++-- .../widget/logs-output/che-logs-output.directive.ts | 4 ++-- .../notification/che-error-notification.directive.ts | 4 ++-- .../notification/che-info-notification.directive.ts | 4 ++-- .../widget/paging-button/paging-button.directive.ts | 4 ++-- .../components/widget/panel/che-panel.controller.ts | 4 ++-- .../components/widget/panel/che-panel.directive.ts | 4 ++-- .../che-toggle-button-popover.directive.spec.ts | 5 ++--- .../popover/che-toggle-button-popover.directive.ts | 4 ++-- .../widget/popup/che-modal-popup.directive.ts | 4 ++-- .../components/widget/popup/che-popup.directive.ts | 4 ++-- .../components/widget/search/che-search.directive.ts | 4 ++-- .../widget/search/search-input.directive.ts | 4 ++-- .../components/widget/select/che-select.directive.ts | 4 ++-- .../widget/selecter/che-selecter.controller.ts | 4 ++-- .../widget/selecter/che-selecter.directive.ts | 4 ++-- .../widget/show-area/che-show-area.directive.ts | 4 ++-- .../components/widget/slider/che-slider.directive.ts | 4 ++-- .../widget/text-info/che-text-info.directive.ts | 4 ++-- .../toggle-button/che-toggle-button.directive.ts | 4 ++-- .../che-toggle-joined-button.directive.ts | 4 ++-- .../toggle-button/che-toggle-joined.directive.ts | 4 ++-- .../widget/toggle-button/che-toggle.controller.ts | 4 ++-- .../widget/toggle-button/che-toggle.directive.ts | 4 ++-- .../toggle-single-button.directive.spec.ts | 5 ++--- .../toggle-button/toggle-single-button.directive.ts | 4 ++-- .../widget/toolbar/che-toolbar.directive.ts | 4 ++-- dashboard/src/components/widget/widget-config.ts | 4 ++-- dashboard/src/webapp/WEB-INF/web.xml | 4 ++-- .../pom.xml | 4 ++-- .../java/org/eclipse/che/providers/ClassModel.java | 4 ++-- .../eclipse/che/providers/DynaProviderGenerator.java | 4 ++-- .../org/eclipse/che/providers/DynaProviderMojo.java | 4 ++-- ide/che-core-ide-api/pom.xml | 4 ++-- .../che/ide/api/ConnectionClosedInformer.java | 4 ++-- .../eclipse/che/ide/api/ProductInfoDataProvider.java | 4 ++-- .../che/ide/api/ProductInfoDataProviderImpl.java | 4 ++-- .../ide/api/action/AbstractPerspectiveAction.java | 4 ++-- .../java/org/eclipse/che/ide/api/action/Action.java | 4 ++-- .../org/eclipse/che/ide/api/action/ActionEvent.java | 4 ++-- .../org/eclipse/che/ide/api/action/ActionGroup.java | 4 ++-- .../eclipse/che/ide/api/action/ActionManager.java | 4 ++-- .../che/ide/api/action/ActionSelectedHandler.java | 4 ++-- .../che/ide/api/action/AppCloseActionEvent.java | 4 ++-- .../che/ide/api/action/CustomComponentAction.java | 4 ++-- .../che/ide/api/action/DefaultActionGroup.java | 4 ++-- .../org/eclipse/che/ide/api/action/IdeActions.java | 4 ++-- .../org/eclipse/che/ide/api/action/Presentation.java | 4 ++-- .../eclipse/che/ide/api/action/ProjectAction.java | 4 ++-- .../eclipse/che/ide/api/action/PromisableAction.java | 4 ++-- .../che/ide/api/action/PropertyChangeEvent.java | 4 ++-- .../che/ide/api/action/PropertyChangeListener.java | 4 ++-- .../org/eclipse/che/ide/api/action/Separator.java | 4 ++-- .../org/eclipse/che/ide/api/action/ToggleAction.java | 4 ++-- .../org/eclipse/che/ide/api/action/Toggleable.java | 4 ++-- .../java/org/eclipse/che/ide/api/app/AppContext.java | 4 ++-- .../org/eclipse/che/ide/api/app/CurrentUser.java | 4 ++-- .../org/eclipse/che/ide/api/app/StartUpAction.java | 4 ++-- .../eclipse/che/ide/api/auth/OAuthServiceClient.java | 4 ++-- .../che/ide/api/auth/OAuthServiceClientImpl.java | 4 ++-- .../ide/api/autocomplete/AutoCompleteResources.java | 4 ++-- .../eclipse/che/ide/api/command/BaseCommandGoal.java | 4 ++-- .../che/ide/api/command/CommandAddedEvent.java | 4 ++-- .../eclipse/che/ide/api/command/CommandExecutor.java | 4 ++-- .../org/eclipse/che/ide/api/command/CommandGoal.java | 4 ++-- .../che/ide/api/command/CommandGoalRegistry.java | 4 ++-- .../org/eclipse/che/ide/api/command/CommandImpl.java | 4 ++-- .../eclipse/che/ide/api/command/CommandManager.java | 4 ++-- .../org/eclipse/che/ide/api/command/CommandPage.java | 4 ++-- .../eclipse/che/ide/api/command/CommandProducer.java | 4 ++-- .../che/ide/api/command/CommandRemovedEvent.java | 4 ++-- .../org/eclipse/che/ide/api/command/CommandType.java | 4 ++-- .../che/ide/api/command/CommandTypeRegistry.java | 4 ++-- .../che/ide/api/command/CommandUpdatedEvent.java | 4 ++-- .../che/ide/api/command/CommandsLoadedEvent.java | 4 ++-- .../org/eclipse/che/ide/api/component/Component.java | 4 ++-- .../che/ide/api/component/StateComponent.java | 4 ++-- .../che/ide/api/component/WsAgentComponent.java | 4 ++-- .../org/eclipse/che/ide/api/constraints/Anchor.java | 4 ++-- .../eclipse/che/ide/api/constraints/Constraints.java | 4 ++-- .../eclipse/che/ide/api/constraints/Direction.java | 4 ++-- .../org/eclipse/che/ide/api/data/HasDataObject.java | 4 ++-- .../che/ide/api/data/tree/AbstractTreeNode.java | 4 ++-- .../org/eclipse/che/ide/api/data/tree/HasAction.java | 4 ++-- .../eclipse/che/ide/api/data/tree/HasAttributes.java | 4 ++-- .../eclipse/che/ide/api/data/tree/MutableNode.java | 4 ++-- .../java/org/eclipse/che/ide/api/data/tree/Node.java | 4 ++-- .../che/ide/api/data/tree/NodeInterceptor.java | 4 ++-- .../eclipse/che/ide/api/data/tree/TreeExpander.java | 4 ++-- .../che/ide/api/data/tree/settings/HasSettings.java | 4 ++-- .../che/ide/api/data/tree/settings/NodeSettings.java | 4 ++-- .../ide/api/data/tree/settings/SettingsProvider.java | 4 ++-- .../tree/settings/impl/DummySettingsProvider.java | 4 ++-- .../org/eclipse/che/ide/api/debug/Breakpoint.java | 4 ++-- .../eclipse/che/ide/api/debug/BreakpointManager.java | 4 ++-- .../ide/api/debug/BreakpointManagerObservable.java | 4 ++-- .../che/ide/api/debug/BreakpointManagerObserver.java | 4 ++-- .../che/ide/api/debug/BreakpointRenderer.java | 4 ++-- .../che/ide/api/debug/BreakpointRendererFactory.java | 4 ++-- .../eclipse/che/ide/api/debug/BreakpointStorage.java | 4 ++-- .../che/ide/api/debug/DebugConfiguration.java | 4 ++-- .../che/ide/api/debug/DebugConfigurationPage.java | 4 ++-- .../che/ide/api/debug/DebugConfigurationType.java | 4 ++-- .../ide/api/debug/DebugConfigurationsManager.java | 4 ++-- .../che/ide/api/debug/DebuggerServiceClient.java | 4 ++-- .../che/ide/api/debug/DebuggerServiceClientImpl.java | 4 ++-- .../che/ide/api/debug/HasBreakpointRenderer.java | 4 ++-- .../eclipse/che/ide/api/dialogs/CancelCallback.java | 4 ++-- .../eclipse/che/ide/api/dialogs/ChoiceDialog.java | 4 ++-- .../eclipse/che/ide/api/dialogs/ConfirmCallback.java | 4 ++-- .../eclipse/che/ide/api/dialogs/ConfirmDialog.java | 4 ++-- .../eclipse/che/ide/api/dialogs/DialogFactory.java | 4 ++-- .../eclipse/che/ide/api/dialogs/InputCallback.java | 4 ++-- .../org/eclipse/che/ide/api/dialogs/InputDialog.java | 4 ++-- .../eclipse/che/ide/api/dialogs/InputValidator.java | 4 ++-- .../eclipse/che/ide/api/dialogs/MessageDialog.java | 4 ++-- .../che/ide/api/editor/AbstractEditorPresenter.java | 4 ++-- .../che/ide/api/editor/AsyncEditorProvider.java | 4 ++-- .../org/eclipse/che/ide/api/editor/EditorAgent.java | 4 ++-- .../che/ide/api/editor/EditorInitException.java | 4 ++-- .../org/eclipse/che/ide/api/editor/EditorInput.java | 4 ++-- .../ide/api/editor/EditorLocalizationConstants.java | 4 ++-- .../che/ide/api/editor/EditorOpenedEvent.java | 4 ++-- .../che/ide/api/editor/EditorOpenedEventHandler.java | 4 ++-- .../che/ide/api/editor/EditorPartPresenter.java | 4 ++-- .../eclipse/che/ide/api/editor/EditorProvider.java | 4 ++-- .../eclipse/che/ide/api/editor/EditorRegistry.java | 4 ++-- .../che/ide/api/editor/EditorWithAutoSave.java | 4 ++-- .../eclipse/che/ide/api/editor/EditorWithErrors.java | 4 ++-- .../che/ide/api/editor/OpenEditorCallbackImpl.java | 4 ++-- .../ide/api/editor/annotation/AnnotationGroup.java | 4 ++-- .../api/editor/annotation/AnnotationGroupImpl.java | 4 ++-- .../ide/api/editor/annotation/AnnotationModel.java | 4 ++-- .../editor/annotation/AnnotationModelHandler.java | 4 ++-- .../api/editor/annotation/AnnotationModelImpl.java | 4 ++-- .../api/editor/annotation/AnnotationsIterator.java | 4 ++-- .../editor/annotation/ClearAnnotationModelEvent.java | 4 ++-- .../annotation/ClearAnnotationModelHandler.java | 4 ++-- .../editor/annotation/GutterAnnotationRenderer.java | 4 ++-- .../editor/annotation/HasAnnotationRendering.java | 4 ++-- .../editor/annotation/InlineAnnotationRenderer.java | 4 ++-- .../api/editor/annotation/ListTooltipFactory.java | 4 ++-- .../editor/annotation/MinimapAnnotationRenderer.java | 4 ++-- .../ide/api/editor/annotation/PositionHolder.java | 4 ++-- .../api/editor/annotation/QueryAnnotationsEvent.java | 4 ++-- .../editor/annotation/QueryAnnotationsHandler.java | 4 ++-- .../ide/api/editor/annotation/RegionIterator.java | 4 ++-- .../che/ide/api/editor/autosave/AutoSaveMode.java | 4 ++-- .../changeintercept/ChangeInterceptorProvider.java | 4 ++-- .../CloseCStyleCommentChangeInterceptor.java | 4 ++-- .../ide/api/editor/changeintercept/TextChange.java | 4 ++-- .../changeintercept/TextChangeInterceptor.java | 4 ++-- .../editor/codeassist/AdditionalInfoCallback.java | 4 ++-- .../api/editor/codeassist/CodeAssistCallback.java | 4 ++-- .../api/editor/codeassist/CodeAssistProcessor.java | 4 ++-- .../che/ide/api/editor/codeassist/CodeAssistant.java | 4 ++-- .../api/editor/codeassist/CodeAssistantFactory.java | 4 ++-- .../ide/api/editor/codeassist/CodeAssistantImpl.java | 4 ++-- .../che/ide/api/editor/codeassist/Completion.java | 4 ++-- .../api/editor/codeassist/CompletionProposal.java | 4 ++-- .../codeassist/CompletionProposalExtension.java | 4 ++-- .../editor/codeassist/CompletionReadyCallback.java | 4 ++-- .../ide/api/editor/codeassist/CompletionsSource.java | 4 ++-- .../DefaultChainedCodeAssistProcessor.java | 4 ++-- .../editor/codeassist/HasCompletionInformation.java | 4 ++-- .../defaulteditor/AbstractTextEditorProvider.java | 4 ++-- .../defaulteditor/DefaultTextEditorProvider.java | 4 ++-- .../ide/api/editor/defaulteditor/EditorBuilder.java | 4 ++-- .../ide/api/editor/document/AbstractDocument.java | 4 ++-- .../che/ide/api/editor/document/Document.java | 4 ++-- .../ide/api/editor/document/DocumentEventBus.java | 4 ++-- .../che/ide/api/editor/document/DocumentHandle.java | 4 ++-- .../che/ide/api/editor/document/DocumentStorage.java | 4 ++-- .../ide/api/editor/document/DocumentStorageImpl.java | 4 ++-- .../ide/api/editor/document/ReadOnlyDocument.java | 4 ++-- .../ide/api/editor/document/UseDocumentHandle.java | 4 ++-- .../AutoSaveTextEditorConfiguration.java | 4 ++-- .../editorconfig/DefaultTextEditorConfiguration.java | 4 ++-- .../api/editor/editorconfig/EditorUpdateAction.java | 4 ++-- .../editor/editorconfig/TextEditorConfiguration.java | 4 ++-- .../editor/events/BeforeSelectionChangeEvent.java | 4 ++-- .../editor/events/BeforeSelectionChangeHandler.java | 4 ++-- .../api/editor/events/CompletionRequestEvent.java | 4 ++-- .../api/editor/events/CompletionRequestHandler.java | 4 ++-- .../ide/api/editor/events/CursorActivityEvent.java | 4 ++-- .../ide/api/editor/events/CursorActivityHandler.java | 4 ++-- .../ide/api/editor/events/DocumentChangedEvent.java | 4 ++-- .../api/editor/events/DocumentChangedHandler.java | 4 ++-- .../ide/api/editor/events/DocumentChangingEvent.java | 4 ++-- .../api/editor/events/DocumentChangingHandler.java | 4 ++-- .../ide/api/editor/events/DocumentReadyEvent.java | 4 ++-- .../ide/api/editor/events/DocumentReadyHandler.java | 4 ++-- .../che/ide/api/editor/events/GutterClickEvent.java | 4 ++-- .../ide/api/editor/events/GutterClickHandler.java | 4 ++-- .../events/HasBeforeSelectionChangeHandlers.java | 4 ++-- .../api/editor/events/HasCursorActivityHandlers.java | 4 ++-- .../api/editor/events/HasDocumentReadyHandlers.java | 4 ++-- .../api/editor/events/HasGutterClickHandlers.java | 4 ++-- .../api/editor/events/HasViewPortChangeHandlers.java | 4 ++-- .../che/ide/api/editor/events/TextChangeEvent.java | 4 ++-- .../che/ide/api/editor/events/TextChangeHandler.java | 4 ++-- .../ide/api/editor/events/ViewPortChangeEvent.java | 4 ++-- .../ide/api/editor/events/ViewPortChangeHandler.java | 4 ++-- .../ide/api/editor/events/doc/DocReadyWrapper.java | 4 ++-- .../editor/filetype/ExtensionFileTypeIdentifier.java | 4 ++-- .../editor/filetype/FileNameFileTypeIdentifier.java | 4 ++-- .../ide/api/editor/filetype/FileTypeIdentifier.java | 4 ++-- .../editor/filetype/FirstLineFileTypeIdentifier.java | 4 ++-- .../filetype/MultipleMethodFileIdentifier.java | 4 ++-- .../ide/api/editor/formatter/ContentFormatter.java | 4 ++-- .../eclipse/che/ide/api/editor/gutter/Gutter.java | 4 ++-- .../eclipse/che/ide/api/editor/gutter/Gutters.java | 4 ++-- .../eclipse/che/ide/api/editor/gutter/HasGutter.java | 4 ++-- .../che/ide/api/editor/keymap/KeyBinding.java | 4 ++-- .../che/ide/api/editor/keymap/KeyBindingAction.java | 4 ++-- .../eclipse/che/ide/api/editor/keymap/Keymap.java | 4 ++-- .../che/ide/api/editor/keymap/KeymapChangeEvent.java | 4 ++-- .../ide/api/editor/keymap/KeymapChangeHandler.java | 4 ++-- .../che/ide/api/editor/link/HasLinkedMode.java | 4 ++-- .../eclipse/che/ide/api/editor/link/LinkedMode.java | 4 ++-- .../eclipse/che/ide/api/editor/link/LinkedModel.java | 4 ++-- .../che/ide/api/editor/link/LinkedModelData.java | 4 ++-- .../che/ide/api/editor/link/LinkedModelGroup.java | 4 ++-- .../che/ide/api/editor/minimap/HasMinimap.java | 4 ++-- .../eclipse/che/ide/api/editor/minimap/Minimap.java | 4 ++-- .../ide/api/editor/partition/CharacterScanner.java | 4 ++-- .../api/editor/partition/ConstantPartitioner.java | 4 ++-- .../ide/api/editor/partition/DefaultPartitioner.java | 4 ++-- .../api/editor/partition/DocumentPartitioner.java | 4 ++-- .../api/editor/partition/DocumentPositionMap.java | 4 ++-- .../editor/partition/DocumentPositionMapImpl.java | 4 ++-- .../ide/api/editor/partition/PartitionScanner.java | 4 ++-- .../ide/api/editor/partition/PartitionerFactory.java | 4 ++-- .../api/editor/partition/StringCharacterScanner.java | 4 ++-- .../che/ide/api/editor/partition/TokenScanner.java | 4 ++-- .../ide/api/editor/position/PositionConverter.java | 4 ++-- .../api/editor/quickfix/QuickAssistAssistant.java | 4 ++-- .../quickfix/QuickAssistInvocationContext.java | 4 ++-- .../api/editor/quickfix/QuickAssistProcessor.java | 4 ++-- .../api/editor/quickfix/QuickAssistantFactory.java | 4 ++-- .../ide/api/editor/reconciler/DefaultReconciler.java | 4 ++-- .../che/ide/api/editor/reconciler/Reconciler.java | 4 ++-- .../ide/api/editor/reconciler/ReconcilerFactory.java | 4 ++-- .../editor/reconciler/ReconcilerWithAutoSave.java | 4 ++-- .../api/editor/reconciler/ReconcilingStrategy.java | 4 ++-- .../che/ide/api/editor/signature/ParameterInfo.java | 4 ++-- .../che/ide/api/editor/signature/SignatureHelp.java | 4 ++-- .../api/editor/signature/SignatureHelpProvider.java | 4 ++-- .../che/ide/api/editor/signature/SignatureInfo.java | 4 ++-- .../ide/api/editor/text/BadLocationException.java | 4 ++-- .../editor/text/BadPositionCategoryException.java | 4 ++-- .../eclipse/che/ide/api/editor/text/LinearRange.java | 4 ++-- .../eclipse/che/ide/api/editor/text/Position.java | 4 ++-- .../org/eclipse/che/ide/api/editor/text/Region.java | 4 ++-- .../eclipse/che/ide/api/editor/text/RegionImpl.java | 4 ++-- .../che/ide/api/editor/text/TextPosition.java | 4 ++-- .../eclipse/che/ide/api/editor/text/TextRange.java | 4 ++-- .../eclipse/che/ide/api/editor/text/TypedRegion.java | 4 ++-- .../che/ide/api/editor/text/TypedRegionImpl.java | 4 ++-- .../ide/api/editor/text/annotation/Annotation.java | 4 ++-- .../che/ide/api/editor/texteditor/CanWrapLines.java | 4 ++-- .../editor/texteditor/ContentInitializedHandler.java | 4 ++-- .../che/ide/api/editor/texteditor/CursorModel.java | 4 ++-- .../editor/texteditor/CursorModelWithHandler.java | 4 ++-- .../ide/api/editor/texteditor/EditorResources.java | 4 ++-- .../che/ide/api/editor/texteditor/EditorWidget.java | 4 ++-- .../api/editor/texteditor/EditorWidgetFactory.java | 4 ++-- .../api/editor/texteditor/HandlesTextOperations.java | 4 ++-- .../ide/api/editor/texteditor/HandlesUndoRedo.java | 4 ++-- .../ide/api/editor/texteditor/HasKeyBindings.java | 4 ++-- .../api/editor/texteditor/HasNotificationPanel.java | 4 ++-- .../api/editor/texteditor/HasReadOnlyProperty.java | 4 ++-- .../ide/api/editor/texteditor/HasTextMarkers.java | 4 ++-- .../che/ide/api/editor/texteditor/LineStyler.java | 4 ++-- .../che/ide/api/editor/texteditor/TextEditor.java | 4 ++-- .../api/editor/texteditor/TextEditorOperations.java | 4 ++-- .../api/editor/texteditor/TextEditorPartView.java | 4 ++-- .../ide/api/editor/texteditor/UndoableEditor.java | 4 ++-- .../che/ide/api/event/ActivePartChangedEvent.java | 4 ++-- .../che/ide/api/event/ActivePartChangedHandler.java | 4 ++-- .../che/ide/api/event/ConfigureProjectEvent.java | 4 ++-- .../che/ide/api/event/ConfigureProjectHandler.java | 4 ++-- .../ide/api/event/EditorDirtyStateChangedEvent.java | 4 ++-- .../api/event/EditorDirtyStateChangedHandler.java | 4 ++-- .../ide/api/event/EditorSettingsChangedEvent.java | 4 ++-- .../che/ide/api/event/FileContentUpdateEvent.java | 4 ++-- .../che/ide/api/event/FileContentUpdateHandler.java | 4 ++-- .../org/eclipse/che/ide/api/event/FileEvent.java | 4 ++-- .../che/ide/api/event/HttpSessionDestroyedEvent.java | 4 ++-- .../ide/api/event/HttpSessionDestroyedHandler.java | 4 ++-- .../che/ide/api/event/ModuleCreatedEvent.java | 4 ++-- .../che/ide/api/event/SelectionChangedEvent.java | 4 ++-- .../che/ide/api/event/SelectionChangedHandler.java | 4 ++-- .../eclipse/che/ide/api/event/WindowActionEvent.java | 4 ++-- .../che/ide/api/event/WindowActionHandler.java | 4 ++-- .../ide/api/event/ng/ClientServerEventService.java | 4 ++-- .../api/event/ng/ClientServerEventServiceImpl.java | 4 ++-- .../che/ide/api/event/ng/DeletedFilesController.java | 4 ++-- .../ng/EditorFileStatusNotificationOperation.java | 4 ++-- .../ide/api/event/ng/FileOpenCloseEventListener.java | 4 ++-- .../che/ide/api/event/ng/FileTrackingEvent.java | 4 ++-- .../api/event/ng/FileWatcherExcludesOperation.java | 4 ++-- .../event/ng/JsonRpcWebSocketAgentEventListener.java | 4 ++-- .../ng/ProjectTreeStateNotificationOperation.java | 4 ++-- .../ide/api/event/project/CreateProjectEvent.java | 4 ++-- .../ide/api/event/project/CreateProjectHandler.java | 4 ++-- .../event/project/CurrentProjectChangedEvent.java | 4 ++-- .../event/project/CurrentProjectChangedHandler.java | 4 ++-- .../ide/api/event/project/DeleteProjectEvent.java | 4 ++-- .../ide/api/event/project/DeleteProjectHandler.java | 4 ++-- .../ide/api/event/project/ProjectUpdatedEvent.java | 4 ++-- .../che/ide/api/extension/DependencyDescription.java | 4 ++-- .../org/eclipse/che/ide/api/extension/Extension.java | 4 ++-- .../che/ide/api/extension/ExtensionDescription.java | 4 ++-- .../che/ide/api/extension/ExtensionGinModule.java | 4 ++-- .../che/ide/api/extension/ExtensionRegistry.java | 4 ++-- .../api/extension/ExtensionsInitializedEvent.java | 4 ++-- .../java/org/eclipse/che/ide/api/extension/SDK.java | 4 ++-- .../che/ide/api/factory/FactoryAcceptedEvent.java | 4 ++-- .../che/ide/api/factory/FactoryAcceptedHandler.java | 4 ++-- .../che/ide/api/factory/FactoryServiceClient.java | 4 ++-- .../org/eclipse/che/ide/api/filetypes/FileType.java | 4 ++-- .../che/ide/api/filetypes/FileTypeRegistry.java | 4 ++-- .../eclipse/che/ide/api/git/GitServiceClient.java | 4 ++-- .../che/ide/api/git/GitServiceClientImpl.java | 4 ++-- .../eclipse/che/ide/api/hotkeys/HasHotKeyItems.java | 4 ++-- .../org/eclipse/che/ide/api/hotkeys/HotKeyItem.java | 4 ++-- .../main/java/org/eclipse/che/ide/api/icon/Icon.java | 4 ++-- .../org/eclipse/che/ide/api/icon/IconRegistry.java | 4 ++-- .../che/ide/api/importer/AbstractImporter.java | 4 ++-- .../jsonrpc/WorkspaceMasterJsonRpcInitializer.java | 4 ++-- .../che/ide/api/keybinding/KeyBindingAgent.java | 4 ++-- .../eclipse/che/ide/api/keybinding/KeyBuilder.java | 4 ++-- .../org/eclipse/che/ide/api/keybinding/Scheme.java | 4 ++-- .../eclipse/che/ide/api/machine/ActiveRuntime.java | 4 ++-- .../che/ide/api/machine/CheWsAgentLinksModifier.java | 4 ++-- .../machine/CommandOutputMessageUnmarshaller.java | 4 ++-- .../org/eclipse/che/ide/api/machine/DevMachine.java | 4 ++-- .../che/ide/api/machine/ExecAgentCommandManager.java | 4 ++-- .../che/ide/api/machine/ExecAgentEventManager.java | 4 ++-- .../eclipse/che/ide/api/machine/MachineEntity.java | 4 ++-- .../che/ide/api/machine/MachineEntityImpl.java | 4 ++-- .../eclipse/che/ide/api/machine/MachineServer.java | 4 ++-- .../che/ide/api/machine/MachineServerProperties.java | 4 ++-- .../ide/api/machine/OutputMessageUnmarshaller.java | 4 ++-- .../che/ide/api/machine/RecipeServiceClient.java | 4 ++-- .../che/ide/api/machine/RecipeServiceClientImpl.java | 4 ++-- .../eclipse/che/ide/api/machine/WsAgentState.java | 4 ++-- .../che/ide/api/machine/WsAgentStateController.java | 4 ++-- .../che/ide/api/machine/WsAgentURLModifier.java | 4 ++-- .../machine/events/AbstractWsAgentStateHandler.java | 4 ++-- .../machine/events/ActivateProcessOutputEvent.java | 4 ++-- .../ide/api/machine/events/DevMachineStateEvent.java | 4 ++-- .../ide/api/machine/events/MachineStateEvent.java | 4 ++-- .../ide/api/machine/events/ProcessFinishedEvent.java | 4 ++-- .../ide/api/machine/events/ProcessStartedEvent.java | 4 ++-- .../ide/api/machine/events/WsAgentStateEvent.java | 4 ++-- .../ide/api/machine/events/WsAgentStateHandler.java | 4 ++-- .../execagent/AbstractExecAgentEventHandler.java | 4 ++-- .../api/machine/execagent/ConnectedEventHandler.java | 4 ++-- .../ide/api/machine/execagent/ExecAgentConsumer.java | 4 ++-- .../execagent/JsonRpcExecAgentCommandManager.java | 4 ++-- .../execagent/JsonRpcExecAgentEventManager.java | 4 ++-- .../machine/execagent/ProcessDiedEventHandler.java | 4 ++-- .../execagent/ProcessStartedEventHandler.java | 4 ++-- .../machine/execagent/ProcessStdErrEventHandler.java | 4 ++-- .../machine/execagent/ProcessStdOutEventHandler.java | 4 ++-- .../org/eclipse/che/ide/api/macro/BaseMacro.java | 4 ++-- .../java/org/eclipse/che/ide/api/macro/Macro.java | 4 ++-- .../eclipse/che/ide/api/macro/MacroProcessor.java | 4 ++-- .../org/eclipse/che/ide/api/macro/MacroRegistry.java | 4 ++-- .../java/org/eclipse/che/ide/api/mvp/Presenter.java | 4 ++-- .../main/java/org/eclipse/che/ide/api/mvp/View.java | 4 ++-- .../che/ide/api/notification/Notification.java | 4 ++-- .../ide/api/notification/NotificationListener.java | 4 ++-- .../ide/api/notification/NotificationManager.java | 4 ++-- .../ide/api/notification/NotificationObserver.java | 4 ++-- .../eclipse/che/ide/api/notification/ReadState.java | 4 ++-- .../che/ide/api/notification/StatusNotification.java | 4 ++-- .../api/notification/StatusNotificationListener.java | 4 ++-- .../che/ide/api/oauth/OAuth2Authenticator.java | 4 ++-- .../ide/api/oauth/OAuth2AuthenticatorRegistry.java | 4 ++-- .../api/oauth/OAuth2AuthenticatorUrlProvider.java | 4 ++-- .../che/ide/api/outputconsole/OutputConsole.java | 4 ++-- .../che/ide/api/parts/AbstractPartPresenter.java | 4 ++-- .../che/ide/api/parts/EditorMultiPartStack.java | 4 ++-- .../che/ide/api/parts/EditorMultiPartStackState.java | 4 ++-- .../eclipse/che/ide/api/parts/EditorPartStack.java | 4 ++-- .../org/eclipse/che/ide/api/parts/EditorTab.java | 4 ++-- .../org/eclipse/che/ide/api/parts/Focusable.java | 4 ++-- .../org/eclipse/che/ide/api/parts/PartPresenter.java | 4 ++-- .../org/eclipse/che/ide/api/parts/PartStack.java | 4 ++-- .../ide/api/parts/PartStackStateChangedEvent.java | 4 ++-- .../org/eclipse/che/ide/api/parts/PartStackType.java | 4 ++-- .../che/ide/api/parts/PartStackUIResources.java | 4 ++-- .../org/eclipse/che/ide/api/parts/PartStackView.java | 4 ++-- .../org/eclipse/che/ide/api/parts/Perspective.java | 4 ++-- .../che/ide/api/parts/PerspectiveManager.java | 4 ++-- .../eclipse/che/ide/api/parts/PerspectiveView.java | 4 ++-- .../eclipse/che/ide/api/parts/PropertyListener.java | 4 ++-- .../eclipse/che/ide/api/parts/WorkspaceAgent.java | 4 ++-- .../che/ide/api/parts/base/BaseActionDelegate.java | 4 ++-- .../che/ide/api/parts/base/BasePresenter.java | 4 ++-- .../org/eclipse/che/ide/api/parts/base/BaseView.java | 4 ++-- .../che/ide/api/parts/base/MaximizePartEvent.java | 4 ++-- .../eclipse/che/ide/api/parts/base/ToolButton.java | 4 ++-- .../eclipse/che/ide/api/parts/base/ToolButton.ui.xml | 4 ++-- .../preferences/AbstractPreferencePagePresenter.java | 4 ++-- .../ide/api/preferences/PreferencePagePresenter.java | 4 ++-- .../che/ide/api/preferences/PreferencesManager.java | 4 ++-- .../che/ide/api/project/MutableProjectConfig.java | 4 ++-- .../che/ide/api/project/NewProjectConfigImpl.java | 4 ++-- .../api/project/ProjectImportersServiceClient.java | 4 ++-- .../project/ProjectImportersServiceClientImpl.java | 4 ++-- .../che/ide/api/project/ProjectServiceClient.java | 4 ++-- .../ide/api/project/ProjectServiceClientImpl.java | 4 ++-- .../api/project/ProjectTemplateServiceClient.java | 4 ++-- .../project/ProjectTemplateServiceClientImpl.java | 4 ++-- .../ide/api/project/ProjectTypeServiceClient.java | 4 ++-- .../api/project/ProjectTypeServiceClientImpl.java | 4 ++-- .../eclipse/che/ide/api/project/QueryExpression.java | 4 ++-- .../api/project/type/ProjectTemplateRegistry.java | 4 ++-- .../ide/api/project/type/ProjectTypeRegistry.java | 4 ++-- .../type/wizard/PreSelectedProjectTypeManager.java | 4 ++-- .../api/project/type/wizard/ProjectWizardMode.java | 4 ++-- .../project/type/wizard/ProjectWizardRegistrar.java | 4 ++-- .../project/type/wizard/ProjectWizardRegistry.java | 4 ++-- .../ImportProjectNotificationSubscriberFactory.java | 4 ++-- .../api/project/wizard/ImportWizardRegistrar.java | 4 ++-- .../ide/api/project/wizard/ImportWizardRegistry.java | 4 ++-- .../wizard/ProjectNotificationSubscriber.java | 4 ++-- .../org/eclipse/che/ide/api/recent/RecentList.java | 4 ++-- .../eclipse/che/ide/api/reference/FqnProvider.java | 4 ++-- .../org/eclipse/che/ide/api/resources/Container.java | 4 ++-- .../che/ide/api/resources/ExternalResourceDelta.java | 4 ++-- .../java/org/eclipse/che/ide/api/resources/File.java | 4 ++-- .../org/eclipse/che/ide/api/resources/Folder.java | 4 ++-- .../che/ide/api/resources/ModificationTracker.java | 4 ++-- .../org/eclipse/che/ide/api/resources/Project.java | 4 ++-- .../che/ide/api/resources/RenamingSupport.java | 4 ++-- .../org/eclipse/che/ide/api/resources/Resource.java | 4 ++-- .../che/ide/api/resources/ResourceChangedEvent.java | 4 ++-- .../eclipse/che/ide/api/resources/ResourceDelta.java | 4 ++-- .../che/ide/api/resources/ResourceInterceptor.java | 4 ++-- .../ide/api/resources/ResourceNameComparator.java | 4 ++-- .../ide/api/resources/ResourcePathComparator.java | 4 ++-- .../eclipse/che/ide/api/resources/SyntheticFile.java | 4 ++-- .../eclipse/che/ide/api/resources/VirtualFile.java | 4 ++-- .../eclipse/che/ide/api/resources/marker/Marker.java | 4 ++-- .../ide/api/resources/marker/MarkerChangedEvent.java | 4 ++-- .../api/resources/marker/PresentableTextMarker.java | 4 ++-- .../api/resources/modification/ClipboardManager.java | 4 ++-- .../ide/api/resources/modification/CopyProvider.java | 4 ++-- .../ide/api/resources/modification/CutProvider.java | 4 ++-- .../resources/modification/CutResourceMarker.java | 4 ++-- .../api/resources/modification/PasteProvider.java | 4 ++-- .../org/eclipse/che/ide/api/selection/Selection.java | 4 ++-- .../che/ide/api/selection/SelectionAgent.java | 4 ++-- .../eclipse/che/ide/api/ssh/SshServiceClient.java | 4 ++-- .../che/ide/api/ssh/SshServiceClientImpl.java | 4 ++-- .../java/org/eclipse/che/ide/api/theme/Style.java | 4 ++-- .../java/org/eclipse/che/ide/api/theme/Theme.java | 4 ++-- .../org/eclipse/che/ide/api/theme/ThemeAgent.java | 4 ++-- .../che/ide/api/user/AskCredentialsDialog.java | 4 ++-- .../org/eclipse/che/ide/api/user/Credentials.java | 4 ++-- .../che/ide/api/user/PreferencesServiceClient.java | 4 ++-- .../che/ide/api/user/UserProfileServiceClient.java | 4 ++-- .../eclipse/che/ide/api/user/UserServiceClient.java | 4 ++-- .../eclipse/che/ide/api/wizard/AbstractWizard.java | 4 ++-- .../che/ide/api/wizard/AbstractWizardPage.java | 4 ++-- .../java/org/eclipse/che/ide/api/wizard/Wizard.java | 4 ++-- .../org/eclipse/che/ide/api/wizard/WizardPage.java | 4 ++-- .../EnvironmentOutputMessageUnmarshaller.java | 4 ++-- .../che/ide/api/workspace/WorkspaceReadyEvent.java | 4 ++-- .../ide/api/workspace/WorkspaceServiceClient.java | 4 ++-- .../api/workspace/event/EnvironmentOutputEvent.java | 4 ++-- .../workspace/event/MachineStatusChangedEvent.java | 4 ++-- .../api/workspace/event/WorkspaceStartedEvent.java | 4 ++-- .../api/workspace/event/WorkspaceStartingEvent.java | 4 ++-- .../workspace/event/WorkspaceStatusChangedEvent.java | 4 ++-- .../api/workspace/event/WorkspaceStoppedEvent.java | 4 ++-- .../resources/org/eclipse/che/api/auth/Auth.gwt.xml | 4 ++-- .../resources/org/eclipse/che/api/core/Core.gwt.xml | 4 ++-- .../org/eclipse/che/api/core/model/Model.gwt.xml | 4 ++-- .../org/eclipse/che/api/debug/Debug.gwt.xml | 4 ++-- .../org/eclipse/che/api/factory/Factory.gwt.xml | 4 ++-- .../resources/org/eclipse/che/api/git/Git.gwt.xml | 4 ++-- .../org/eclipse/che/api/machine/Machine.gwt.xml | 4 ++-- .../org/eclipse/che/api/project/Project.gwt.xml | 4 ++-- .../resources/org/eclipse/che/api/ssh/Ssh.gwt.xml | 4 ++-- .../org/eclipse/che/api/testing/Testing.gwt.xml | 4 ++-- .../resources/org/eclipse/che/api/user/User.gwt.xml | 4 ++-- .../org/eclipse/che/api/workspace/Workspace.gwt.xml | 4 ++-- .../main/resources/org/eclipse/che/ide/Api.gwt.xml | 4 ++-- .../ide/api/autocomplete/AutocompleteComponent.css | 4 ++-- .../eclipse/che/ide/api/editor/texteditor/Editor.css | 4 ++-- .../org/eclipse/che/ide/api/parts/arrow-bottom.svg | 4 ++-- .../org/eclipse/che/ide/api/parts/close-icon.svg | 4 ++-- .../che/ide/api/parts/collapse-expand-icon.svg | 4 ++-- .../org/eclipse/che/ide/api/parts/erase.svg | 4 ++-- .../org/eclipse/che/ide/api/parts/maximize-part.svg | 4 ++-- .../org/eclipse/che/ide/api/parts/partstack.css | 4 ++-- .../org/eclipse/che/ide/api/parts/wrap-text.svg | 4 ++-- .../eclipse/che/ide/api/projectimporter/importer.css | 4 ++-- .../resources/org/eclipse/che/ide/api/ui/style.css | 4 ++-- .../api/action/AbstractPerspectiveActionTest.java | 4 ++-- .../che/ide/api/action/DefaultActionGroupTest.java | 4 ++-- .../che/ide/api/editor/AnnotationIteratorTest.java | 4 ++-- .../CloseCStyleCommentChangeInterceptorTest.java | 4 ++-- .../org/eclipse/che/ide/api/macro/BaseMacroTest.java | 4 ++-- .../api/project/ProjectServiceClientImplTest.java | 4 ++-- .../che/ide/api/wizard/AbstractWizardPageTest.java | 4 ++-- .../che/ide/api/wizard/AbstractWizardTest.java | 4 ++-- ide/che-core-ide-app/pom.xml | 4 ++-- .../eclipse/che/ide/CoreLocalizationConstant.java | 4 ++-- .../src/main/java/org/eclipse/che/ide/Resources.java | 4 ++-- .../org/eclipse/che/ide/actions/ActionApiModule.java | 4 ++-- .../eclipse/che/ide/actions/ActionManagerImpl.java | 4 ++-- .../ide/actions/AddToFileWatcherExcludesAction.java | 4 ++-- .../che/ide/actions/CloseActiveEditorAction.java | 4 ++-- .../eclipse/che/ide/actions/CollapseAllAction.java | 4 ++-- .../org/eclipse/che/ide/actions/CompleteAction.java | 4 ++-- .../ide/actions/ConvertFolderToProjectAction.java | 4 ++-- .../eclipse/che/ide/actions/CreateProjectAction.java | 4 ++-- .../che/ide/actions/DeleteResourceAction.java | 4 ++-- .../che/ide/actions/DownloadProjectAction.java | 4 ++-- .../che/ide/actions/DownloadResourceAction.java | 4 ++-- .../eclipse/che/ide/actions/DownloadWsAction.java | 4 ++-- .../org/eclipse/che/ide/actions/EditFileAction.java | 4 ++-- .../org/eclipse/che/ide/actions/EditorActions.java | 4 ++-- .../eclipse/che/ide/actions/ExpandEditorAction.java | 4 ++-- .../org/eclipse/che/ide/actions/FormatterAction.java | 4 ++-- .../che/ide/actions/FullTextSearchAction.java | 4 ++-- .../org/eclipse/che/ide/actions/GoIntoAction.java | 4 ++-- .../eclipse/che/ide/actions/HotKeysListAction.java | 4 ++-- .../eclipse/che/ide/actions/ImportProjectAction.java | 4 ++-- .../che/ide/actions/LinkWithEditorAction.java | 4 ++-- .../che/ide/actions/NavigateToFileAction.java | 4 ++-- .../org/eclipse/che/ide/actions/OpenFileAction.java | 4 ++-- .../che/ide/actions/ProjectConfigurationAction.java | 4 ++-- .../java/org/eclipse/che/ide/actions/RedoAction.java | 4 ++-- .../eclipse/che/ide/actions/RefreshPathAction.java | 4 ++-- .../actions/RemoveFromFileWatcherExcludesAction.java | 4 ++-- .../eclipse/che/ide/actions/RenameItemAction.java | 4 ++-- .../eclipse/che/ide/actions/RunCommandAction.java | 4 ++-- .../java/org/eclipse/che/ide/actions/SaveAction.java | 4 ++-- .../org/eclipse/che/ide/actions/SaveAllAction.java | 4 ++-- .../che/ide/actions/ShowConsoleTreeAction.java | 4 ++-- .../che/ide/actions/ShowHiddenFilesAction.java | 4 ++-- .../che/ide/actions/ShowPreferencesAction.java | 4 ++-- .../eclipse/che/ide/actions/ShowReferenceAction.java | 4 ++-- .../eclipse/che/ide/actions/SignatureHelpAction.java | 4 ++-- .../org/eclipse/che/ide/actions/SoftWrapAction.java | 4 ++-- .../eclipse/che/ide/actions/StopWorkspaceAction.java | 4 ++-- .../java/org/eclipse/che/ide/actions/UndoAction.java | 4 ++-- .../eclipse/che/ide/actions/UploadFileAction.java | 4 ++-- .../eclipse/che/ide/actions/UploadFolderAction.java | 4 ++-- .../che/ide/actions/WorkspaceSnapshotNotifier.java | 4 ++-- .../che/ide/actions/common/CollapseTreeAction.java | 4 ++-- .../che/ide/actions/common/ExpandTreeAction.java | 4 ++-- .../che/ide/actions/common/MaximizePartAction.java | 4 ++-- .../che/ide/actions/common/MinimizePartAction.java | 4 ++-- .../che/ide/actions/common/RestorePartAction.java | 4 ++-- .../che/ide/actions/find/FindActionAction.java | 4 ++-- .../che/ide/actions/find/FindActionPresenter.java | 4 ++-- .../eclipse/che/ide/actions/find/FindActionView.java | 4 ++-- .../che/ide/actions/find/FindActionViewImpl.java | 4 ++-- .../che/ide/actions/find/FindActionViewImpl.ui.xml | 4 ++-- .../eclipse/che/ide/client/BootstrapController.java | 4 ++-- .../che/ide/client/ConnectionClosedInformerImpl.java | 4 ++-- .../org/eclipse/che/ide/client/DtoRegistrar.java | 4 ++-- .../eclipse/che/ide/client/ExtensionInitializer.java | 4 ++-- .../main/java/org/eclipse/che/ide/client/IDE.java | 4 ++-- .../org/eclipse/che/ide/client/IDEClientModule.java | 4 ++-- .../eclipse/che/ide/client/StartUpActionsParser.java | 4 ++-- .../che/ide/client/StartUpActionsProcessor.java | 4 ++-- .../org/eclipse/che/ide/client/StyleInjector.java | 4 ++-- .../che/ide/client/WorkspaceStateRestorer.java | 4 ++-- .../eclipse/che/ide/clipboard/ClipboardModule.java | 4 ++-- .../che/ide/clipboard/ZeroClipboardInjector.java | 4 ++-- .../eclipse/che/ide/command/CommandApiModule.java | 4 ++-- .../eclipse/che/ide/command/CommandResources.java | 4 ++-- .../org/eclipse/che/ide/command/CommandUtils.java | 4 ++-- .../che/ide/command/editor/CommandEditor.java | 4 ++-- .../ide/command/editor/CommandEditorProvider.java | 4 ++-- .../che/ide/command/editor/CommandEditorView.java | 4 ++-- .../ide/command/editor/CommandEditorViewImpl.java | 4 ++-- .../ide/command/editor/CommandEditorViewImpl.ui.xml | 4 ++-- .../che/ide/command/editor/EditorMessages.java | 4 ++-- .../editor/page/AbstractCommandEditorPage.java | 4 ++-- .../ide/command/editor/page/CommandEditorPage.java | 4 ++-- .../editor/page/commandline/CommandLinePage.java | 4 ++-- .../che/ide/command/editor/page/goal/GoalPage.java | 4 ++-- .../ide/command/editor/page/goal/GoalPageView.java | 4 ++-- .../command/editor/page/goal/GoalPageViewImpl.java | 4 ++-- .../command/editor/page/goal/GoalPageViewImpl.ui.xml | 4 ++-- .../che/ide/command/editor/page/name/NamePage.java | 4 ++-- .../ide/command/editor/page/name/NamePageView.java | 4 ++-- .../command/editor/page/name/NamePageViewImpl.java | 4 ++-- .../command/editor/page/name/NamePageViewImpl.ui.xml | 4 ++-- .../editor/page/previewurl/PreviewUrlPage.java | 4 ++-- .../command/editor/page/project/ProjectSwitcher.java | 4 ++-- .../editor/page/project/ProjectSwitcher.ui.xml | 4 ++-- .../command/editor/page/project/ProjectsPage.java | 4 ++-- .../editor/page/project/ProjectsPageView.java | 4 ++-- .../editor/page/project/ProjectsPageViewImpl.java | 4 ++-- .../editor/page/project/ProjectsPageViewImpl.ui.xml | 4 ++-- .../editor/page/text/AbstractPageWithTextEditor.java | 4 ++-- .../command/editor/page/text/EditorInputImpl.java | 4 ++-- .../editor/page/text/MacroCodeAssistProcessor.java | 4 ++-- .../editor/page/text/MacroCompletionProposal.java | 4 ++-- .../editor/page/text/MacroEditorConfiguration.java | 4 ++-- .../editor/page/text/PageWithTextEditorView.java | 4 ++-- .../editor/page/text/PageWithTextEditorViewImpl.java | 4 ++-- .../page/text/PageWithTextEditorViewImpl.ui.xml | 4 ++-- .../che/ide/command/execute/CommandExecutorImpl.java | 4 ++-- .../che/ide/command/execute/CommandsActionGroup.java | 4 ++-- .../che/ide/command/execute/ExecMessages.java | 4 ++-- .../ide/command/execute/ExecuteCommandAction.java | 4 ++-- .../command/execute/ExecuteCommandActionFactory.java | 4 ++-- .../command/execute/ExecuteCommandActionManager.java | 4 ++-- .../che/ide/command/execute/GoalPopUpGroup.java | 4 ++-- .../ide/command/execute/GoalPopUpGroupFactory.java | 4 ++-- .../command/explorer/CommandsExplorerPresenter.java | 4 ++-- .../ide/command/explorer/CommandsExplorerView.java | 4 ++-- .../command/explorer/CommandsExplorerViewImpl.java | 4 ++-- .../command/explorer/CommandsExplorerViewImpl.ui.xml | 4 ++-- .../ide/command/explorer/CommandsTreeRenderer.java | 4 ++-- .../che/ide/command/explorer/ExplorerMessages.java | 4 ++-- .../org/eclipse/che/ide/command/goal/BuildGoal.java | 4 ++-- .../ide/command/goal/CommandGoalRegistryImpl.java | 4 ++-- .../org/eclipse/che/ide/command/goal/CommonGoal.java | 4 ++-- .../org/eclipse/che/ide/command/goal/DebugGoal.java | 4 ++-- .../org/eclipse/che/ide/command/goal/DeployGoal.java | 4 ++-- .../eclipse/che/ide/command/goal/GoalMessages.java | 4 ++-- .../org/eclipse/che/ide/command/goal/RunGoal.java | 4 ++-- .../org/eclipse/che/ide/command/goal/TestGoal.java | 4 ++-- .../che/ide/command/manager/CommandManagerImpl.java | 4 ++-- .../ide/command/manager/CommandNameGenerator.java | 4 ++-- .../manager/ProjectCommandManagerDelegate.java | 4 ++-- .../manager/WorkspaceCommandManagerDelegate.java | 4 ++-- .../che/ide/command/node/AbstractCommandNode.java | 4 ++-- .../che/ide/command/node/CommandFileNode.java | 4 ++-- .../che/ide/command/node/CommandGoalNode.java | 4 ++-- .../che/ide/command/node/ExecutableCommandNode.java | 4 ++-- .../eclipse/che/ide/command/node/NodeFactory.java | 4 ++-- .../command/palette/CommandsPalettePresenter.java | 4 ++-- .../che/ide/command/palette/CommandsPaletteView.java | 4 ++-- .../ide/command/palette/CommandsPaletteViewImpl.java | 4 ++-- .../command/palette/CommandsPaletteViewImpl.ui.xml | 4 ++-- .../che/ide/command/palette/PaletteMessages.java | 4 ++-- .../command/palette/ShowCommandsPaletteAction.java | 4 ++-- .../ide/command/producer/CommandProducerAction.java | 4 ++-- .../producer/CommandProducerActionFactory.java | 4 ++-- .../producer/CommandProducerActionManager.java | 4 ++-- .../che/ide/command/producer/ProducerMessages.java | 4 ++-- .../ide/command/toolbar/CommandCreationGuide.java | 4 ++-- .../ide/command/toolbar/CommandToolbarPresenter.java | 4 ++-- .../che/ide/command/toolbar/CommandToolbarView.java | 4 ++-- .../ide/command/toolbar/CommandToolbarViewImpl.java | 4 ++-- .../command/toolbar/CommandToolbarViewImpl.ui.xml | 4 ++-- .../command/toolbar/OpenCommandsPaletteButton.java | 4 ++-- .../che/ide/command/toolbar/ToolbarButton.java | 4 ++-- .../ide/command/toolbar/ToolbarButtonsFactory.java | 4 ++-- .../che/ide/command/toolbar/ToolbarMessages.java | 4 ++-- .../toolbar/commands/ExecuteCommandPresenter.java | 4 ++-- .../command/toolbar/commands/ExecuteCommandView.java | 4 ++-- .../toolbar/commands/ExecuteCommandViewImpl.java | 4 ++-- .../toolbar/commands/button/AbstractMenuItem.java | 4 ++-- .../command/toolbar/commands/button/CommandItem.java | 4 ++-- .../commands/button/ExecuteCommandButton.java | 4 ++-- .../commands/button/ExecuteCommandButtonFactory.java | 4 ++-- .../button/ExecuteCommandButtonItemsProvider.java | 4 ++-- .../command/toolbar/commands/button/GuideItem.java | 4 ++-- .../command/toolbar/commands/button/MachineItem.java | 4 ++-- .../toolbar/commands/button/MenuItemsFactory.java | 4 ++-- .../che/ide/command/toolbar/previews/PreviewUrl.java | 4 ++-- .../toolbar/previews/PreviewUrlItemRenderer.java | 4 ++-- .../command/toolbar/previews/PreviewsPresenter.java | 4 ++-- .../ide/command/toolbar/previews/PreviewsView.java | 4 ++-- .../command/toolbar/previews/PreviewsViewImpl.java | 4 ++-- .../command/toolbar/processes/EmptyListWidget.java | 4 ++-- .../che/ide/command/toolbar/processes/Process.java | 4 ++-- .../ide/command/toolbar/processes/ProcessImpl.java | 4 ++-- .../toolbar/processes/ProcessItemRenderer.java | 4 ++-- .../toolbar/processes/ProcessOutputClosedEvent.java | 4 ++-- .../ide/command/toolbar/processes/ProcessWidget.java | 4 ++-- .../toolbar/processes/ProcessesListPresenter.java | 4 ++-- .../command/toolbar/processes/ProcessesListView.java | 4 ++-- .../toolbar/processes/ProcessesListViewImpl.java | 4 ++-- .../che/ide/command/type/CommandTypeMessages.java | 4 ++-- .../ide/command/type/CommandTypeRegistryImpl.java | 5 ++--- .../ide/command/type/chooser/CommandTypeChooser.java | 4 ++-- .../command/type/chooser/CommandTypeChooserView.java | 4 ++-- .../type/chooser/CommandTypeChooserViewImpl.java | 4 ++-- .../type/chooser/CommandTypeChooserViewImpl.ui.xml | 4 ++-- .../ide/command/type/custom/CustomCommandType.java | 4 ++-- .../ide/command/type/custom/CustomPagePresenter.java | 4 ++-- .../che/ide/command/type/custom/CustomPageView.java | 4 ++-- .../ide/command/type/custom/CustomPageViewImpl.java | 4 ++-- .../command/type/custom/CustomPageViewImpl.ui.xml | 4 ++-- .../che/ide/connection/WsConnectionListener.java | 4 ++-- .../che/ide/console/CommandConsoleFactory.java | 4 ++-- .../che/ide/console/CommandOutputConsole.java | 4 ++-- .../ide/console/CommandOutputConsolePresenter.java | 4 ++-- .../eclipse/che/ide/console/ConsoleGinModule.java | 4 ++-- .../che/ide/console/DefaultOutputConsole.java | 4 ++-- .../eclipse/che/ide/console/OutputConsoleView.java | 4 ++-- .../che/ide/console/OutputConsoleViewImpl.java | 4 ++-- .../che/ide/console/OutputConsoleViewImpl.ui.xml | 4 ++-- .../org/eclipse/che/ide/context/AppContextImpl.java | 4 ++-- .../org/eclipse/che/ide/context/BrowserAddress.java | 4 ++-- .../org/eclipse/che/ide/context/QueryParameters.java | 4 ++-- .../che/ide/core/ClientServerEventModule.java | 4 ++-- .../java/org/eclipse/che/ide/core/CoreGinModule.java | 4 ++-- .../eclipse/che/ide/core/FontAwesomeInjector.java | 4 ++-- .../java/org/eclipse/che/ide/core/JsonRpcModule.java | 4 ++-- .../org/eclipse/che/ide/core/StandardComponent.java | 4 ++-- .../che/ide/core/StandardComponentInitializer.java | 4 ++-- .../main/java/org/eclipse/che/ide/core/UiModule.java | 4 ++-- .../org/eclipse/che/ide/core/WebSocketModule.java | 4 ++-- .../eclipse/che/ide/debug/BreakpointManagerImpl.java | 4 ++-- .../che/ide/debug/BreakpointRendererImpl.java | 4 ++-- .../eclipse/che/ide/debug/BreakpointResources.java | 4 ++-- .../eclipse/che/ide/debug/BreakpointStorageImpl.java | 4 ++-- .../org/eclipse/che/ide/debug/DebugApiModule.java | 4 ++-- .../java/org/eclipse/che/ide/debug/Debugger.java | 4 ++-- .../eclipse/che/ide/debug/DebuggerDescriptor.java | 4 ++-- .../org/eclipse/che/ide/debug/DebuggerManager.java | 4 ++-- .../che/ide/debug/DebuggerManagerObservable.java | 4 ++-- .../che/ide/debug/DebuggerManagerObserver.java | 4 ++-- .../eclipse/che/ide/debug/DebuggerObservable.java | 4 ++-- .../org/eclipse/che/ide/debug/DebuggerObserver.java | 4 ++-- .../eclipse/che/ide/download/DownloadContainer.java | 4 ++-- .../org/eclipse/che/ide/editor/EditorAgentImpl.java | 4 ++-- .../org/eclipse/che/ide/editor/EditorApiModule.java | 4 ++-- .../org/eclipse/che/ide/editor/EditorInputImpl.java | 4 ++-- .../eclipse/che/ide/editor/EditorRegistryImpl.java | 4 ++-- .../org/eclipse/che/ide/editor/ResourceProvider.java | 4 ++-- .../che/ide/editor/autosave/AutoSaveModeImpl.java | 4 ++-- .../codeassist/AdditionalInformationWidget.java | 4 ++-- .../che/ide/editor/macro/AbstractEditorMacro.java | 4 ++-- .../editor/macro/EditorCurrentFileBaseNameMacro.java | 4 ++-- .../ide/editor/macro/EditorCurrentFileNameMacro.java | 4 ++-- .../ide/editor/macro/EditorCurrentFilePathMacro.java | 4 ++-- .../macro/EditorCurrentFileRelativePathMacro.java | 4 ++-- .../editor/macro/EditorCurrentProjectNameMacro.java | 4 ++-- .../editor/macro/EditorCurrentProjectTypeMacro.java | 4 ++-- .../preferences/EditorPrefLocalizationConstant.java | 4 ++-- .../preferences/EditorPreferencePresenter.java | 4 ++-- .../editor/preferences/EditorPreferenceSection.java | 4 ++-- .../ide/editor/preferences/EditorPreferenceView.java | 4 ++-- .../editor/preferences/EditorPreferenceViewImpl.java | 4 ++-- .../preferences/EditorPreferenceViewImpl.ui.xml | 4 ++-- .../editor/preferences/EditorPreferencesManager.java | 4 ++-- .../editor/preferences/EditorPreferencesModule.java | 4 ++-- .../editorproperties/EditorProperties.java | 4 ++-- .../editorproperties/EditorPropertiesManager.java | 4 ++-- .../editorproperties/EditorPropertiesPresenter.java | 4 ++-- .../editorproperties/EditorPropertiesView.java | 4 ++-- .../editorproperties/EditorPropertiesViewImpl.java | 4 ++-- .../editorproperties/EditorPropertiesViewImpl.ui.xml | 4 ++-- .../EditorPropertiesSectionPresenter.java | 4 ++-- .../EditorPropertiesSectionView.java | 4 ++-- .../EditorPropertiesSectionViewImpl.java | 4 ++-- .../EditorPropertiesSectionViewImpl.ui.xml | 4 ++-- .../property/EditorBooleanPropertyWidget.java | 4 ++-- .../property/EditorNumberPropertyWidget.java | 4 ++-- .../property/EditorPropertyBaseWidget.java | 4 ++-- .../property/EditorPropertyBaseWidget.ui.xml | 4 ++-- .../property/EditorPropertyWidget.java | 4 ++-- .../property/EditorPropertyWidgetFactory.java | 4 ++-- .../property/EditorStringPropertyWidget.java | 4 ++-- .../sections/EditPropertiesSection.java | 4 ++-- .../sections/EditorPreferenceSectionFactory.java | 4 ++-- .../sections/EditorPropertiesSection.java | 4 ++-- .../sections/LanguageToolsPropertiesSection.java | 4 ++-- .../sections/RulersPropertiesSection.java | 4 ++-- .../sections/TabsPropertiesSection.java | 4 ++-- .../sections/TypingPropertiesSection.java | 4 ++-- .../sections/WhiteSpacesPropertiesSection.java | 4 ++-- .../keymaps/KeyMapsPreferencePresenter.java | 4 ++-- .../preferences/keymaps/KeymapsPreferenceView.java | 4 ++-- .../keymaps/KeymapsPreferenceViewImpl.java | 4 ++-- .../keymaps/KeymapsPreferenceViewImpl.ui.xml | 4 ++-- .../editor/quickfix/QuickAssistAssistantImpl.java | 4 ++-- .../che/ide/editor/quickfix/QuickAssistWidget.java | 4 ++-- .../editor/quickfix/QuickAssistWidgetFactory.java | 4 ++-- .../synchronization/EditorContentSynchronizer.java | 4 ++-- .../EditorContentSynchronizerImpl.java | 4 ++-- .../synchronization/EditorGroupSynchronization.java | 4 ++-- .../EditorGroupSynchronizationImpl.java | 4 ++-- .../workingCopy/EditorWorkingCopySynchronizer.java | 4 ++-- .../EditorWorkingCopySynchronizerImpl.java | 4 ++-- .../editor/texteditor/TextEditorPartViewImpl.java | 4 ++-- .../editor/texteditor/TextEditorPartViewImpl.ui.xml | 4 ++-- .../ide/editor/texteditor/infopanel/InfoPanel.java | 4 ++-- .../ide/editor/texteditor/infopanel/InfoPanel.ui.xml | 4 ++-- .../eclipse/che/ide/factory/FactoryExtension.java | 4 ++-- .../eclipse/che/ide/factory/FactoryResources.java | 4 ++-- .../che/ide/factory/FactoryServiceClientImpl.java | 4 ++-- .../che/ide/factory/accept/AcceptFactoryHandler.java | 4 ++-- .../che/ide/factory/action/CreateFactoryAction.java | 4 ++-- .../factory/configure/CreateFactoryPresenter.java | 4 ++-- .../che/ide/factory/configure/CreateFactoryView.java | 4 ++-- .../ide/factory/configure/CreateFactoryViewImpl.java | 4 ++-- .../factory/configure/CreateFactoryViewImpl.ui.xml | 4 ++-- .../che/ide/factory/inject/FactoryGinModule.java | 4 ++-- .../che/ide/factory/json/ImportFromConfigAction.java | 4 ++-- .../ide/factory/json/ImportFromConfigPresenter.java | 4 ++-- .../che/ide/factory/json/ImportFromConfigView.java | 4 ++-- .../ide/factory/json/ImportFromConfigViewImpl.java | 4 ++-- .../ide/factory/json/ImportFromConfigViewImpl.ui.xml | 4 ++-- .../ide/factory/utils/FactoryProjectImporter.java | 4 ++-- .../ide/factory/utils/InitialProjectImporter.java | 4 ++-- .../ide/factory/welcome/GreetingPartPresenter.java | 4 ++-- .../che/ide/factory/welcome/GreetingPartView.java | 4 ++-- .../ide/factory/welcome/GreetingPartViewImpl.java | 4 ++-- .../ide/factory/welcome/OpenWelcomePageAction.java | 4 ++-- .../eclipse/che/ide/factory/welcome/TooltipHint.java | 4 ++-- .../che/ide/factory/welcome/TooltipHint.ui.xml | 4 ++-- .../ShowWelcomePreferencePagePresenter.java | 4 ++-- .../preferences/ShowWelcomePreferencePageView.java | 4 ++-- .../ShowWelcomePreferencePageViewImpl.java | 4 ++-- .../ShowWelcomePreferencePageViewImpl.ui.xml | 4 ++-- .../eclipse/che/ide/filetypes/FileTypeApiModule.java | 4 ++-- .../che/ide/filetypes/FileTypeRegistryImpl.java | 4 ++-- .../org/eclipse/che/ide/hotkeys/HotKeyResources.java | 4 ++-- .../ide/hotkeys/dialog/HotKeysDialogPresenter.java | 4 ++-- .../che/ide/hotkeys/dialog/HotKeysDialogView.java | 4 ++-- .../ide/hotkeys/dialog/HotKeysDialogViewImpl.java | 4 ++-- .../ide/hotkeys/dialog/HotKeysDialogViewImpl.ui.xml | 4 ++-- .../eclipse/che/ide/icon/DefaultIconsComponent.java | 4 ++-- .../org/eclipse/che/ide/icon/IconRegistryImpl.java | 4 ++-- .../org/eclipse/che/ide/imageviewer/ImageViewer.java | 4 ++-- .../che/ide/imageviewer/ImageViewerProvider.java | 4 ++-- .../che/ide/imageviewer/ImageViewerResources.java | 4 ++-- .../che/ide/imageviewer/PreviewImageAction.java | 4 ++-- .../che/ide/keybinding/KeyBindingManager.java | 4 ++-- .../org/eclipse/che/ide/keybinding/SchemeImpl.java | 4 ++-- .../eclipse/che/ide/machine/MachineApiModule.java | 4 ++-- .../org/eclipse/che/ide/machine/MachineItem.java | 4 ++-- .../eclipse/che/ide/machine/MachineResources.java | 4 ++-- .../che/ide/machine/MachineStatusHandler.java | 4 ++-- .../machine/RecipeScriptDownloadServiceClient.java | 4 ++-- .../RecipeScriptDownloadServiceClientImpl.java | 4 ++-- .../che/ide/machine/chooser/MachineChooser.java | 4 ++-- .../che/ide/machine/chooser/MachineChooserView.java | 4 ++-- .../ide/machine/chooser/MachineChooserViewImpl.java | 4 ++-- .../machine/chooser/MachineChooserViewImpl.ui.xml | 4 ++-- .../eclipse/che/ide/macro/AbstractServerMacro.java | 4 ++-- .../che/ide/macro/CurrentProjectPathMacro.java | 4 ++-- .../ide/macro/CurrentProjectRelativePathMacro.java | 4 ++-- .../che/ide/macro/DevMachineHostNameMacro.java | 4 ++-- .../org/eclipse/che/ide/macro/MacroApiModule.java | 4 ++-- .../eclipse/che/ide/macro/MacroProcessorImpl.java | 4 ++-- .../org/eclipse/che/ide/macro/MacroRegistryImpl.java | 4 ++-- .../che/ide/macro/ServerAddressMacroRegistrar.java | 4 ++-- .../eclipse/che/ide/macro/ServerHostNameMacro.java | 4 ++-- .../java/org/eclipse/che/ide/macro/ServerMacro.java | 4 ++-- .../org/eclipse/che/ide/macro/ServerPortMacro.java | 4 ++-- .../eclipse/che/ide/macro/ServerProtocolMacro.java | 4 ++-- .../eclipse/che/ide/macro/chooser/MacroChooser.java | 4 ++-- .../che/ide/macro/chooser/MacroChooserView.java | 4 ++-- .../che/ide/macro/chooser/MacroChooserViewImpl.java | 4 ++-- .../ide/macro/chooser/MacroChooserViewImpl.ui.xml | 4 ++-- .../java/org/eclipse/che/ide/menu/ContextMenu.java | 4 ++-- .../org/eclipse/che/ide/menu/MainMenuPresenter.java | 4 ++-- .../java/org/eclipse/che/ide/menu/MainMenuView.java | 4 ++-- .../org/eclipse/che/ide/menu/MainMenuViewImpl.java | 4 ++-- .../java/org/eclipse/che/ide/menu/MenuBarItem.java | 4 ++-- .../java/org/eclipse/che/ide/menu/MenuResources.java | 4 ++-- .../main/java/org/eclipse/che/ide/menu/PartMenu.java | 4 ++-- .../che/ide/menu/StatusPanelGroupPresenter.java | 4 ++-- .../eclipse/che/ide/menu/StatusPanelGroupView.java | 4 ++-- .../che/ide/menu/StatusPanelGroupViewImpl.java | 4 ++-- .../che/ide/navigation/NavigateToFilePresenter.java | 4 ++-- .../che/ide/navigation/NavigateToFileView.java | 4 ++-- .../che/ide/navigation/NavigateToFileViewImpl.java | 4 ++-- .../che/ide/navigation/NavigateToFileViewImpl.ui.xml | 4 ++-- .../ide/newresource/AbstractNewResourceAction.java | 4 ++-- .../eclipse/che/ide/newresource/NewFileAction.java | 4 ++-- .../eclipse/che/ide/newresource/NewFolderAction.java | 4 ++-- .../che/ide/notification/NotificationApiModule.java | 4 ++-- .../che/ide/notification/NotificationContainer.java | 4 ++-- .../ide/notification/NotificationContainerItem.java | 4 ++-- .../ide/notification/NotificationManagerImpl.java | 4 ++-- .../ide/notification/NotificationManagerView.java | 4 ++-- .../notification/NotificationManagerViewImpl.java | 4 ++-- .../notification/NotificationManagerViewImpl.ui.xml | 4 ++-- .../che/ide/notification/NotificationPopup.java | 4 ++-- .../che/ide/notification/NotificationPopupStack.java | 4 ++-- .../che/ide/notification/NotificationResources.java | 4 ++-- .../che/ide/oauth/DefaultOAuthAuthenticatorImpl.java | 4 ++-- .../ide/oauth/OAuth2AuthenticatorRegistryImpl.java | 4 ++-- .../org/eclipse/che/ide/oauth/OAuthApiModule.java | 4 ++-- .../java/org/eclipse/che/ide/part/FocusManager.java | 4 ++-- .../java/org/eclipse/che/ide/part/PartApiModule.java | 4 ++-- .../org/eclipse/che/ide/part/PartStackPresenter.java | 4 ++-- .../org/eclipse/che/ide/part/PartStackViewImpl.java | 4 ++-- .../org/eclipse/che/ide/part/PartsComparator.java | 4 ++-- .../che/ide/part/editor/EditorPartStackFactory.java | 4 ++-- .../ide/part/editor/EditorPartStackPresenter.java | 4 ++-- .../che/ide/part/editor/EditorPartStackView.java | 4 ++-- .../che/ide/part/editor/EditorPartStackView.ui.xml | 4 ++-- .../che/ide/part/editor/EditorTabContextMenu.java | 4 ++-- .../ide/part/editor/EditorTabContextMenuFactory.java | 4 ++-- .../che/ide/part/editor/EmptyEditorsPanel.java | 4 ++-- .../che/ide/part/editor/EmptyEditorsPanel.ui.xml | 4 ++-- .../che/ide/part/editor/TabItemWithMarks.java | 4 ++-- .../che/ide/part/editor/actions/CloseAction.java | 4 ++-- .../che/ide/part/editor/actions/CloseAllAction.java | 4 ++-- .../editor/actions/CloseAllExceptPinnedAction.java | 4 ++-- .../part/editor/actions/CloseAllTabsPaneAction.java | 4 ++-- .../ide/part/editor/actions/CloseOtherAction.java | 4 ++-- .../che/ide/part/editor/actions/ClosePaneAction.java | 4 ++-- .../part/editor/actions/EditorAbstractAction.java | 4 ++-- .../ide/part/editor/actions/EditorSwitchAction.java | 4 ++-- .../ide/part/editor/actions/PinEditorTabAction.java | 4 ++-- .../part/editor/actions/ReopenClosedFileAction.java | 4 ++-- .../part/editor/actions/SplitHorizontallyAction.java | 4 ++-- .../part/editor/actions/SplitVerticallyAction.java | 4 ++-- .../part/editor/actions/SwitchNextEditorAction.java | 4 ++-- .../editor/actions/SwitchPreviousEditorAction.java | 4 ++-- .../editor/event/CloseNonPinnedEditorsEvent.java | 4 ++-- .../multipart/EditorMultiPartStackPresenter.java | 4 ++-- .../editor/multipart/EditorMultiPartStackView.java | 4 ++-- .../multipart/EditorMultiPartStackViewImpl.java | 4 ++-- .../part/editor/multipart/SplitEditorPartView.java | 4 ++-- .../editor/multipart/SplitEditorPartViewFactory.java | 4 ++-- .../editor/multipart/SplitEditorPartViewImpl.java | 4 ++-- .../part/editor/recent/ClearRecentListAction.java | 4 ++-- .../part/editor/recent/OpenRecentFileViewImpl.java | 4 ++-- .../part/editor/recent/OpenRecentFileViewImpl.ui.xml | 4 ++-- .../part/editor/recent/OpenRecentFilesAction.java | 4 ++-- .../part/editor/recent/OpenRecentFilesPresenter.java | 4 ++-- .../ide/part/editor/recent/OpenRecentFilesView.java | 4 ++-- .../che/ide/part/editor/recent/RecentFileAction.java | 4 ++-- .../part/editor/recent/RecentFileActionFactory.java | 4 ++-- .../che/ide/part/editor/recent/RecentFileList.java | 4 ++-- .../che/ide/part/editor/recent/RecentFileStore.java | 4 ++-- .../explorer/project/DefaultNodeInterceptor.java | 4 ++-- .../ide/part/explorer/project/EmptyTreePanel.java | 4 ++-- .../part/explorer/project/NodeTypeComparator.java | 4 ++-- .../explorer/project/ProjectExplorerPresenter.java | 4 ++-- .../project/ProjectExplorerStateComponent.java | 4 ++-- .../project/ProjectExplorerTreeExpander.java | 4 ++-- .../part/explorer/project/ProjectExplorerView.java | 4 ++-- .../explorer/project/ProjectExplorerViewImpl.java | 4 ++-- .../explorer/project/ProjectProblemDialog.ui.xml | 4 ++-- .../part/explorer/project/TreeResourceRevealer.java | 4 ++-- .../macro/ExplorerCurrentFileBaseNameMacro.java | 4 ++-- .../project/macro/ExplorerCurrentFileNameMacro.java | 4 ++-- .../macro/ExplorerCurrentFileParentPathMacro.java | 4 ++-- .../project/macro/ExplorerCurrentFilePathMacro.java | 4 ++-- .../macro/ExplorerCurrentFileRelativePathMacro.java | 4 ++-- .../macro/ExplorerCurrentProjectNameMacro.java | 4 ++-- .../macro/ExplorerCurrentProjectTypeMacro.java | 4 ++-- .../project/synchronize/ChangeLocationWidget.java | 4 ++-- .../synchronize/ProjectConfigSynchronized.java | 4 ++-- .../eclipse/che/ide/part/widgets/TabItemFactory.java | 4 ++-- .../ide/part/widgets/editortab/EditorTabWidget.java | 4 ++-- .../part/widgets/editortab/EditorTabWidget.ui.xml | 4 ++-- .../ide/part/widgets/panemenu/EditorPaneMenu.java | 4 ++-- .../part/widgets/panemenu/EditorPaneMenuItem.java | 4 ++-- .../widgets/panemenu/EditorPaneMenuItemFactory.java | 4 ++-- .../part/widgets/panemenu/EditorPaneMenuWidget.java | 4 ++-- .../widgets/panemenu/EditorPaneMenuWidget.ui.xml | 4 ++-- .../widgets/panemenu/PaneMenuActionItemWidget.java | 4 ++-- .../widgets/panemenu/PaneMenuActionItemWidget.ui.xml | 4 ++-- .../part/widgets/panemenu/PaneMenuTabItemWidget.java | 4 ++-- .../widgets/panemenu/PaneMenuTabItemWidget.ui.xml | 4 ++-- .../che/ide/part/widgets/partbutton/PartButton.java | 4 ++-- .../part/widgets/partbutton/PartButtonWidget.java | 4 ++-- .../part/widgets/partbutton/PartButtonWidget.ui.xml | 4 ++-- .../che/ide/preferences/PreferencesApiModule.java | 4 ++-- .../che/ide/preferences/PreferencesComponent.java | 4 ++-- .../che/ide/preferences/PreferencesManagerImpl.java | 4 ++-- .../che/ide/preferences/PreferencesPresenter.java | 4 ++-- .../preferences/PreferencesServiceClientImpl.java | 4 ++-- .../eclipse/che/ide/preferences/PreferencesView.java | 4 ++-- .../che/ide/preferences/PreferencesViewImpl.java | 4 ++-- .../che/ide/preferences/PreferencesViewImpl.ui.xml | 4 ++-- .../eclipse/che/ide/preferences/StyleInjector.java | 4 ++-- .../pages/appearance/AppearancePresenter.java | 4 ++-- .../preferences/pages/appearance/AppearanceView.java | 4 ++-- .../pages/appearance/AppearanceViewImpl.java | 4 ++-- .../pages/appearance/AppearanceViewImpl.ui.xml | 4 ++-- .../pages/extensions/ExtensionManagerPresenter.java | 4 ++-- .../pages/extensions/ExtensionManagerView.java | 4 ++-- .../pages/extensions/ExtensionManagerViewImpl.java | 4 ++-- .../pages/extensions/ExtensionManagerViewImpl.ui.xml | 4 ++-- .../che/ide/processes/CommandNodeRenderStrategy.java | 4 ++-- .../che/ide/processes/HasPreviewSshClickHandler.java | 4 ++-- .../che/ide/processes/HasStopProcessHandler.java | 4 ++-- .../che/ide/processes/MachineNodeRenderStrategy.java | 4 ++-- .../eclipse/che/ide/processes/NewTerminalAction.java | 4 ++-- .../che/ide/processes/PreviewSshClickHandler.java | 4 ++-- .../che/ide/processes/ProcessDataAdapter.java | 4 ++-- .../eclipse/che/ide/processes/ProcessTreeNode.java | 4 ++-- .../ide/processes/ProcessTreeNodeRenderStrategy.java | 4 ++-- .../ide/processes/ProcessTreeNodeSelectedEvent.java | 4 ++-- .../che/ide/processes/ProcessTreeRenderer.java | 4 ++-- .../che/ide/processes/ProcessesGinModule.java | 4 ++-- .../che/ide/processes/StopProcessHandler.java | 4 ++-- .../ide/processes/TerminalNodeRenderStrategy.java | 4 ++-- .../ide/processes/actions/CloseConsoleAction.java | 4 ++-- .../processes/actions/ConsoleTreeContextMenu.java | 4 ++-- .../actions/ConsoleTreeContextMenuFactory.java | 4 ++-- .../ide/processes/actions/ReRunProcessAction.java | 4 ++-- .../che/ide/processes/actions/StopProcessAction.java | 4 ++-- .../ide/processes/monitoring/MachineMonitors.java | 4 ++-- .../che/ide/processes/monitoring/MonitorWidget.java | 4 ++-- .../ide/processes/monitoring/MonitorWidget.ui.xml | 4 ++-- .../ide/processes/panel/ProcessesPanelPresenter.java | 4 ++-- .../che/ide/processes/panel/ProcessesPanelView.java | 4 ++-- .../ide/processes/panel/ProcessesPanelViewImpl.java | 4 ++-- .../processes/panel/ProcessesPanelViewImpl.ui.xml | 4 ++-- .../eclipse/che/ide/project/ProjectApiModule.java | 4 ++-- .../che/ide/project/ResolvingProjectStateHolder.java | 4 ++-- .../project/ResolvingProjectStateHolderRegistry.java | 4 ++-- .../ResolvingProjectStateHolderRegistryImpl.java | 4 ++-- .../eclipse/che/ide/project/node/SyntheticNode.java | 4 ++-- .../ide/project/node/SyntheticNodeUpdateEvent.java | 4 ++-- .../project/node/icon/DockerfileIconProvider.java | 4 ++-- .../che/ide/project/node/icon/FileIconProvider.java | 4 ++-- .../che/ide/project/node/icon/NodeIconProvider.java | 4 ++-- .../che/ide/project/shared/NodesResources.java | 4 ++-- .../che/ide/projectimport/ProjectImportModule.java | 4 ++-- .../ProjectImportNotificationSubscriber.java | 4 ++-- .../ide/projectimport/ProjectImporterResource.java | 4 ++-- .../che/ide/projectimport/wizard/ImportWizard.java | 4 ++-- .../projectimport/wizard/ImportWizardFactory.java | 4 ++-- .../wizard/ImportWizardRegistryImpl.java | 4 ++-- .../wizard/ProjectImportOutputJsonRpcNotifier.java | 4 ++-- .../ide/projectimport/wizard/ProjectImporter.java | 4 ++-- .../wizard/ProjectNotificationSubscriberImpl.java | 4 ++-- .../ide/projectimport/wizard/ProjectResolver.java | 4 ++-- .../wizard/mainpage/MainPagePresenter.java | 4 ++-- .../projectimport/wizard/mainpage/MainPageView.java | 4 ++-- .../wizard/mainpage/MainPageViewImpl.java | 4 ++-- .../wizard/mainpage/MainPageViewImpl.ui.xml | 4 ++-- .../presenter/ImportProjectWizardPresenter.java | 4 ++-- .../wizard/presenter/ImportProjectWizardView.java | 4 ++-- .../presenter/ImportProjectWizardViewImpl.java | 4 ++-- .../presenter/ImportProjectWizardViewImpl.ui.xml | 4 ++-- .../projectimport/zip/ZipImportWizardRegistrar.java | 4 ++-- .../projectimport/zip/ZipImporterPagePresenter.java | 4 ++-- .../ide/projectimport/zip/ZipImporterPageView.java | 4 ++-- .../projectimport/zip/ZipImporterPageViewImpl.java | 4 ++-- .../projectimport/zip/ZipImporterPageViewImpl.ui.xml | 4 ++-- .../ide/projecttype/BlankProjectWizardRegistrar.java | 4 ++-- .../ide/projecttype/ProjectTemplateRegistryImpl.java | 4 ++-- .../ide/projecttype/ProjectTemplatesComponent.java | 4 ++-- .../che/ide/projecttype/ProjectTypeComponent.java | 4 ++-- .../che/ide/projecttype/ProjectTypeRegistryImpl.java | 4 ++-- .../wizard/PreSelectedProjectTypeManagerImpl.java | 4 ++-- .../che/ide/projecttype/wizard/ProjectWizard.java | 4 ++-- .../ide/projecttype/wizard/ProjectWizardFactory.java | 4 ++-- .../wizard/ProjectWizardRegistryImpl.java | 4 ++-- .../projecttype/wizard/ProjectWizardResources.java | 4 ++-- .../categoriespage/CategoriesPagePresenter.java | 4 ++-- .../wizard/categoriespage/CategoriesPageView.java | 4 ++-- .../categoriespage/CategoriesPageViewImpl.java | 4 ++-- .../categoriespage/CategoriesPageViewImpl.ui.xml | 4 ++-- .../wizard/presenter/ProjectWizardPresenter.java | 4 ++-- .../wizard/presenter/ProjectWizardView.java | 4 ++-- .../wizard/presenter/ProjectWizardViewImpl.java | 4 ++-- .../wizard/presenter/ProjectWizardViewImpl.ui.xml | 4 ++-- .../che/ide/reference/ShowReferencePresenter.java | 4 ++-- .../eclipse/che/ide/reference/ShowReferenceView.java | 4 ++-- .../che/ide/reference/ShowReferenceViewImpl.java | 4 ++-- .../che/ide/reference/ShowReferenceViewImpl.ui.xml | 4 ++-- .../che/ide/resources/DeleteResourceManager.java | 4 ++-- .../eclipse/che/ide/resources/ResourceApiModule.java | 4 ++-- .../che/ide/resources/ResourceManagerComponent.java | 4 ++-- .../ide/resources/ResourceManagerInitializer.java | 4 ++-- .../che/ide/resources/action/CopyResourceAction.java | 4 ++-- .../che/ide/resources/action/CutResourceAction.java | 4 ++-- .../ide/resources/action/PasteResourceAction.java | 4 ++-- .../ide/resources/action/RevealResourceAction.java | 4 ++-- .../che/ide/resources/impl/ClipboardManagerImpl.java | 4 ++-- .../che/ide/resources/impl/ContainerImpl.java | 4 ++-- .../che/ide/resources/impl/CopyPasteManager.java | 4 ++-- .../org/eclipse/che/ide/resources/impl/FileImpl.java | 4 ++-- .../eclipse/che/ide/resources/impl/FolderImpl.java | 4 ++-- .../ide/resources/impl/InMemoryResourceStore.java | 4 ++-- .../eclipse/che/ide/resources/impl/ProjectImpl.java | 4 ++-- .../che/ide/resources/impl/ResourceDeltaImpl.java | 4 ++-- .../eclipse/che/ide/resources/impl/ResourceImpl.java | 4 ++-- .../che/ide/resources/impl/ResourceManager.java | 4 ++-- .../che/ide/resources/impl/ResourceStore.java | 4 ++-- .../ide/resources/reveal/RevealResourceEvent.java | 4 ++-- .../ide/resources/selector/SelectPathPresenter.java | 4 ++-- .../che/ide/resources/selector/SelectPathView.java | 4 ++-- .../ide/resources/selector/SelectPathViewImpl.java | 4 ++-- .../ide/resources/selector/SelectPathViewImpl.ui.xml | 4 ++-- .../ide/resources/selector/SelectionPathHandler.java | 4 ++-- .../che/ide/resources/tree/ContainerNode.java | 4 ++-- .../org/eclipse/che/ide/resources/tree/FileNode.java | 4 ++-- .../eclipse/che/ide/resources/tree/ResourceNode.java | 4 ++-- .../resources/tree/SkipHiddenNodesInterceptor.java | 4 ++-- .../che/ide/resources/tree/SkipLeafsInterceptor.java | 4 ++-- .../che/ide/search/FullTextSearchPresenter.java | 4 ++-- .../eclipse/che/ide/search/FullTextSearchView.java | 4 ++-- .../che/ide/search/FullTextSearchViewImpl.java | 4 ++-- .../che/ide/search/FullTextSearchViewImpl.ui.xml | 4 ++-- .../ide/search/factory/FindResultNodeFactory.java | 4 ++-- .../ide/search/presentation/FindResultGroupNode.java | 4 ++-- .../ide/search/presentation/FindResultPresenter.java | 4 ++-- .../che/ide/search/presentation/FindResultView.java | 4 ++-- .../ide/search/presentation/FindResultViewImpl.java | 4 ++-- .../ide/search/selectpath/FolderNodeInterceptor.java | 4 ++-- .../ide/search/selectpath/SelectPathPresenter.java | 4 ++-- .../che/ide/search/selectpath/SelectPathView.java | 4 ++-- .../ide/search/selectpath/SelectPathViewImpl.java | 4 ++-- .../ide/search/selectpath/SelectPathViewImpl.ui.xml | 4 ++-- .../che/ide/selection/SelectionAgentImpl.java | 4 ++-- .../che/ide/statepersistance/AppStateManager.java | 4 ++-- .../ide/statepersistance/PersistenceApiModule.java | 4 ++-- .../che/ide/terminal/AddTerminalClickHandler.java | 4 ++-- .../ide/terminal/CustomKeyDownTerminalHandler.java | 4 ++-- .../che/ide/terminal/HasAddTerminalClickHandler.java | 4 ++-- .../eclipse/che/ide/terminal/TerminalFactory.java | 4 ++-- .../che/ide/terminal/TerminalGeometryJso.java | 4 ++-- .../terminal/TerminalInitializePromiseHolder.java | 4 ++-- .../che/ide/terminal/TerminalInitializer.java | 4 ++-- .../org/eclipse/che/ide/terminal/TerminalJso.java | 4 ++-- .../eclipse/che/ide/terminal/TerminalOptionsJso.java | 4 ++-- .../eclipse/che/ide/terminal/TerminalPresenter.java | 4 ++-- .../org/eclipse/che/ide/terminal/TerminalView.java | 4 ++-- .../eclipse/che/ide/terminal/TerminalViewImpl.java | 4 ++-- .../eclipse/che/ide/terminal/TerminalViewImpl.ui.xml | 4 ++-- .../java/org/eclipse/che/ide/theme/DarkTheme.java | 4 ++-- .../java/org/eclipse/che/ide/theme/LightTheme.java | 4 ++-- .../org/eclipse/che/ide/theme/ThemeAgentImpl.java | 4 ++-- .../org/eclipse/che/ide/theme/ThemeApiModule.java | 4 ++-- .../che/ide/upload/file/UploadFilePresenter.java | 4 ++-- .../eclipse/che/ide/upload/file/UploadFileView.java | 4 ++-- .../che/ide/upload/file/UploadFileViewImpl.java | 4 ++-- .../che/ide/upload/file/UploadFileViewImpl.ui.xml | 4 ++-- .../upload/folder/UploadFolderFromZipPresenter.java | 4 ++-- .../ide/upload/folder/UploadFolderFromZipView.java | 4 ++-- .../upload/folder/UploadFolderFromZipViewImpl.java | 4 ++-- .../upload/folder/UploadFolderFromZipViewImpl.ui.xml | 4 ++-- .../che/ide/user/AskCredentialsDialogImpl.java | 4 ++-- .../che/ide/user/AskCredentialsDialogImpl.ui.xml | 4 ++-- .../org/eclipse/che/ide/user/ProfileComponent.java | 4 ++-- .../java/org/eclipse/che/ide/user/UserApiModule.java | 4 ++-- .../che/ide/user/UserProfileServiceClientImpl.java | 4 ++-- .../eclipse/che/ide/user/UserServiceClientImpl.java | 4 ++-- .../che/ide/workspace/DefaultWorkspaceComponent.java | 4 ++-- .../che/ide/workspace/FactoryWorkspaceComponent.java | 4 ++-- .../che/ide/workspace/PartStackPresenterFactory.java | 4 ++-- .../che/ide/workspace/PartStackViewFactory.java | 4 ++-- .../ide/workspace/WorkBenchControllerFactory.java | 4 ++-- .../che/ide/workspace/WorkBenchPartController.java | 4 ++-- .../ide/workspace/WorkBenchPartControllerImpl.java | 4 ++-- .../che/ide/workspace/WorkBenchResources.java | 4 ++-- .../che/ide/workspace/WorkspaceApiModule.java | 4 ++-- .../che/ide/workspace/WorkspaceComponent.java | 4 ++-- .../ide/workspace/WorkspaceComponentProvider.java | 4 ++-- .../che/ide/workspace/WorkspaceEventsHandler.java | 4 ++-- .../org/eclipse/che/ide/workspace/WorkspaceImpl.java | 4 ++-- .../che/ide/workspace/WorkspacePresenter.java | 4 ++-- .../ide/workspace/WorkspaceServiceClientImpl.java | 4 ++-- .../org/eclipse/che/ide/workspace/WorkspaceView.java | 4 ++-- .../eclipse/che/ide/workspace/WorkspaceViewImpl.java | 4 ++-- .../che/ide/workspace/WorkspaceViewImpl.ui.xml | 4 ++-- .../che/ide/workspace/WorkspaceWidgetFactory.java | 4 ++-- .../workspace/create/CreateWorkspacePresenter.java | 4 ++-- .../ide/workspace/create/CreateWorkspaceView.java | 4 ++-- .../workspace/create/CreateWorkspaceViewImpl.java | 4 ++-- .../workspace/create/CreateWorkspaceViewImpl.ui.xml | 4 ++-- .../workspace/create/recipewidget/RecipeWidget.java | 4 ++-- .../create/recipewidget/RecipeWidgetImpl.java | 4 ++-- .../create/recipewidget/RecipeWidgetImpl.ui.xml | 4 ++-- .../workspace/events/EnvironmentOutputHandler.java | 4 ++-- .../events/EnvironmentStatusEventHandler.java | 4 ++-- .../events/WorkspaceAgentOutputHandler.java | 4 ++-- .../ide/workspace/events/WorkspaceEventsModule.java | 4 ++-- .../events/WorkspaceStatusEventHandler.java | 4 ++-- .../che/ide/workspace/macro/WorkspaceNameMacro.java | 4 ++-- .../perspectives/general/AbstractPerspective.java | 4 ++-- .../perspectives/general/PerspectiveViewImpl.java | 4 ++-- .../perspectives/general/PerspectiveViewImpl.ui.xml | 4 ++-- .../perspectives/project/ProjectPerspective.java | 4 ++-- .../workspace/start/StartWorkspaceNotification.java | 4 ++-- .../start/StartWorkspaceNotification.ui.xml | 4 ++-- .../ide/workspace/start/StartWorkspacePresenter.java | 4 ++-- .../che/ide/workspace/start/StartWorkspaceView.java | 4 ++-- .../ide/workspace/start/StartWorkspaceViewImpl.java | 4 ++-- .../workspace/start/StartWorkspaceViewImpl.ui.xml | 4 ++-- .../start/workspacewidget/WorkspaceWidget.java | 4 ++-- .../start/workspacewidget/WorkspaceWidgetImpl.java | 4 ++-- .../start/workspacewidget/WorkspaceWidgetImpl.ui.xml | 4 ++-- .../org/eclipse/che/ide/xml/NewXmlFileAction.java | 4 ++-- .../src/main/resources/org/eclipse/che/ide/Core.css | 4 ++-- .../main/resources/org/eclipse/che/ide/Core.gwt.xml | 4 ++-- .../che/ide/CoreLocalizationConstant.properties | 4 ++-- .../ide/about/AboutLocalizationConstant.properties | 4 ++-- .../resources/org/eclipse/che/ide/actions/about.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/copy.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/cut.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/delete.svg | 4 ++-- .../org/eclipse/che/ide/actions/evaluate.svg | 4 ++-- .../org/eclipse/che/ide/actions/find-actions.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/find.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/format.svg | 4 ++-- .../org/eclipse/che/ide/actions/fullscreen-icon.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/import.svg | 4 ++-- .../org/eclipse/che/ide/actions/importGroup.svg | 4 ++-- .../che/ide/actions/importProjectFromLocation.svg | 4 ++-- .../org/eclipse/che/ide/actions/navigate-to-file.svg | 4 ++-- .../org/eclipse/che/ide/actions/new-resource.svg | 4 ++-- .../org/eclipse/che/ide/actions/newProject.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/paste.svg | 4 ++-- .../org/eclipse/che/ide/actions/preferences.svg | 4 ++-- .../che/ide/actions/project-configuration.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/redo.svg | 4 ++-- .../org/eclipse/che/ide/actions/refresh.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/rename.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/save.svg | 4 ++-- .../org/eclipse/che/ide/actions/showHiddenFiles.svg | 4 ++-- .../resources/org/eclipse/che/ide/actions/undo.svg | 4 ++-- .../org/eclipse/che/ide/actions/upload-file.svg | 4 ++-- .../org/eclipse/che/ide/actions/zip-folder.svg | 4 ++-- .../src/main/resources/org/eclipse/che/ide/blank.svg | 4 ++-- .../che/ide/command/editor/EditorMessages.properties | 4 ++-- .../org/eclipse/che/ide/command/editor/styles.css | 4 ++-- .../che/ide/command/execute/ExecMessages.properties | 4 ++-- .../ide/command/explorer/ExplorerMessages.properties | 4 ++-- .../che/ide/command/explorer/add-command-button.svg | 4 ++-- .../command/explorer/duplicate-command-button.svg | 4 ++-- .../che/ide/command/explorer/explorer-part.svg | 4 ++-- .../ide/command/explorer/remove-command-button.svg | 4 ++-- .../org/eclipse/che/ide/command/explorer/styles.css | 4 ++-- .../che/ide/command/goal/GoalMessages.properties | 4 ++-- .../org/eclipse/che/ide/command/magnifier.svg | 4 ++-- .../ide/command/palette/PaletteMessages.properties | 4 ++-- .../org/eclipse/che/ide/command/palette/styles.css | 4 ++-- .../ide/command/producer/ProducerMessages.properties | 4 ++-- .../ide/command/toolbar/ToolbarMessages.properties | 4 ++-- .../org/eclipse/che/ide/command/toolbar/button.css | 4 ++-- .../che/ide/command/toolbar/processes/styles.css | 4 ++-- .../ide/command/type/CommandTypeMessages.properties | 4 ++-- .../org/eclipse/che/ide/command/type/styles.css | 4 ++-- .../resources/org/eclipse/che/ide/console/clear.svg | 4 ++-- .../org/eclipse/che/ide/debug/breakpoint.css | 4 ++-- .../org/eclipse/che/ide/defaulticons/default.svg | 4 ++-- .../org/eclipse/che/ide/defaulticons/file.svg | 4 ++-- .../org/eclipse/che/ide/defaulticons/folder.svg | 4 ++-- .../org/eclipse/che/ide/defaulticons/image-icon.svg | 4 ++-- .../org/eclipse/che/ide/defaulticons/json.svg | 4 ++-- .../org/eclipse/che/ide/defaulticons/md.svg | 4 ++-- .../org/eclipse/che/ide/defaulticons/project.svg | 4 ++-- .../eclipse/che/ide/defaulticons/projectFolder.svg | 4 ++-- .../EditorPrefLocalizationConstant.properties | 4 ++-- .../org/eclipse/che/ide/factory/Factory.css | 4 ++-- .../org/eclipse/che/ide/factory/cog-icon.svg | 4 ++-- .../org/eclipse/che/ide/factory/execute.svg | 4 ++-- .../org/eclipse/che/ide/factory/export-config.svg | 4 ++-- .../org/eclipse/che/ide/factory/import-config.svg | 4 ++-- .../org/eclipse/che/ide/hotkeys/HotKeysCss.css | 4 ++-- .../org/eclipse/che/ide/hotkeys/find-icon.svg | 4 ++-- .../org/eclipse/che/ide/hotkeys/print_template.html | 4 ++-- .../org/eclipse/che/ide/imageviewer/imageViewer.css | 4 ++-- .../eclipse/che/ide/machine/console/clear-logs.svg | 4 ++-- .../resources/org/eclipse/che/ide/machine/cube.svg | 4 ++-- .../eclipse/che/ide/machine/custom-command-type.svg | 4 ++-- .../org/eclipse/che/ide/machine/edit-commands.svg | 4 ++-- .../org/eclipse/che/ide/machine/machine.css | 4 ++-- .../eclipse/che/ide/machine/process/add-terminal.svg | 4 ++-- .../che/ide/machine/process/clear-outputs.svg | 4 ++-- .../eclipse/che/ide/machine/process/line-wrap.svg | 4 ++-- .../eclipse/che/ide/machine/process/output-icon.svg | 4 ++-- .../org/eclipse/che/ide/machine/process/re-run.svg | 4 ++-- .../che/ide/machine/process/scroll-to-bottom.svg | 4 ++-- .../org/eclipse/che/ide/machine/process/stop.svg | 4 ++-- .../che/ide/machine/process/terminal-icon.svg | 4 ++-- .../che/ide/machine/process/terminal-tree-icon.svg | 4 ++-- .../eclipse/che/ide/machine/project-perspective.svg | 4 ++-- .../main/resources/org/eclipse/che/ide/menu/menu.css | 4 ++-- .../resources/org/eclipse/che/ide/menu/submenu.svg | 4 ++-- .../org/eclipse/che/ide/notification/fail.svg | 4 ++-- .../eclipse/che/ide/notification/notification.css | 4 ++-- .../org/eclipse/che/ide/notification/progress.svg | 4 ++-- .../org/eclipse/che/ide/notification/success.svg | 4 ++-- .../org/eclipse/che/ide/notification/warning.svg | 4 ++-- .../resources/org/eclipse/che/ide/part/che-logo.svg | 4 ++-- .../eclipse/che/ide/part/editor/recent/recent.css | 4 ++-- .../org/eclipse/che/ide/part/events-part-icon.svg | 4 ++-- .../org/eclipse/che/ide/part/output-part-icon.svg | 4 ++-- .../che/ide/part/project-explorer-part-icon.svg | 4 ++-- .../eclipse/che/ide/project/node/icon/dockerfile.svg | 4 ++-- .../ProjectExplorerLocalizationConstant.properties | 4 ++-- .../org/eclipse/che/ide/project/shared/file.svg | 4 ++-- .../che/ide/project/shared/hiddenSimpleFolder.svg | 4 ++-- .../che/ide/project/shared/notValidProjectFolder.svg | 4 ++-- .../eclipse/che/ide/project/shared/projectFolder.svg | 4 ++-- .../eclipse/che/ide/project/shared/simpleFolder.svg | 4 ++-- .../eclipse/che/ide/projectimport/ImporterPage.css | 4 ++-- .../eclipse/che/ide/projecttype/wizard/Wizard.css | 4 ++-- .../projecttype/wizard/categoriespage/MainPage.css | 4 ++-- .../che/ide/resources/selector/pathSelector.css | 4 ++-- .../eclipse/che/ide/texteditor/multi-file-icon.svg | 4 ++-- .../ide/workspace/perspectives/general/WorkBench.css | 4 ++-- .../org/eclipse/che/ide/workspace/recipe.svg | 4 ++-- .../main/resources/org/eclipse/che/ide/xml/xml.svg | 4 ++-- .../eclipse/che/ide/actions/ActionManagerTest.java | 4 ++-- .../actions/ConvertFolderToProjectActionTest.java | 4 ++-- .../eclipse/che/ide/actions/DefaultGroupTest.java | 4 ++-- .../che/ide/actions/DownloadWsActionTest.java | 4 ++-- .../che/ide/actions/FullTextSearchActionTest.java | 4 ++-- .../che/ide/actions/LinkWithEditorActionTest.java | 4 ++-- .../che/ide/actions/RenameItemActionTest.java | 4 ++-- .../che/ide/actions/RunCommandActionTest.java | 4 ++-- .../che/ide/actions/ShowReferenceActionTest.java | 4 ++-- .../che/ide/actions/StopWorkspaceActionTest.java | 4 ++-- .../ide/actions/WorkspaceSnapshotNotifierTest.java | 4 ++-- .../ide/actions/common/CollapseTreeActionTest.java | 4 ++-- .../che/ide/actions/common/ExpandTreeActionTest.java | 4 ++-- .../che/ide/client/StartUpActionsParserTest.java | 4 ++-- .../command/editor/CommandEditorProviderTest.java | 4 ++-- .../che/ide/command/editor/CommandEditorTest.java | 4 ++-- .../ide/command/editor/page/goal/GoalPageTest.java | 4 ++-- .../editor/page/goal/GoalPageViewImplTest.java | 4 ++-- .../ide/command/editor/page/name/NamePageTest.java | 4 ++-- .../editor/page/name/NamePageViewImplTest.java | 4 ++-- .../editor/page/project/ProjectSwitcherTest.java | 4 ++-- .../editor/page/project/ProjectsPageTest.java | 4 ++-- .../page/project/ProjectsPageViewImplTest.java | 4 ++-- .../explorer/CommandsExplorerPresenterTest.java | 4 ++-- .../palette/CommandsPalettePresenterTest.java | 4 ++-- .../palette/ShowCommandsPaletteActionTest.java | 4 ++-- .../commands/ExecuteCommandPresenterTest.java | 4 ++-- .../commands/button/AbstractMenuItemTest.java | 4 ++-- .../toolbar/commands/button/CommandItemTest.java | 4 ++-- .../ExecuteCommandButtonItemsProviderTest.java | 4 ++-- .../toolbar/commands/button/MachineItemTest.java | 4 ++-- .../ide/command/toolbar/previews/PreviewUrlTest.java | 4 ++-- .../command/type/custom/CustomCommandTypeTest.java | 4 ++-- .../command/type/custom/CustomPagePresenterTest.java | 4 ++-- .../ide/editor/macro/AbstractEditorMacroTest.java | 4 ++-- .../macro/EditorCurrentFileBaseNameMacroTest.java | 4 ++-- .../editor/macro/EditorCurrentFileNameMacroTest.java | 4 ++-- .../editor/macro/EditorCurrentFilePathMacroTest.java | 4 ++-- .../EditorCurrentFileRelativePathMacroTest.java | 4 ++-- .../macro/EditorCurrentProjectNameMacroTest.java | 4 ++-- .../macro/EditorCurrentProjectTypeMacroTest.java | 4 ++-- .../EditorContentSynchronizerImplTest.java | 4 ++-- .../EditorGroupSynchronizationImplTest.java | 4 ++-- .../che/ide/keybinding/KeyBindingManagerTest.java | 4 ++-- .../org/eclipse/che/ide/machine/MachineItemTest.java | 10 ++++++++++ .../che/ide/machine/MachineStatusHandlerTest.java | 4 ++-- .../che/ide/macro/ServerHostNameMacroTest.java | 4 ++-- .../org/eclipse/che/ide/macro/ServerMacroTest.java | 4 ++-- .../eclipse/che/ide/macro/ServerPortMacroTest.java | 4 ++-- .../che/ide/macro/ServerProtocolMacroTest.java | 4 ++-- .../ide/navigation/NavigateToFilePresenterTest.java | 4 ++-- .../newresource/AbstractNewResourceActionTest.java | 4 ++-- .../che/ide/newresource/NewFolderActionTest.java | 4 ++-- .../notification/NotificationManagerImplTest.java | 4 ++-- .../eclipse/che/ide/part/PartStackPresenterTest.java | 4 ++-- .../eclipse/che/ide/part/PartStackViewImplTest.java | 4 ++-- .../org/eclipse/che/ide/part/TestFocusManager.java | 4 ++-- .../part/editor/EditorPartStackPresenterTest.java | 4 ++-- .../multipart/EditorMultiPartStackPresenterTest.java | 4 ++-- .../project/macro/AbstractExplorerMacroTest.java | 4 ++-- .../macro/ExplorerCurrentFileBaseNameMacroTest.java | 4 ++-- .../macro/ExplorerCurrentFileNameMacroTest.java | 4 ++-- .../ExplorerCurrentFileParentPathMacroTest.java | 4 ++-- .../macro/ExplorerCurrentFilePathMacroTest.java | 4 ++-- .../ExplorerCurrentFileRelativePathMacroTest.java | 4 ++-- .../macro/ExplorerCurrentProjectNameMacroTest.java | 4 ++-- .../macro/ExplorerCurrentProjectTypeMacroTest.java | 4 ++-- .../synchronize/ChangeLocationWidgetTest.java | 4 ++-- .../synchronize/ProjectConfigSynchronizedTest.java | 4 ++-- .../part/widgets/editortab/EditorTabWidgetTest.java | 4 ++-- .../widgets/partbutton/PartButtonWidgetTest.java | 4 ++-- .../che/ide/processes/NewTerminalActionTest.java | 4 ++-- .../ide/projectimport/wizard/ImportWizardTest.java | 4 ++-- .../ProjectImportOutputJsonRpcNotifierTest.java | 4 ++-- .../projectimport/wizard/ProjectImporterTest.java | 4 ++-- .../zip/ZipImporterPagePresenterTest.java | 4 ++-- .../projecttype/BlankProjectWizardRegistrarTest.java | 4 ++-- .../PreSelectedProjectTypeManagerImplTest.java | 4 ++-- .../ide/projecttype/wizard/ProjectWizardTest.java | 4 ++-- .../ide/reference/ShowReferencePresenterTest.java | 4 ++-- .../che/ide/search/FullTextSearchPresenterTest.java | 4 ++-- .../search/presentation/FindResultPresenterTest.java | 4 ++-- .../search/selectpath/SelectPathPresenterTest.java | 4 ++-- .../che/ide/selection/TestSelectionAgent.java | 4 ++-- .../ide/statepersistance/AppStateManagerTest.java | 4 ++-- .../che/ide/terminal/TerminalViewImplTest.java | 4 ++-- .../che/ide/upload/file/UploadFileViewImplTest.java | 4 ++-- .../create/CreateWorkspacePresenterTest.java | 4 ++-- .../create/CreateWorkspaceViewImplTest.java | 4 ++-- .../create/recipewidget/RecipeWidgetImplTest.java | 4 ++-- .../ide/workspace/macro/WorkspaceNameMacroTest.java | 4 ++-- .../general/AbstractPerspectivePersistenceTest.java | 4 ++-- .../general/AbstractPerspectiveTest.java | 4 ++-- .../perspectives/general/PerspectiveManagerTest.java | 4 ++-- .../perspectives/project/ProjectPerspectiveTest.java | 4 ++-- .../workspace/start/StartWorkspacePresenterTest.java | 4 ++-- .../state/WorkspacePresenterPersistenceTest.java | 4 ++-- ide/che-core-ide-generators/pom.xml | 4 ++-- .../che/util/DtoFactoryVisitorRegistryGenerator.java | 4 ++-- .../eclipse/che/util/ExtensionManagerGenerator.java | 4 ++-- .../eclipse/che/util/ExtensionRegistryGenerator.java | 4 ++-- .../java/org/eclipse/che/util/GeneratorUtils.java | 4 ++-- .../java/org/eclipse/che/util/GwtXmlGenerator.java | 4 ++-- .../org/eclipse/che/util/IDEInjectorGenerator.java | 4 ++-- ...istedResourcesReflectionConfigurationBuilder.java | 4 ++-- .../org/eclipse/che/util/GwtXmlGeneratorTest.java | 4 ++-- .../che/util/TestExtensionManagerGenerator.java | 4 ++-- .../org/eclipse/che/util/TestGeneratorUtils.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- ide/che-core-ide-stacks/pom.xml | 4 ++-- .../main/resources/stacks-images/type-android.svg | 4 ++-- .../src/main/resources/stacks-images/type-blank.svg | 4 ++-- .../src/main/resources/stacks-images/type-che.svg | 4 ++-- .../src/main/resources/stacks-images/type-cpp.svg | 4 ++-- .../src/main/resources/stacks-images/type-dotnet.svg | 4 ++-- .../src/main/resources/stacks-images/type-go.svg | 4 ++-- .../src/main/resources/stacks-images/type-hadoop.svg | 4 ++-- .../main/resources/stacks-images/type-java-mysql.svg | 4 ++-- .../src/main/resources/stacks-images/type-java.svg | 4 ++-- .../src/main/resources/stacks-images/type-node.svg | 4 ++-- .../src/main/resources/stacks-images/type-php.svg | 4 ++-- .../src/main/resources/stacks-images/type-python.svg | 4 ++-- .../src/main/resources/stacks-images/type-ruby.svg | 4 ++-- .../resources/stacks-images/type-spring-boot.svg | 4 ++-- ide/che-core-ide-templates/pom.xml | 4 ++-- ide/che-core-ide-ui/pom.xml | 4 ++-- .../main/java/org/eclipse/che/ide/ui/Constants.java | 4 ++-- .../main/java/org/eclipse/che/ide/ui/Resources.java | 4 ++-- .../org/eclipse/che/ide/ui/ShiftableTextArea.java | 4 ++-- .../src/main/java/org/eclipse/che/ide/ui/Styles.java | 4 ++-- .../main/java/org/eclipse/che/ide/ui/TextBox.java | 4 ++-- .../eclipse/che/ide/ui/UILocalizationConstant.java | 4 ++-- .../eclipse/che/ide/ui/button/ButtonResources.java | 4 ++-- .../org/eclipse/che/ide/ui/button/ConsoleButton.java | 4 ++-- .../che/ide/ui/button/ConsoleButtonFactory.java | 4 ++-- .../eclipse/che/ide/ui/button/ConsoleButtonImpl.java | 4 ++-- .../che/ide/ui/button/ConsoleButtonImpl.ui.xml | 4 ++-- .../ide/ui/buttonLoader/ButtonLoaderResources.java | 4 ++-- .../che/ide/ui/cellview/CellTableResources.java | 4 ++-- .../che/ide/ui/cellview/CellTreeResources.java | 4 ++-- .../che/ide/ui/cellview/DataGridResources.java | 4 ++-- .../ide/ui/dialogs/choice/ChoiceDialogFooter.java | 4 ++-- .../ide/ui/dialogs/choice/ChoiceDialogFooter.ui.xml | 4 ++-- .../ide/ui/dialogs/choice/ChoiceDialogPresenter.java | 4 ++-- .../che/ide/ui/dialogs/choice/ChoiceDialogView.java | 4 ++-- .../ide/ui/dialogs/choice/ChoiceDialogViewImpl.java | 4 ++-- .../ui/dialogs/choice/ChoiceDialogViewImpl.ui.xml | 4 ++-- .../ide/ui/dialogs/confirm/ConfirmDialogFooter.java | 4 ++-- .../ui/dialogs/confirm/ConfirmDialogFooter.ui.xml | 4 ++-- .../ui/dialogs/confirm/ConfirmDialogPresenter.java | 4 ++-- .../ide/ui/dialogs/confirm/ConfirmDialogView.java | 4 ++-- .../ui/dialogs/confirm/ConfirmDialogViewImpl.java | 4 ++-- .../ui/dialogs/confirm/ConfirmDialogViewImpl.ui.xml | 4 ++-- .../che/ide/ui/dialogs/input/InputDialogFooter.java | 4 ++-- .../ide/ui/dialogs/input/InputDialogFooter.ui.xml | 4 ++-- .../ide/ui/dialogs/input/InputDialogPresenter.java | 4 ++-- .../che/ide/ui/dialogs/input/InputDialogView.java | 4 ++-- .../ide/ui/dialogs/input/InputDialogViewImpl.java | 4 ++-- .../ide/ui/dialogs/input/InputDialogViewImpl.ui.xml | 4 ++-- .../ide/ui/dialogs/message/MessageDialogFooter.java | 4 ++-- .../ui/dialogs/message/MessageDialogFooter.ui.xml | 4 ++-- .../ui/dialogs/message/MessageDialogPresenter.java | 4 ++-- .../ide/ui/dialogs/message/MessageDialogView.java | 4 ++-- .../ui/dialogs/message/MessageDialogViewImpl.java | 4 ++-- .../ui/dialogs/message/MessageDialogViewImpl.ui.xml | 4 ++-- .../eclipse/che/ide/ui/dropdown/BaseListItem.java | 4 ++-- .../eclipse/che/ide/ui/dropdown/DropdownList.java | 4 ++-- .../eclipse/che/ide/ui/dropdown/DropdownList.ui.xml | 4 ++-- .../che/ide/ui/dropdown/DropdownListItem.java | 4 ++-- .../ide/ui/dropdown/DropdownListItemRenderer.java | 4 ++-- .../che/ide/ui/dropdown/DropdownListResources.java | 4 ++-- .../eclipse/che/ide/ui/dropdown/DropdownMenu.java | 4 ++-- .../che/ide/ui/dropdown/StringItemRenderer.java | 4 ++-- .../org/eclipse/che/ide/ui/list/CategoriesList.java | 4 ++-- .../java/org/eclipse/che/ide/ui/list/Category.java | 4 ++-- .../eclipse/che/ide/ui/list/CategoryNodeElement.java | 4 ++-- .../eclipse/che/ide/ui/list/CategoryRenderer.java | 4 ++-- .../eclipse/che/ide/ui/menubutton/ActionHandler.java | 4 ++-- .../org/eclipse/che/ide/ui/menubutton/ItemsList.java | 4 ++-- .../eclipse/che/ide/ui/menubutton/ItemsProvider.java | 4 ++-- .../eclipse/che/ide/ui/menubutton/MenuButton.java | 4 ++-- .../org/eclipse/che/ide/ui/menubutton/MenuItem.java | 4 ++-- .../eclipse/che/ide/ui/multisplitpanel/SubPanel.java | 4 ++-- .../che/ide/ui/multisplitpanel/SubPanelFactory.java | 4 ++-- .../che/ide/ui/multisplitpanel/WidgetToShow.java | 4 ++-- .../ui/multisplitpanel/actions/ClosePaneAction.java | 4 ++-- .../actions/RemoveAllWidgetsInPaneAction.java | 4 ++-- .../actions/SplitHorizontallyAction.java | 4 ++-- .../actions/SplitVerticallyAction.java | 4 ++-- .../che/ide/ui/multisplitpanel/menu/Menu.java | 4 ++-- .../che/ide/ui/multisplitpanel/menu/MenuItem.java | 4 ++-- .../multisplitpanel/menu/MenuItemActionWidget.java | 4 ++-- .../multisplitpanel/menu/MenuItemActionWidget.ui.xml | 4 ++-- .../ide/ui/multisplitpanel/menu/MenuItemWidget.java | 4 ++-- .../ui/multisplitpanel/menu/MenuItemWidget.ui.xml | 4 ++-- .../che/ide/ui/multisplitpanel/menu/MenuWidget.java | 4 ++-- .../ide/ui/multisplitpanel/menu/MenuWidget.ui.xml | 4 ++-- .../ui/multisplitpanel/panel/SubPanelPresenter.java | 4 ++-- .../ide/ui/multisplitpanel/panel/SubPanelView.java | 4 ++-- .../multisplitpanel/panel/SubPanelViewFactory.java | 4 ++-- .../ui/multisplitpanel/panel/SubPanelViewImpl.java | 4 ++-- .../ui/multisplitpanel/panel/SubPanelViewImpl.ui.xml | 4 ++-- .../eclipse/che/ide/ui/multisplitpanel/tab/Tab.java | 4 ++-- .../ide/ui/multisplitpanel/tab/TabItemFactory.java | 4 ++-- .../che/ide/ui/multisplitpanel/tab/TabWidget.java | 4 ++-- .../che/ide/ui/multisplitpanel/tab/TabWidget.ui.xml | 4 ++-- .../che/ide/ui/popup/PopupKeyDownListener.java | 4 ++-- .../org/eclipse/che/ide/ui/popup/PopupResources.java | 4 ++-- .../org/eclipse/che/ide/ui/popup/PopupWidget.java | 4 ++-- .../ide/ui/radiobuttongroup/RadioButtonGroup.java | 4 ++-- .../eclipse/che/ide/ui/smartTree/DefaultGoInto.java | 4 ++-- .../org/eclipse/che/ide/ui/smartTree/GoInto.java | 4 ++-- .../ide/ui/smartTree/KeyboardNavigationHandler.java | 4 ++-- .../eclipse/che/ide/ui/smartTree/NodeDescriptor.java | 4 ++-- .../org/eclipse/che/ide/ui/smartTree/NodeLoader.java | 4 ++-- .../eclipse/che/ide/ui/smartTree/NodeStorage.java | 4 ++-- .../che/ide/ui/smartTree/NodeUniqueKeyProvider.java | 4 ++-- .../eclipse/che/ide/ui/smartTree/SelectionModel.java | 4 ++-- .../org/eclipse/che/ide/ui/smartTree/SortDir.java | 4 ++-- .../eclipse/che/ide/ui/smartTree/SpeedSearch.java | 4 ++-- .../java/org/eclipse/che/ide/ui/smartTree/Tree.java | 4 ++-- .../org/eclipse/che/ide/ui/smartTree/TreeStyles.java | 4 ++-- .../org/eclipse/che/ide/ui/smartTree/TreeView.java | 4 ++-- .../che/ide/ui/smartTree/UniqueKeyProvider.java | 4 ++-- .../che/ide/ui/smartTree/compare/NameComparator.java | 4 ++-- .../ide/ui/smartTree/converter/NodeConverter.java | 4 ++-- .../smartTree/converter/impl/NodeNameConverter.java | 4 ++-- .../ui/smartTree/event/BeforeCollapseNodeEvent.java | 4 ++-- .../ui/smartTree/event/BeforeExpandNodeEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/BeforeLoadEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/BlurEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/CancellableEvent.java | 4 ++-- .../ide/ui/smartTree/event/CollapseNodeEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/ExpandNodeEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/FocusEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/GoIntoStateEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/LoadEvent.java | 4 ++-- .../ide/ui/smartTree/event/LoadExceptionEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/LoaderHandler.java | 4 ++-- .../che/ide/ui/smartTree/event/NodeAddedEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/PostLoadEvent.java | 4 ++-- .../ui/smartTree/event/SelectionChangedEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/StoreAddEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/StoreClearEvent.java | 4 ++-- .../ide/ui/smartTree/event/StoreDataChangeEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/StoreHandlers.java | 4 ++-- .../ui/smartTree/event/StoreRecordChangeEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/StoreRemoveEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/StoreSortEvent.java | 4 ++-- .../che/ide/ui/smartTree/event/StoreUpdateEvent.java | 4 ++-- .../ui/smartTree/event/internal/NativeTreeEvent.java | 4 ++-- .../handler/GroupingHandlerRegistration.java | 4 ++-- .../presentation/AbstractPresentationRenderer.java | 4 ++-- .../presentation/DefaultPresentationRenderer.java | 4 ++-- .../ui/smartTree/presentation/HasPresentation.java | 4 ++-- .../ui/smartTree/presentation/NodePresentation.java | 4 ++-- .../smartTree/presentation/PresentationRenderer.java | 4 ++-- .../ide/ui/smartTree/presentation/TextAttribute.java | 4 ++-- .../che/ide/ui/status/ComponentWithEmptyStatus.java | 4 ++-- .../org/eclipse/che/ide/ui/status/EmptyStatus.java | 4 ++-- .../org/eclipse/che/ide/ui/status/StatusText.java | 4 ++-- .../org/eclipse/che/ide/ui/status/StatusWidget.java | 4 ++-- .../org/eclipse/che/ide/ui/switcher/Switcher.java | 4 ++-- .../org/eclipse/che/ide/ui/toolbar/ActionButton.java | 4 ++-- .../che/ide/ui/toolbar/ActionPopupButton.java | 4 ++-- .../eclipse/che/ide/ui/toolbar/CloseMenuHandler.java | 4 ++-- .../org/eclipse/che/ide/ui/toolbar/MainToolbar.java | 4 ++-- .../eclipse/che/ide/ui/toolbar/MenuLockLayer.java | 4 ++-- .../org/eclipse/che/ide/ui/toolbar/PopupMenu.java | 4 ++-- .../che/ide/ui/toolbar/PresentationFactory.java | 4 ++-- .../eclipse/che/ide/ui/toolbar/ToolbarPresenter.java | 4 ++-- .../eclipse/che/ide/ui/toolbar/ToolbarResources.java | 4 ++-- .../org/eclipse/che/ide/ui/toolbar/ToolbarView.java | 4 ++-- .../eclipse/che/ide/ui/toolbar/ToolbarViewImpl.java | 4 ++-- .../java/org/eclipse/che/ide/ui/toolbar/Utils.java | 4 ++-- .../eclipse/che/ide/ui/tooltip/TooltipWidget.java | 4 ++-- .../che/ide/ui/tooltip/TooltipWidgetImpl.java | 4 ++-- .../che/ide/ui/tooltip/TooltipWidgetImpl.ui.xml | 4 ++-- .../java/org/eclipse/che/ide/ui/window/View.java | 4 ++-- .../java/org/eclipse/che/ide/ui/window/View.ui.xml | 4 ++-- .../java/org/eclipse/che/ide/ui/window/Window.java | 4 ++-- .../org/eclipse/che/ide/ui/CodenvyUI.gwt.xml | 4 ++-- .../main/resources/org/eclipse/che/ide/ui/Styles.css | 4 ++-- .../org/eclipse/che/ide/ui/button/button.css | 4 ++-- .../eclipse/che/ide/ui/buttonLoader/buttonLoader.css | 4 ++-- .../org/eclipse/che/ide/ui/cellview/cellTable.css | 4 ++-- .../org/eclipse/che/ide/ui/cellview/cellTree.css | 4 ++-- .../org/eclipse/che/ide/ui/cellview/dataGrid.css | 4 ++-- .../resources/org/eclipse/che/ide/ui/constants.css | 4 ++-- .../eclipse/che/ide/ui/dropdown/expansionIcon.svg | 4 ++-- .../org/eclipse/che/ide/ui/dropdown/styles.css | 4 ++-- .../org/eclipse/che/ide/ui/list/CategoriesList.css | 4 ++-- .../eclipse/che/ide/ui/list/arrowExpansionIcon.svg | 4 ++-- .../org/eclipse/che/ide/ui/logo/che-logo.svg | 4 ++-- .../org/eclipse/che/ide/ui/logo/water-mark-logo.svg | 4 ++-- .../org/eclipse/che/ide/ui/menubutton/arrowIcon.svg | 4 ++-- .../org/eclipse/che/ide/ui/menubutton/button.css | 4 ++-- .../ide/ui/multisplitpanel/menu/multi-file-icon.svg | 4 ++-- .../che/ide/ui/multisplitpanel/menu/style.css | 4 ++-- .../resources/org/eclipse/che/ide/ui/popup/popup.css | 4 ++-- .../ide/ui/radiobuttongroup/radio-button-group.css | 4 ++-- .../org/eclipse/che/ide/ui/smartTree/TreeStyles.css | 4 ++-- .../eclipse/che/ide/ui/smartTree/iconCollapsed.svg | 4 ++-- .../eclipse/che/ide/ui/smartTree/iconExpanded.svg | 4 ++-- .../org/eclipse/che/ide/ui/switcher/switcher.css | 4 ++-- .../org/eclipse/che/ide/ui/toolbar/popup-menu.css | 4 ++-- .../org/eclipse/che/ide/ui/toolbar/toolbar.css | 4 ++-- .../org/eclipse/che/ide/ui/window/Window.css | 4 ++-- .../org/eclipse/che/ide/ui/window/close-icon.svg | 4 ++-- .../che/ide/ui/button/ConsoleButtonImplTest.java | 4 ++-- .../org/eclipse/che/ide/ui/dialogs/BaseTest.java | 4 ++-- .../ui/dialogs/confirm/ConfirmDialogFooterTest.java | 4 ++-- .../dialogs/confirm/ConfirmDialogPresenterTest.java | 4 ++-- .../ui/dialogs/confirm/ConfirmDialogViewTest.java | 4 ++-- .../ide/ui/dialogs/input/InputDialogFooterTest.java | 4 ++-- .../ui/dialogs/input/InputDialogPresenterTest.java | 4 ++-- .../ide/ui/dialogs/input/InputDialogViewTest.java | 4 ++-- .../ui/dialogs/message/MessageDialogFooterTest.java | 4 ++-- .../dialogs/message/MessageDialogPresenterTest.java | 4 ++-- .../ui/dialogs/message/MessageDialogViewTest.java | 4 ++-- .../che/ide/ui/tooltip/TooltipWidgetImplTest.java | 4 ++-- ide/che-core-orion-editor/pom.xml | 4 ++-- .../eclipse/che/ide/editor/orion/client/Action.java | 4 ++-- .../ide/editor/orion/client/ContentAssistWidget.java | 4 ++-- .../orion/client/ContentAssistWidgetFactory.java | 4 ++-- .../orion/client/EditorInitializePromiseHolder.java | 4 ++-- .../eclipse/che/ide/editor/orion/client/KeyMode.java | 4 ++-- .../ide/editor/orion/client/KeyModeInstances.java | 4 ++-- .../editor/orion/client/KeymodeDisplayConstants.java | 4 ++-- .../client/OrionAnnotationSeverityProvider.java | 4 ++-- .../editor/orion/client/OrionBreakpointRuler.java | 4 ++-- .../orion/client/OrionContentTypeRegistrant.java | 4 ++-- .../ide/editor/orion/client/OrionCursorModel.java | 4 ++-- .../che/ide/editor/orion/client/OrionDocument.java | 4 ++-- .../ide/editor/orion/client/OrionEditorBuilder.java | 4 ++-- .../editor/orion/client/OrionEditorExtension.java | 4 ++-- .../che/ide/editor/orion/client/OrionEditorInit.java | 4 ++-- .../editor/orion/client/OrionEditorPresenter.java | 4 ++-- .../ide/editor/orion/client/OrionEditorWidget.java | 4 ++-- .../ide/editor/orion/client/OrionEditorWidget.ui.xml | 4 ++-- .../ide/editor/orion/client/OrionEventConstants.java | 4 ++-- .../ide/editor/orion/client/OrionHoverHandler.java | 4 ++-- .../editor/orion/client/OrionHoverRegistrant.java | 4 ++-- .../che/ide/editor/orion/client/OrionLineStyler.java | 4 ++-- .../editor/orion/client/OrionOccurrencesHandler.java | 4 ++-- .../orion/client/OrionOccurrencesRegistrant.java | 4 ++-- .../che/ide/editor/orion/client/OrionResource.java | 4 ++-- .../editor/orion/client/OrionSettingsController.java | 4 ++-- .../che/ide/editor/orion/client/OrionUndoRedo.java | 4 ++-- .../orion/client/TemporaryKeyBindingsManager.java | 4 ++-- .../orion/client/events/HasScrollHandlers.java | 4 ++-- .../ide/editor/orion/client/events/ScrollEvent.java | 4 ++-- .../editor/orion/client/events/ScrollHandler.java | 4 ++-- .../find/IncrementalFindReportStatusObserver.java | 4 ++-- .../client/inject/JavaHighlightingOrionPlugin.java | 4 ++-- .../client/inject/OrionCodeEditWidgetProvider.java | 4 ++-- .../orion/client/inject/OrionEditorGinModule.java | 4 ++-- .../inject/OrionEditorOptionsOverlayProvider.java | 4 ++-- .../ide/editor/orion/client/inject/OrionPlugin.java | 4 ++-- .../orion/client/jso/AnnotationStylerOverlay.java | 4 ++-- .../orion/client/jso/ModelChangedEventOverlay.java | 4 ++-- .../client/jso/OrionAnnotationIteratorOverlay.java | 4 ++-- .../client/jso/OrionAnnotationModelOverlay.java | 4 ++-- .../orion/client/jso/OrionAnnotationOverlay.java | 4 ++-- .../orion/client/jso/OrionAnnotationTypeOverlay.java | 5 ++--- .../orion/client/jso/OrionAnnotationsOverlay.java | 5 ++--- .../orion/client/jso/OrionAttributesOverlay.java | 4 ++-- .../orion/client/jso/OrionCodeEditWidgetOverlay.java | 4 ++-- .../orion/client/jso/OrionContentAssistOverlay.java | 4 ++-- .../orion/client/jso/OrionContentTypeOverlay.java | 4 ++-- .../orion/client/jso/OrionEditorOptionsOverlay.java | 4 ++-- .../editor/orion/client/jso/OrionEditorOverlay.java | 4 ++-- .../orion/client/jso/OrionEditorViewOverlay.java | 4 ++-- .../editor/orion/client/jso/OrionEventOverlay.java | 4 ++-- .../orion/client/jso/OrionEventTargetOverlay.java | 4 ++-- .../orion/client/jso/OrionExtRulerOverlay.java | 4 ++-- .../orion/client/jso/OrionFindIteratorOverlay.java | 4 ++-- .../orion/client/jso/OrionFindOptionsOverlay.java | 4 ++-- .../jso/OrionHighlightingConfigurationOverlay.java | 4 ++-- .../orion/client/jso/OrionHoverContextOverlay.java | 4 ++-- .../editor/orion/client/jso/OrionHoverOverlay.java | 4 ++-- .../client/jso/OrionInputChangedEventOverlay.java | 4 ++-- .../orion/client/jso/OrionKeyBindingModule.java | 4 ++-- .../orion/client/jso/OrionKeyBindingOverlay.java | 4 ++-- .../client/jso/OrionKeyBindingsRelationOverlay.java | 4 ++-- .../editor/orion/client/jso/OrionKeyModeOverlay.java | 4 ++-- .../orion/client/jso/OrionKeyStrokeOverlay.java | 4 ++-- .../orion/client/jso/OrionLinkedModeOverlay.java | 4 ++-- .../client/jso/OrionLinkedModelDataOverlay.java | 4 ++-- .../client/jso/OrionLinkedModelGroupOverlay.java | 4 ++-- .../orion/client/jso/OrionLinkedModelOverlay.java | 4 ++-- .../client/jso/OrionLinkedModelPositionOverlay.java | 4 ++-- .../client/jso/OrionModelChangedEventOverlay.java | 4 ++-- .../client/jso/OrionOccurrenceContextOverlay.java | 4 ++-- .../orion/client/jso/OrionOccurrenceOverlay.java | 4 ++-- .../orion/client/jso/OrionPixelPositionOverlay.java | 4 ++-- .../editor/orion/client/jso/OrionProblemOverlay.java | 4 ++-- .../client/jso/OrionRulerClickEventOverlay.java | 4 ++-- .../orion/client/jso/OrionSelectionEventOverlay.java | 4 ++-- .../orion/client/jso/OrionSelectionOverlay.java | 4 ++-- .../client/jso/OrionServiceRegistryOverlay.java | 4 ++-- .../editor/orion/client/jso/OrionStyleOverlay.java | 4 ++-- .../orion/client/jso/OrionTextChangeOverlay.java | 4 ++-- .../orion/client/jso/OrionTextModelOverlay.java | 4 ++-- .../orion/client/jso/OrionTextThemeOverlay.java | 4 ++-- .../client/jso/OrionTextViewOptionsOverlay.java | 4 ++-- .../orion/client/jso/OrionTextViewOverlay.java | 4 ++-- .../client/jso/OrionTextViewShowOptionsOverlay.java | 4 ++-- .../orion/client/jso/OrionUndoStackOverlay.java | 4 ++-- .../orion/client/jso/OrionUndoStackSizeOverlay.java | 4 ++-- .../client/jso/StatusMessageReporterOverlay.java | 4 ++-- .../ide/editor/orion/client/jso/UiUtilsOverlay.java | 4 ++-- .../editor/orion/client/menu/EditorContextMenu.java | 4 ++-- .../editor/orion/client/signature/ElementWidget.java | 4 ++-- .../client/signature/SignatureHelpResources.java | 4 ++-- .../orion/client/signature/SignatureHelpView.java | 4 ++-- .../che/ide/status/message/StatusMessage.java | 4 ++-- .../ide/status/message/StatusMessageObserver.java | 4 ++-- .../ide/status/message/StatusMessageReporter.java | 4 ++-- .../eclipse/che/ide/editor/orion/OrionEditor.gwt.xml | 4 ++-- .../orion/client/incremental-find-container.css | 4 ++-- .../ide/editor/orion/client/orion-codenvy-theme.css | 4 ++-- .../editor/orion/client/signature/SignatureHelp.css | 4 ++-- .../che/ide/editor/orion/client/signature/arrow.svg | 4 ++-- .../ide/editor/orion/public/orion-codenvy-theme.css | 4 ++-- ide/che-ide-core/pom.xml | 4 ++-- ide/commons-gwt/pom.xml | 4 ++-- .../gwt/webworker/client/messages/Message.java | 4 ++-- .../gwt/webworker/client/messages/MessageFilter.java | 4 ++-- .../org/eclipse/che/api/promises/async/Delayer.java | 4 ++-- .../org/eclipse/che/api/promises/async/Task.java | 4 ++-- .../che/api/promises/async/ThrottledDelayer.java | 4 ++-- .../eclipse/che/api/promises/async/Throttler.java | 4 ++-- .../eclipse/che/api/promises/client/BiFunction.java | 4 ++-- .../eclipse/che/api/promises/client/BiOperation.java | 4 ++-- .../eclipse/che/api/promises/client/Function.java | 4 ++-- .../che/api/promises/client/FunctionException.java | 4 ++-- .../eclipse/che/api/promises/client/Operation.java | 4 ++-- .../che/api/promises/client/OperationException.java | 4 ++-- .../org/eclipse/che/api/promises/client/Promise.java | 4 ++-- .../che/api/promises/client/PromiseError.java | 4 ++-- .../che/api/promises/client/PromiseProvider.java | 4 ++-- .../eclipse/che/api/promises/client/Thenable.java | 4 ++-- .../promises/client/callback/AsyncPromiseHelper.java | 4 ++-- .../client/callback/CallbackPromiseHelper.java | 4 ++-- .../eclipse/che/api/promises/client/js/Executor.java | 4 ++-- .../che/api/promises/client/js/JsPromise.java | 4 ++-- .../che/api/promises/client/js/JsPromiseError.java | 4 ++-- .../api/promises/client/js/JsPromiseProvider.java | 4 ++-- .../eclipse/che/api/promises/client/js/Promises.java | 4 ++-- .../che/api/promises/client/js/RejectFunction.java | 4 ++-- .../che/api/promises/client/js/ResolveFunction.java | 4 ++-- .../main/java/org/eclipse/che/ide/CommandLine.java | 4 ++-- .../main/java/org/eclipse/che/ide/DelayedTask.java | 4 ++-- .../main/java/org/eclipse/che/ide/FontAwesome.java | 4 ++-- .../org/eclipse/che/ide/commons/GwtXmlUtils.java | 4 ++-- .../che/ide/commons/ParsingResponseException.java | 4 ++-- .../ide/commons/exception/JobNotFoundException.java | 4 ++-- .../exception/ServerDisconnectedException.java | 4 ++-- .../che/ide/commons/exception/ServerException.java | 4 ++-- .../ide/commons/exception/UnauthorizedException.java | 4 ++-- .../ide/commons/exception/UnmarshallerException.java | 4 ++-- .../eclipse/che/ide/dto/ClientDtoFactoryVisitor.java | 4 ++-- .../java/org/eclipse/che/ide/dto/DtoFactory.java | 4 ++-- .../org/eclipse/che/ide/dto/DtoFactoryVisitor.java | 4 ++-- .../main/java/org/eclipse/che/ide/dto/DtoGen.gwt.xml | 4 ++-- .../java/org/eclipse/che/ide/dto/DtoProvider.java | 4 ++-- .../org/eclipse/che/ide/filters/FuzzyMatches.java | 4 ++-- .../main/java/org/eclipse/che/ide/filters/Match.java | 4 ++-- .../java/org/eclipse/che/ide/filters/Matcher.java | 4 ++-- .../java/org/eclipse/che/ide/json/JsonHelper.java | 4 ++-- .../che/ide/jsonrpc/ClientSideRequestProcessor.java | 4 ++-- .../ide/jsonrpc/ClientSideTimeoutActionRunner.java | 4 ++-- .../che/ide/jsonrpc/ElementalJsonRpcComposer.java | 4 ++-- .../che/ide/jsonrpc/ElementalJsonRpcMarshaller.java | 4 ++-- .../che/ide/jsonrpc/ElementalJsonRpcQualifier.java | 4 ++-- .../ide/jsonrpc/ElementalJsonRpcUnmarshaller.java | 4 ++-- .../eclipse/che/ide/jsonrpc/JsonRpcInitializer.java | 4 ++-- .../che/ide/jsonrpc/WebSocketJsonRpcInitializer.java | 4 ++-- .../main/java/org/eclipse/che/ide/resource/Path.java | 4 ++-- .../java/org/eclipse/che/ide/rest/AsyncRequest.java | 4 ++-- .../eclipse/che/ide/rest/AsyncRequestCallback.java | 4 ++-- .../eclipse/che/ide/rest/AsyncRequestFactory.java | 4 ++-- .../org/eclipse/che/ide/rest/AsyncRequestLoader.java | 4 ++-- .../org/eclipse/che/ide/rest/DtoUnmarshaller.java | 4 ++-- .../eclipse/che/ide/rest/DtoUnmarshallerFactory.java | 4 ++-- .../java/org/eclipse/che/ide/rest/HTTPHeader.java | 4 ++-- .../java/org/eclipse/che/ide/rest/HTTPMethod.java | 4 ++-- .../java/org/eclipse/che/ide/rest/HTTPStatus.java | 4 ++-- .../eclipse/che/ide/rest/LocationUnmarshaller.java | 4 ++-- .../java/org/eclipse/che/ide/rest/Marshallable.java | 4 ++-- .../eclipse/che/ide/rest/RequestStatusHandler.java | 4 ++-- .../java/org/eclipse/che/ide/rest/RestContext.java | 4 ++-- .../eclipse/che/ide/rest/RestContextProvider.java | 4 ++-- .../org/eclipse/che/ide/rest/RestServiceInfo.java | 4 ++-- .../che/ide/rest/StringMapListUnmarshaller.java | 4 ++-- .../eclipse/che/ide/rest/StringMapUnmarshaller.java | 4 ++-- .../org/eclipse/che/ide/rest/StringUnmarshaller.java | 4 ++-- .../org/eclipse/che/ide/rest/Unmarshallable.java | 4 ++-- .../java/org/eclipse/che/ide/rest/UrlBuilder.java | 4 ++-- .../java/org/eclipse/che/ide/runtime/Assert.java | 4 ++-- .../che/ide/runtime/AssertionFailedException.java | 4 ++-- .../org/eclipse/che/ide/ui/DialogBoxResources.java | 4 ++-- .../eclipse/che/ide/ui/listbox/CustomComboBox.java | 4 ++-- .../eclipse/che/ide/ui/listbox/CustomListBox.java | 4 ++-- .../che/ide/ui/listbox/CustomListBoxResources.java | 4 ++-- .../ide/ui/loaders/DownloadWorkspaceOutputEvent.java | 4 ++-- .../eclipse/che/ide/ui/loaders/LoaderPresenter.java | 4 ++-- .../org/eclipse/che/ide/ui/loaders/PopupLoader.java | 4 ++-- .../che/ide/ui/loaders/PopupLoaderFactory.java | 4 ++-- .../eclipse/che/ide/ui/loaders/PopupLoaderImpl.java | 4 ++-- .../che/ide/ui/loaders/PopupLoaderImpl.ui.xml | 4 ++-- .../che/ide/ui/loaders/PopupLoaderMessages.java | 4 ++-- .../che/ide/ui/loaders/request/LoaderFactory.java | 4 ++-- .../che/ide/ui/loaders/request/MessageLoader.java | 4 ++-- .../ui/loaders/request/MessageLoaderResources.java | 4 ++-- .../eclipse/che/ide/ui/tree/BaseNodeRenderer.java | 4 ++-- .../org/eclipse/che/ide/ui/tree/NodeRenderer.java | 4 ++-- .../org/eclipse/che/ide/ui/tree/SelectionModel.java | 4 ++-- .../ide/ui/zeroclipboard/ClipboardButtonBuilder.java | 4 ++-- .../ui/zeroclipboard/ClipboardButtonBuilderImpl.java | 4 ++-- .../ide/ui/zeroclipboard/ZeroClipboardConstant.java | 4 ++-- .../ide/ui/zeroclipboard/ZeroClipboardResources.java | 4 ++-- .../eclipse/che/ide/util/AnimationController.java | 4 ++-- .../main/java/org/eclipse/che/ide/util/Arrays.java | 4 ++-- .../main/java/org/eclipse/che/ide/util/Base64.java | 4 ++-- .../main/java/org/eclipse/che/ide/util/Bytes.java | 4 ++-- .../java/org/eclipse/che/ide/util/NameUtils.java | 4 ++-- .../main/java/org/eclipse/che/ide/util/UIUtil.java | 4 ++-- .../src/main/java/org/eclipse/che/ide/util/UUID.java | 4 ++-- .../org/eclipse/che/ide/util/input/KeyMapUtil.java | 4 ++-- .../eclipse/che/ide/util/input/MackeyMapUtil.java | 4 ++-- .../eclipse/che/ide/util/loging/BrowserLogger.java | 4 ++-- .../org/eclipse/che/ide/util/loging/DummyLogger.java | 4 ++-- .../java/org/eclipse/che/ide/util/loging/Logger.java | 4 ++-- .../ide/util/storage/BrowserLocalStorageImpl.java | 4 ++-- .../storage/BrowserLocalStorageProviderImpl.java | 4 ++-- .../che/ide/util/storage/DummyLocalStorageImpl.java | 4 ++-- .../util/storage/DummyLocalStorageProviderImpl.java | 4 ++-- .../eclipse/che/ide/util/storage/LocalStorage.java | 4 ++-- .../che/ide/util/storage/LocalStorageProvider.java | 4 ++-- .../che/ide/websocket/AbstractMessageBus.java | 4 ++-- .../eclipse/che/ide/websocket/MachineMessageBus.java | 4 ++-- .../java/org/eclipse/che/ide/websocket/Message.java | 4 ++-- .../eclipse/che/ide/websocket/MessageBuilder.java | 4 ++-- .../org/eclipse/che/ide/websocket/MessageBus.java | 4 ++-- .../eclipse/che/ide/websocket/MessageBusImpl.java | 4 ++-- .../che/ide/websocket/MessageBusProvider.java | 4 ++-- .../org/eclipse/che/ide/websocket/WebSocket.java | 4 ++-- .../che/ide/websocket/WebSocketException.java | 4 ++-- .../websocket/events/ConnectionClosedHandler.java | 4 ++-- .../ide/websocket/events/ConnectionErrorHandler.java | 4 ++-- .../websocket/events/ConnectionOpenedHandler.java | 4 ++-- .../che/ide/websocket/events/MessageHandler.java | 4 ++-- .../ide/websocket/events/MessageReceivedEvent.java | 4 ++-- .../ide/websocket/events/MessageReceivedHandler.java | 4 ++-- .../che/ide/websocket/events/ReplyHandler.java | 4 ++-- .../ide/websocket/events/WebSocketClosedEvent.java | 4 ++-- .../ide/websocket/impl/BasicWebSocketEndpoint.java | 4 ++-- .../impl/BasicWebSocketMessageTransmitter.java | 4 ++-- .../websocket/impl/DelayableWebSocketConnection.java | 4 ++-- .../che/ide/websocket/impl/MessagesReSender.java | 4 ++-- .../eclipse/che/ide/websocket/impl/UrlResolver.java | 4 ++-- .../ide/websocket/impl/WebSocketActionManager.java | 4 ++-- .../che/ide/websocket/impl/WebSocketConnection.java | 4 ++-- .../websocket/impl/WebSocketConnectionManager.java | 4 ++-- .../websocket/impl/WebSocketConnectionSustainer.java | 4 ++-- .../che/ide/websocket/impl/WebSocketDispatcher.java | 4 ++-- .../che/ide/websocket/impl/WebSocketEndpoint.java | 4 ++-- .../che/ide/websocket/impl/WebSocketFactory.java | 4 ++-- .../che/ide/websocket/impl/WebSocketInitializer.java | 4 ++-- .../che/ide/websocket/impl/WebSocketJsoWrapper.java | 4 ++-- .../ide/websocket/impl/WebSocketPropertyManager.java | 4 ++-- .../che/ide/websocket/rest/DtoUnmarshaller.java | 4 ++-- .../org/eclipse/che/ide/websocket/rest/Pair.java | 4 ++-- .../che/ide/websocket/rest/RequestCallback.java | 4 ++-- .../che/ide/websocket/rest/StringUnmarshallerWS.java | 4 ++-- .../che/ide/websocket/rest/SubscriptionHandler.java | 4 ++-- .../che/ide/websocket/rest/Unmarshallable.java | 4 ++-- .../websocket/rest/exceptions/ServerException.java | 4 ++-- .../rest/exceptions/UnauthorizedException.java | 4 ++-- .../java/org/eclipse/che/providers/DynaObject.java | 4 ++-- .../java/org/eclipse/che/providers/DynaProvider.java | 4 ++-- .../java/org/eclipse/che/requirejs/ModuleHolder.java | 4 ++-- .../org/eclipse/che/requirejs/RequireJsLoader.java | 4 ++-- .../java/org/eclipse/che/requirejs/Requirejs.java | 4 ++-- .../org/eclipse/che/requirejs/RequirejsCallback.java | 4 ++-- .../eclipse/che/requirejs/RequirejsErrorHandler.java | 4 ++-- .../org/eclipse/che/requirejs/RequirejsModule.java | 4 ++-- .../che/requirejs/conf/AssocitativeJsObject.java | 4 ++-- .../che/requirejs/conf/BundlesConfigProperty.java | 4 ++-- .../che/requirejs/conf/ConfigConfigProperty.java | 4 ++-- .../org/eclipse/che/requirejs/conf/ConfigItem.java | 4 ++-- .../che/requirejs/conf/MapConfigProperty.java | 4 ++-- .../java/org/eclipse/che/requirejs/conf/MapItem.java | 4 ++-- .../che/requirejs/conf/PathsConfigProperty.java | 4 ++-- .../eclipse/che/requirejs/conf/RequirejsConfig.java | 4 ++-- .../che/requirejs/conf/ShimConfigProperty.java | 4 ++-- .../org/eclipse/che/requirejs/conf/ShimItem.java | 4 ++-- .../eclipse/che/security/oauth/JsOAuthWindow.java | 4 ++-- .../eclipse/che/security/oauth/OAuthCallback.java | 4 ++-- .../org/eclipse/che/security/oauth/OAuthStatus.java | 4 ++-- .../org/eclipse/che/test/GwtReflectionUtils.java | 4 ++-- .../main/resources/org/eclipse/che/Requirejs.gwt.xml | 4 ++-- .../org/eclipse/che/api/promises/Promises.gwt.xml | 4 ++-- .../resources/org/eclipse/che/ide/Commons.gwt.xml | 4 ++-- .../main/resources/org/eclipse/che/ide/Util.gwt.xml | 4 ++-- .../resources/org/eclipse/che/ide/ui/DialogBox.css | 4 ++-- .../main/resources/org/eclipse/che/ide/ui/Popup.css | 4 ++-- .../resources/org/eclipse/che/ide/ui/Tooltip.css | 4 ++-- .../org/eclipse/che/ide/ui/list/SimpleList.css | 4 ++-- .../org/eclipse/che/ide/ui/listbox/ListBox.css | 4 ++-- .../org/eclipse/che/ide/ui/listbox/arrow.svg | 4 ++-- .../ide/ui/loaders/PopupLoaderMessages.properties | 4 ++-- .../che/ide/ui/loaders/initialization/Loader.css | 4 ++-- .../che/ide/ui/loaders/initialization/arrow.svg | 4 ++-- .../che/ide/ui/loaders/initialization/done.svg | 4 ++-- .../che/ide/ui/loaders/initialization/error.svg | 4 ++-- .../ide/ui/loaders/initialization/expansionIcon.svg | 4 ++-- .../che/ide/ui/loaders/initialization/loaderIcon.svg | 4 ++-- .../che/ide/ui/loaders/request/RequestLoader.css | 4 ++-- .../eclipse/che/ide/ui/loaders/request/progress.svg | 4 ++-- .../org/eclipse/che/ide/ui/tree/FileTreeSection.css | 4 ++-- .../resources/org/eclipse/che/ide/ui/tree/Tree.css | 4 ++-- .../org/eclipse/che/ide/ui/tree/collapsedIcon.svg | 4 ++-- .../org/eclipse/che/ide/ui/tree/expandedIcon.svg | 4 ++-- .../che/ide/ui/zeroclipboard/ZeroClipboard.css | 4 ++-- .../zeroclipboard/ZeroClipboardConstant.properties | 4 ++-- .../eclipse/che/ide/ui/zeroclipboard/clipboard.svg | 4 ++-- .../resources/org/eclipse/che/ide/useragents.gwt.xml | 4 ++-- .../org/eclipse/che/providers/Providers.gwt.xml | 4 ++-- .../resources/org/eclipse/che/security/OAuth.gwt.xml | 4 ++-- .../che/ide/jsonrpc/JsonRpcErrorTransmitterTest.java | 4 ++-- .../ide/jsonrpc/WebSocketJsonRpcInitializerTest.java | 4 ++-- .../java/org/eclipse/che/ide/resource/PathTest.java | 4 ++-- .../java/org/eclipse/che/ide/util/ArraysTest.java | 4 ++-- .../java/org/eclipse/che/ide/util/BytesTest.java | 4 ++-- .../java/org/eclipse/che/ide/util/NameUtilsTest.java | 4 ++-- .../java/org/eclipse/che/ide/util/TextUtilsTest.java | 4 ++-- .../test/java/org/eclipse/che/ide/util/UUIDTest.java | 4 ++-- .../websocket/impl/BasicWebSocketEndpointTest.java | 4 ++-- .../impl/BasicWebSocketMessageTransmitterTest.java | 4 ++-- .../che/ide/websocket/impl/MessagesReSenderTest.java | 4 ++-- .../che/ide/websocket/impl/UrlResolverTest.java | 4 ++-- .../impl/WebSocketConnectionManagerTest.java | 4 ++-- .../impl/WebSocketConnectionSustainerTest.java | 4 ++-- .../ide/websocket/impl/WebSocketDispatcherTest.java | 4 ++-- .../ide/websocket/impl/WebSocketInitializerTest.java | 4 ++-- .../websocket/impl/WebSocketPropertyManagerTest.java | 4 ++-- ide/gwt-logger/pom.xml | 4 ++-- .../logger/slf4j/gwtbackend/GWTLoggerFactory.java | 4 ++-- .../slf4j/gwtbackend/GwtLoggerSlf4jBackend.java | 4 ++-- .../org/eclipse/che/ide/logger/slf4j/Logging.gwt.xml | 4 ++-- ide/pom.xml | 4 ++-- plugins/plugin-cpp/che-plugin-cpp-lang-ide/pom.xml | 4 ++-- .../org/eclipse/che/plugin/cpp/ide/CppExtension.java | 4 ++-- .../che/plugin/cpp/ide/CppLocalizationConstant.java | 4 ++-- .../org/eclipse/che/plugin/cpp/ide/CppResources.java | 4 ++-- .../cpp/ide/action/CreateCSourceFileAction.java | 4 ++-- .../cpp/ide/action/CreateCppSourceFileAction.java | 4 ++-- .../cpp/ide/action/CreateHeaderSourceFileAction.java | 4 ++-- .../cpp/ide/action/NewClikeResourceAction.java | 4 ++-- .../che/plugin/cpp/ide/inject/CppGinModule.java | 4 ++-- .../cpp/ide/project/CProjectWizardRegistrar.java | 4 ++-- .../cpp/ide/project/CppProjectWizardRegistrar.java | 4 ++-- .../resources/org/eclipse/che/plugin/cpp/Cpp.gwt.xml | 4 ++-- .../cpp/ide/CppLocalizationConstant.properties | 4 ++-- .../org/eclipse/che/plugin/cpp/ide/svg/c_file.svg | 4 ++-- .../eclipse/che/plugin/cpp/ide/svg/c_header_file.svg | 4 ++-- .../org/eclipse/che/plugin/cpp/ide/svg/category.svg | 4 ++-- .../org/eclipse/che/plugin/cpp/ide/svg/cpp_file.svg | 4 ++-- .../plugin-cpp/che-plugin-cpp-lang-server/pom.xml | 4 ++-- .../che/plugin/cpp/generator/CProjectGenerator.java | 4 ++-- .../plugin/cpp/generator/CppProjectGenerator.java | 4 ++-- .../org/eclipse/che/plugin/cpp/inject/CppModule.java | 4 ++-- .../che/plugin/cpp/projecttype/CProjectType.java | 4 ++-- .../che/plugin/cpp/projecttype/CppProjectType.java | 4 ++-- .../plugin-cpp/che-plugin-cpp-lang-shared/pom.xml | 4 ++-- .../org/eclipse/che/plugin/cpp/shared/Constants.java | 4 ++-- plugins/plugin-cpp/pom.xml | 4 ++-- .../plugin-csharp/che-plugin-csharp-lang-ide/pom.xml | 4 ++-- .../che/plugin/csharp/ide/CSharpExtension.java | 4 ++-- .../csharp/ide/CSharpLocalizationConstant.java | 4 ++-- .../che/plugin/csharp/ide/CSharpResources.java | 4 ++-- .../ide/action/CreateCSharpSourceFileAction.java | 4 ++-- .../ide/action/NewCSharplikeResourceAction.java | 4 ++-- .../plugin/csharp/ide/inject/CSharpGinModule.java | 4 ++-- .../ide/project/CSharpProjectWizardRegistrar.java | 4 ++-- .../org/eclipse/che/plugin/csharp/CSharp.gwt.xml | 4 ++-- .../eclipse/che/plugin/csharp/ide/svg/category.svg | 4 ++-- .../che/plugin/csharp/ide/svg/csharp_file.svg | 4 ++-- .../che-plugin-csharp-lang-server/pom.xml | 4 ++-- .../che/plugin/csharp/inject/CSharpModule.java | 4 ++-- .../languageserver/CSharpLanguageServerLauncher.java | 4 ++-- .../plugin/csharp/projecttype/CSharpProjectType.java | 4 ++-- .../projecttype/CreateNetCoreProjectHandler.java | 4 ++-- .../che-plugin-csharp-lang-shared/pom.xml | 4 ++-- .../eclipse/che/plugin/csharp/shared/Constants.java | 4 ++-- plugins/plugin-csharp/pom.xml | 4 ++-- .../che-plugin-ext-dashboard/pom.xml | 4 ++-- .../ide/ext/dashboard/client/DashboardExtension.java | 4 ++-- .../client/DashboardLocalizationConstant.java | 4 ++-- .../ide/ext/dashboard/client/DashboardResources.java | 4 ++-- .../dashboard/client/RedirectToDashboardAction.java | 4 ++-- .../eclipse/che/ide/ext/dashboard/Dashboard.gwt.xml | 4 ++-- .../che/ide/ext/dashboard/client/Dashboard.css | 4 ++-- .../client/DashboardLocalizationConstant.properties | 4 ++-- plugins/plugin-dashboard/pom.xml | 4 ++-- .../plugin-debugger/che-plugin-debugger-ide/pom.xml | 4 ++-- .../che/plugin/debugger/ide/DebuggerExtension.java | 4 ++-- .../debugger/ide/DebuggerLocalizationConstant.java | 4 ++-- .../che/plugin/debugger/ide/DebuggerResources.java | 4 ++-- .../ide/actions/ChangeVariableValueAction.java | 4 ++-- .../che/plugin/debugger/ide/actions/DebugAction.java | 4 ++-- .../ide/actions/DeleteAllBreakpointsAction.java | 4 ++-- .../ide/actions/DisconnectDebuggerAction.java | 4 ++-- .../ide/actions/EditConfigurationsAction.java | 4 ++-- .../ide/actions/EvaluateExpressionAction.java | 4 ++-- .../debugger/ide/actions/ResumeExecutionAction.java | 4 ++-- .../ide/actions/ShowHideDebuggerPanelAction.java | 4 ++-- .../plugin/debugger/ide/actions/StepIntoAction.java | 4 ++-- .../plugin/debugger/ide/actions/StepOutAction.java | 4 ++-- .../plugin/debugger/ide/actions/StepOverAction.java | 4 ++-- .../plugin/debugger/ide/actions/SuspendAction.java | 4 ++-- .../ide/configuration/DebugConfigurationAction.java | 4 ++-- .../DebugConfigurationActionFactory.java | 4 ++-- .../DebugConfigurationTypeRegistry.java | 4 ++-- .../ide/configuration/DebugConfigurationsGroup.java | 4 ++-- .../DebugConfigurationsManagerImpl.java | 4 ++-- .../configuration/EditConfigurationsResources.java | 4 ++-- .../EditDebugConfigurationsPresenter.java | 4 ++-- .../configuration/EditDebugConfigurationsView.java | 4 ++-- .../EditDebugConfigurationsViewImpl.java | 4 ++-- .../EditDebugConfigurationsViewImpl.ui.xml | 4 ++-- .../ide/configuration/dto/DebugConfigurationDto.java | 4 ++-- .../plugin/debugger/ide/debug/AbstractDebugger.java | 4 ++-- .../plugin/debugger/ide/debug/ActiveFileHandler.java | 4 ++-- .../debugger/ide/debug/BasicActiveFileHandler.java | 4 ++-- .../ide/debug/DebuggerEventUnmarshaller.java | 4 ++-- .../plugin/debugger/ide/debug/DebuggerPresenter.java | 4 ++-- .../plugin/debugger/ide/debug/DebuggerToolbar.java | 4 ++-- .../che/plugin/debugger/ide/debug/DebuggerView.java | 4 ++-- .../plugin/debugger/ide/debug/DebuggerViewImpl.java | 4 ++-- .../debugger/ide/debug/DebuggerViewImpl.ui.xml | 4 ++-- .../debugger/ide/debug/VariableNodeDataAdapter.java | 4 ++-- .../debugger/ide/debug/VariableTreeNodeRenderer.java | 4 ++-- .../ide/debug/changevalue/ChangeValuePresenter.java | 4 ++-- .../ide/debug/changevalue/ChangeValueView.java | 4 ++-- .../ide/debug/changevalue/ChangeValueViewImpl.java | 4 ++-- .../ide/debug/changevalue/ChangeValueViewImpl.ui.xml | 4 ++-- .../expression/EvaluateExpressionPresenter.java | 4 ++-- .../ide/debug/expression/EvaluateExpressionView.java | 4 ++-- .../debug/expression/EvaluateExpressionViewImpl.java | 4 ++-- .../expression/EvaluateExpressionViewImpl.ui.xml | 4 ++-- .../che/plugin/debugger/ide/fqn/FqnResolver.java | 4 ++-- .../plugin/debugger/ide/fqn/FqnResolverFactory.java | 4 ++-- .../debugger/ide/fqn/FqnResolverObservable.java | 4 ++-- .../plugin/debugger/ide/fqn/FqnResolverObserver.java | 4 ++-- .../debugger/ide/inject/DebuggerGinModule.java | 4 ++-- .../org/eclipse/che/plugin/debugger/Debugger.gwt.xml | 4 ++-- .../ide/DebuggerLocalizationConstant.properties | 4 ++-- .../eclipse/che/plugin/debugger/ide/breakpoint.svg | 4 ++-- .../ide/configuration/add-configuration-button.svg | 4 ++-- .../configuration/duplicate-configuration-button.svg | 4 ++-- .../ide/configuration/editConfigurations.css | 4 ++-- .../plugin/debugger/ide/configuration/find-icon.svg | 4 ++-- .../configuration/remove-configuration-button.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/connect.svg | 4 ++-- .../eclipse/che/plugin/debugger/ide/debug-icon.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/debug.svg | 4 ++-- .../eclipse/che/plugin/debugger/ide/debug/Debug.css | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/debugger.css | 4 ++-- .../eclipse/che/plugin/debugger/ide/disconnect.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/edit.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/evaluate.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/remove.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/resume.svg | 4 ++-- .../eclipse/che/plugin/debugger/ide/separator.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/stepinto.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/stepout.svg | 4 ++-- .../org/eclipse/che/plugin/debugger/ide/stepover.svg | 4 ++-- .../eclipse/che/plugin/debugger/ide/BaseTest.java | 4 ++-- .../plugin/debugger/ide/ChangeVariableValueTest.java | 4 ++-- .../plugin/debugger/ide/EvaluateExpressionTest.java | 4 ++-- .../plugin/debugger/ide/actions/DebugActionTest.java | 4 ++-- .../configuration/DebugConfigurationActionTest.java | 4 ++-- .../configuration/DebugConfigurationsGroupTest.java | 4 ++-- .../DebugConfigurationsManagerImplTest.java | 4 ++-- .../debugger/ide/debug/DebuggerPresenterTest.java | 4 ++-- .../che/plugin/debugger/ide/debug/DebuggerTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- plugins/plugin-debugger/pom.xml | 4 ++-- .../plugin-docker/che-plugin-docker-client/pom.xml | 4 ++-- .../eclipse/che/plugin/docker/client/CLibrary.java | 4 ++-- .../che/plugin/docker/client/CLibraryFactory.java | 4 ++-- .../che/plugin/docker/client/CgroupOOMDetector.java | 4 ++-- .../client/DockerApiVersionPathPrefixProvider.java | 4 ++-- .../che/plugin/docker/client/DockerCertificates.java | 4 ++-- .../che/plugin/docker/client/DockerConnector.java | 4 ++-- .../docker/client/DockerConnectorConfiguration.java | 4 ++-- .../docker/client/DockerConnectorProvider.java | 4 ++-- .../plugin/docker/client/DockerFileException.java | 4 ++-- .../che/plugin/docker/client/DockerImage.java | 4 ++-- .../che/plugin/docker/client/DockerOOMDetector.java | 4 ++-- .../docker/client/DockerRegistryAuthResolver.java | 4 ++-- .../plugin/docker/client/DockerRegistryChecker.java | 4 ++-- .../client/DockerRegistryDynamicAuthResolver.java | 4 ++-- .../eclipse/che/plugin/docker/client/Dockerfile.java | 4 ++-- .../che/plugin/docker/client/DockerfileParser.java | 4 ++-- .../org/eclipse/che/plugin/docker/client/Exec.java | 4 ++-- .../che/plugin/docker/client/InitialAuthConfig.java | 4 ++-- .../che/plugin/docker/client/JsonMessageReader.java | 4 ++-- .../eclipse/che/plugin/docker/client/LogMessage.java | 4 ++-- .../plugin/docker/client/LogMessageFormatter.java | 4 ++-- .../che/plugin/docker/client/LogMessagePumper.java | 4 ++-- .../che/plugin/docker/client/MessageFormatter.java | 4 ++-- .../che/plugin/docker/client/MessageProcessor.java | 4 ++-- .../che/plugin/docker/client/MessagePumper.java | 4 ++-- .../NoOpDockerRegistryDynamicAuthResolverImpl.java | 4 ++-- .../docker/client/ProgressLineFormatterImpl.java | 4 ++-- .../che/plugin/docker/client/ProgressMonitor.java | 4 ++-- ...serSpecificDockerRegistryCredentialsProvider.java | 4 ++-- .../docker/client/connection/ChunkedInputStream.java | 4 ++-- .../connection/CloseConnectionInputStream.java | 4 ++-- .../docker/client/connection/DockerConnection.java | 4 ++-- .../client/connection/DockerConnectionFactory.java | 4 ++-- .../docker/client/connection/DockerResponse.java | 4 ++-- .../docker/client/connection/LimitedInputStream.java | 4 ++-- .../docker/client/connection/TcpConnection.java | 4 ++-- .../docker/client/connection/TcpDockerResponse.java | 4 ++-- .../client/connection/UnixSocketConnection.java | 4 ++-- .../client/connection/UnixSocketDockerResponse.java | 4 ++-- .../client/connection/UnixSocketInputStream.java | 4 ++-- .../client/connection/UnixSocketOutputStream.java | 4 ++-- .../che/plugin/docker/client/dto/AuthConfig.java | 4 ++-- .../che/plugin/docker/client/dto/AuthConfigs.java | 4 ++-- .../client/exception/ContainerNotFoundException.java | 4 ++-- .../docker/client/exception/DockerException.java | 4 ++-- .../client/exception/ExecNotFoundException.java | 4 ++-- .../client/exception/ImageNotFoundException.java | 4 ++-- .../client/exception/NetworkNotFoundException.java | 4 ++-- .../docker/client/helper/DefaultNetworkFinder.java | 4 ++-- .../plugin/docker/client/helper/NetworkFinder.java | 4 ++-- .../eclipse/che/plugin/docker/client/json/Actor.java | 4 ++-- .../docker/client/json/ContainerCommitted.java | 4 ++-- .../plugin/docker/client/json/ContainerConfig.java | 4 ++-- .../plugin/docker/client/json/ContainerCreated.java | 4 ++-- .../docker/client/json/ContainerExitStatus.java | 4 ++-- .../che/plugin/docker/client/json/ContainerInfo.java | 4 ++-- .../docker/client/json/ContainerListEntry.java | 4 ++-- .../che/plugin/docker/client/json/ContainerPort.java | 4 ++-- .../docker/client/json/ContainerProcesses.java | 4 ++-- .../plugin/docker/client/json/ContainerResource.java | 4 ++-- .../plugin/docker/client/json/ContainerState.java | 4 ++-- .../eclipse/che/plugin/docker/client/json/Event.java | 4 ++-- .../che/plugin/docker/client/json/ExecConfig.java | 4 ++-- .../che/plugin/docker/client/json/ExecCreated.java | 4 ++-- .../che/plugin/docker/client/json/ExecInfo.java | 4 ++-- .../che/plugin/docker/client/json/ExecStart.java | 4 ++-- .../che/plugin/docker/client/json/ExposedPort.java | 4 ++-- .../che/plugin/docker/client/json/Filters.java | 4 ++-- .../che/plugin/docker/client/json/HostConfig.java | 4 ++-- .../eclipse/che/plugin/docker/client/json/Image.java | 4 ++-- .../che/plugin/docker/client/json/ImageConfig.java | 4 ++-- .../che/plugin/docker/client/json/ImageInfo.java | 4 ++-- .../che/plugin/docker/client/json/LogConfig.java | 4 ++-- .../che/plugin/docker/client/json/LxcConfParam.java | 4 ++-- .../plugin/docker/client/json/NetworkCreated.java | 4 ++-- .../plugin/docker/client/json/NetworkSettings.java | 4 ++-- .../eclipse/che/plugin/docker/client/json/Node.java | 4 ++-- .../che/plugin/docker/client/json/PortBinding.java | 4 ++-- .../che/plugin/docker/client/json/ProcessConfig.java | 4 ++-- .../plugin/docker/client/json/ProgressDetail.java | 4 ++-- .../plugin/docker/client/json/ProgressStatus.java | 4 ++-- .../che/plugin/docker/client/json/RestartPolicy.java | 4 ++-- .../che/plugin/docker/client/json/SystemInfo.java | 4 ++-- .../che/plugin/docker/client/json/Ulimit.java | 4 ++-- .../che/plugin/docker/client/json/Version.java | 4 ++-- .../che/plugin/docker/client/json/Volume.java | 4 ++-- .../client/json/container/NetworkingConfig.java | 4 ++-- .../docker/client/json/network/ConnectContainer.java | 4 ++-- .../client/json/network/ContainerInNetwork.java | 4 ++-- .../client/json/network/DisconnectContainer.java | 4 ++-- .../docker/client/json/network/EndpointConfig.java | 4 ++-- .../che/plugin/docker/client/json/network/Ipam.java | 4 ++-- .../docker/client/json/network/IpamConfig.java | 4 ++-- .../plugin/docker/client/json/network/Network.java | 4 ++-- .../docker/client/json/network/NewIpamConfig.java | 4 ++-- .../docker/client/json/network/NewNetwork.java | 4 ++-- .../docker/client/params/AttachContainerParams.java | 4 ++-- .../docker/client/params/BuildImageParams.java | 4 ++-- .../plugin/docker/client/params/CommitParams.java | 4 ++-- .../docker/client/params/CreateContainerParams.java | 4 ++-- .../docker/client/params/CreateExecParams.java | 4 ++-- .../docker/client/params/GetContainerLogsParams.java | 4 ++-- .../plugin/docker/client/params/GetEventsParams.java | 4 ++-- .../docker/client/params/GetExecInfoParams.java | 4 ++-- .../docker/client/params/GetResourceParams.java | 4 ++-- .../docker/client/params/InspectContainerParams.java | 4 ++-- .../docker/client/params/InspectImageParams.java | 4 ++-- .../docker/client/params/KillContainerParams.java | 4 ++-- .../docker/client/params/ListContainersParams.java | 4 ++-- .../docker/client/params/ListImagesParams.java | 4 ++-- .../che/plugin/docker/client/params/ParamsUtils.java | 4 ++-- .../che/plugin/docker/client/params/PullParams.java | 4 ++-- .../che/plugin/docker/client/params/PushParams.java | 4 ++-- .../docker/client/params/PutResourceParams.java | 4 ++-- .../docker/client/params/RemoveContainerParams.java | 4 ++-- .../docker/client/params/RemoveImageParams.java | 4 ++-- .../docker/client/params/StartContainerParams.java | 4 ++-- .../plugin/docker/client/params/StartExecParams.java | 4 ++-- .../docker/client/params/StopContainerParams.java | 4 ++-- .../che/plugin/docker/client/params/TagParams.java | 4 ++-- .../che/plugin/docker/client/params/TopParams.java | 4 ++-- .../docker/client/params/WaitContainerParams.java | 4 ++-- .../network/ConnectContainerToNetworkParams.java | 4 ++-- .../client/params/network/CreateNetworkParams.java | 4 ++-- .../DisconnectContainerFromNetworkParams.java | 4 ++-- .../client/params/network/GetNetworksParams.java | 4 ++-- .../client/params/network/InspectNetworkParams.java | 4 ++-- .../client/params/network/RemoveNetworkParams.java | 4 ++-- .../docker/client/parser/DockerImageIdentifier.java | 4 ++-- .../client/parser/DockerImageIdentifierParser.java | 4 ++-- .../eclipse/che/plugin/docker/client/dto/Dto.gwt.xml | 4 ++-- .../DockerApiVersionPathPrefixProviderTest.java | 4 ++-- .../client/DockerConnectorConfigurationTest.java | 4 ++-- .../plugin/docker/client/DockerConnectorTest.java | 4 ++-- .../client/DockerRegistryAuthResolverTest.java | 4 ++-- .../plugin/docker/client/DockerfileParserTest.java | 4 ++-- .../plugin/docker/client/InitialAuthConfigTest.java | 4 ++-- .../plugin/docker/client/JsonMessageReaderTest.java | 4 ++-- .../plugin/docker/client/LogMessagePumperTest.java | 4 ++-- .../docker/client/SystemInfoDriverStatusTest.java | 4 ++-- ...pecificDockerRegistryCredentialsProviderTest.java | 4 ++-- .../helper/DefaultNetworkFinderHelperTest.java | 4 ++-- .../client/params/AttachContainerParamsTest.java | 4 ++-- .../docker/client/params/BuildImageParamsTest.java | 4 ++-- .../docker/client/params/CommitParamsTest.java | 4 ++-- .../client/params/CreateContainerParamsTest.java | 4 ++-- .../docker/client/params/CreateExecParamsTest.java | 4 ++-- .../client/params/GetContainerLogsParamsTest.java | 4 ++-- .../docker/client/params/GetEventsParamsTest.java | 4 ++-- .../docker/client/params/GetExecInfoParamsTest.java | 4 ++-- .../docker/client/params/GetResourceParamsTest.java | 4 ++-- .../client/params/InspectContainerParamsTest.java | 4 ++-- .../docker/client/params/InspectImageParamsTest.java | 4 ++-- .../client/params/KillContainerParamsTest.java | 4 ++-- .../client/params/ListContainersParamsTest.java | 4 ++-- .../docker/client/params/ListImagesParamsTest.java | 4 ++-- .../plugin/docker/client/params/PullParamsTest.java | 4 ++-- .../plugin/docker/client/params/PushParamsTest.java | 4 ++-- .../docker/client/params/PutResourceParamsTest.java | 4 ++-- .../client/params/RemoveContainerParamsTest.java | 4 ++-- .../docker/client/params/RemoveImageParamsTest.java | 4 ++-- .../client/params/StartContainerParamsTest.java | 4 ++-- .../docker/client/params/StartExecParamsTest.java | 4 ++-- .../client/params/StopContainerParamsTest.java | 4 ++-- .../plugin/docker/client/params/TagParamsTest.java | 4 ++-- .../plugin/docker/client/params/TopParamsTest.java | 4 ++-- .../client/params/WaitContainerParamsTest.java | 4 ++-- .../parser/DockerImageIdentifierParserTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../plugin-docker/che-plugin-docker-compose/pom.xml | 4 ++-- .../che/plugin/docker/compose/BuildContext.java | 4 ++-- .../plugin/docker/compose/ComposeEnvironment.java | 4 ++-- .../che/plugin/docker/compose/ComposeModule.java | 4 ++-- .../plugin/docker/compose/ComposeServiceImpl.java | 4 ++-- .../compose/yaml/ComposeEnvironmentParser.java | 4 ++-- .../yaml/deserializer/CommandDeserializer.java | 4 ++-- .../yaml/deserializer/EnvironmentDeserializer.java | 4 ++-- .../plugin/docker/compose/yaml/BuildContextTest.java | 4 ++-- .../docker/compose/yaml/CommandDeserializerTest.java | 4 ++-- .../compose/yaml/ComposeEnvironmentParserTest.java | 4 ++-- .../compose/yaml/EnvironmentDeserializerTest.java | 4 ++-- .../plugin-docker/che-plugin-docker-machine/pom.xml | 4 ++-- .../machine/ApiEndpointEnvVariableProvider.java | 4 ++-- .../docker/machine/BaseServerEvaluationStrategy.java | 4 ++-- .../machine/CheInContainerNetworkProvider.java | 4 ++-- .../machine/CustomServerEvaluationStrategy.java | 4 ++-- .../docker/machine/DockerContainerNameGenerator.java | 4 ++-- .../DockerExtraHostsFromPropertyProvider.java | 4 ++-- .../che/plugin/docker/machine/DockerInstance.java | 4 ++-- .../machine/DockerInstanceProcessesCleaner.java | 4 ++-- .../docker/machine/DockerInstanceProvider.java | 4 ++-- .../docker/machine/DockerInstanceStopDetector.java | 4 ++-- .../plugin/docker/machine/DockerMachineFactory.java | 4 ++-- .../plugin/docker/machine/DockerMachineModule.java | 4 ++-- .../plugin/docker/machine/DockerMachineSource.java | 4 ++-- .../che/plugin/docker/machine/DockerProcess.java | 4 ++-- .../che/plugin/docker/machine/LogMessagePrinter.java | 4 ++-- .../plugin/docker/machine/MachineProviderImpl.java | 4 ++-- .../che/plugin/docker/machine/WindowsHostUtils.java | 4 ++-- .../cleaner/DockerAbandonedResourcesCleaner.java | 4 ++-- .../machine/cleaner/LocalWorkspaceFilesCleaner.java | 4 ++-- ...paceFilesAfterRemoveWorkspaceEventSubscriber.java | 4 ++-- .../docker/machine/dns/DnsResolversModule.java | 4 ++-- .../docker/machine/dns/DnsResolversProvider.java | 4 ++-- .../docker/machine/ext/DockerExtServerModule.java | 4 ++-- .../machine/ext/DockerMachineExtServerChecker.java | 4 ++-- .../machine/ext/DockerMachineTerminalChecker.java | 4 ++-- .../ext/provider/DockerExtConfBindingProvider.java | 4 ++-- .../ext/provider/ExecAgentVolumeProvider.java | 4 ++-- .../machine/ext/provider/ExtraVolumeProvider.java | 4 ++-- .../ext/provider/JavaOptsEnvVariableProvider.java | 4 ++-- .../provider/ProjectsRootEnvVariableProvider.java | 4 ++-- .../machine/ext/provider/TerminalVolumeProvider.java | 4 ++-- .../machine/ext/provider/WsAgentVolumeProvider.java | 4 ++-- .../local/LocalCheInfrastructureProvisioner.java | 4 ++-- .../docker/machine/local/LocalDockerModule.java | 4 ++-- .../plugin/docker/machine/local/LocalDockerNode.java | 4 ++-- .../provider/LocalWorkspaceFolderPathProvider.java | 4 ++-- .../local/provider/CheDockerExtraHostProvider.java | 4 ++-- .../provider/DockerApiHostEnvVariableProvider.java | 4 ++-- .../che/plugin/docker/machine/node/DockerNode.java | 4 ++-- .../machine/node/WorkspaceFolderPathProvider.java | 4 ++-- .../machine/parser/DockerEnvironmentParser.java | 4 ++-- .../machine/parser/DockerImageEnvironmentParser.java | 4 ++-- .../machine/parser/DockerfileEnvironmentParser.java | 4 ++-- .../machine/proxy/DockerBuildArgsProvider.java | 4 ++-- .../docker/machine/proxy/DockerProxyModule.java | 4 ++-- .../machine/proxy/HttpProxyEnvVariableProvider.java | 4 ++-- .../machine/proxy/HttpsProxyEnvVariableProvider.java | 4 ++-- .../machine/proxy/NoProxyEnvVariableProvider.java | 4 ++-- .../machine/CustomServerEvaluationStrategyTest.java | 4 ++-- .../machine/DockerContainerNameGeneratorTest.java | 4 ++-- .../plugin/docker/machine/DockerInstanceTest.java | 4 ++-- .../machine/DockerMachineExtServerCheckerTest.java | 4 ++-- .../docker/machine/DockerMachineSourceTest.java | 4 ++-- .../machine/DockerMachineTerminalCheckerTest.java | 4 ++-- .../docker/machine/MachineProviderImplTest.java | 4 ++-- .../cleaner/DockerAbandonedResourcesCleanerTest.java | 4 ++-- ...FilesAfterRemoveWorkspaceEventSubscriberTest.java | 4 ++-- .../LocalWorkspaceFolderPathProviderTest.java | 4 ++-- .../parser/DockerImageEnvironmentParserTest.java | 4 ++-- .../parser/DockerfileEnvironmentParserTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- plugins/plugin-docker/pom.xml | 4 ++-- plugins/plugin-gdb/che-plugin-gdb-ide/pom.xml | 4 ++-- .../org/eclipse/che/plugin/gdb/ide/GdbDebugger.java | 4 ++-- .../org/eclipse/che/plugin/gdb/ide/GdbExtension.java | 4 ++-- .../org/eclipse/che/plugin/gdb/ide/GdbGinModule.java | 4 ++-- .../che/plugin/gdb/ide/GdbLocalizationConstant.java | 4 ++-- .../org/eclipse/che/plugin/gdb/ide/GdbResources.java | 4 ++-- .../configuration/GdbConfigurationPagePresenter.java | 4 ++-- .../ide/configuration/GdbConfigurationPageView.java | 4 ++-- .../configuration/GdbConfigurationPageViewImpl.java | 4 ++-- .../GdbConfigurationPageViewImpl.ui.xml | 4 ++-- .../gdb/ide/configuration/GdbConfigurationType.java | 4 ++-- .../resources/org/eclipse/che/plugin/gdb/Gdb.gwt.xml | 4 ++-- .../gdb/ide/GdbLocalizationConstant.properties | 4 ++-- .../gdb/ide/configuration/gdb-configuration-type.svg | 4 ++-- .../GdbConfigurationPagePresenterTest.java | 4 ++-- .../ide/configuration/GdbConfigurationTypeTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- plugins/plugin-gdb/che-plugin-gdb-server/pom.xml | 4 ++-- .../java/org/eclipse/che/plugin/gdb/server/Gdb.java | 4 ++-- .../eclipse/che/plugin/gdb/server/GdbDebugger.java | 4 ++-- .../che/plugin/gdb/server/GdbDebuggerFactory.java | 4 ++-- .../che/plugin/gdb/server/GdbDebuggerModule.java | 4 ++-- .../eclipse/che/plugin/gdb/server/GdbProcess.java | 4 ++-- .../plugin/gdb/server/exception/GdbException.java | 4 ++-- .../gdb/server/exception/GdbParseException.java | 4 ++-- .../gdb/server/exception/GdbTerminatedException.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbBacktrace.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbBreak.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbClear.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbContinue.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbDelete.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbDirectory.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbFile.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbInfoArgs.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbInfoBreak.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbInfoLine.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbInfoLocals.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbInfoProgram.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbOutput.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbPType.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbPrint.java | 4 ++-- .../eclipse/che/plugin/gdb/server/parser/GdbRun.java | 4 ++-- .../plugin/gdb/server/parser/GdbTargetRemote.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbVersion.java | 4 ++-- .../che/plugin/gdb/server/parser/ProcessInfo.java | 4 ++-- .../che/plugin/gdb/server/GdbDebuggerTest.java | 4 ++-- .../org/eclipse/che/plugin/gdb/server/GdbServer.java | 4 ++-- .../org/eclipse/che/plugin/gdb/server/GdbTest.java | 4 ++-- .../plugin/gdb/server/parser/GdbBacktraceTest.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbBreakTest.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbClearTest.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbDeleteTest.java | 4 ++-- .../plugin/gdb/server/parser/GdbDirectoryTest.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbFileTest.java | 4 ++-- .../plugin/gdb/server/parser/GdbInfoArgsTest.java | 4 ++-- .../plugin/gdb/server/parser/GdbInfoBreakTest.java | 4 ++-- .../plugin/gdb/server/parser/GdbInfoLineTest.java | 4 ++-- .../plugin/gdb/server/parser/GdbInfoLocalsTest.java | 4 ++-- .../plugin/gdb/server/parser/GdbInfoProgramTest.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbPTypeTest.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbPrintTest.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbRunTest.java | 4 ++-- .../gdb/server/parser/GdbTargetRemoteTest.java | 4 ++-- .../che/plugin/gdb/server/parser/GdbVersionTest.java | 4 ++-- .../plugin/gdb/server/parser/ProcessInfoTest.java | 4 ++-- plugins/plugin-gdb/pom.xml | 4 ++-- plugins/plugin-git/che-plugin-git-ext-git/pom.xml | 4 ++-- .../che/ide/ext/git/client/BranchFilterByRemote.java | 4 ++-- .../che/ide/ext/git/client/BranchSearcher.java | 4 ++-- .../che/ide/ext/git/client/DateTimeFormatter.java | 4 ++-- .../client/GitCheckoutStatusNotificationHandler.java | 6 +++--- .../eclipse/che/ide/ext/git/client/GitExtension.java | 4 ++-- .../ide/ext/git/client/GitLocalizationConstant.java | 4 ++-- .../eclipse/che/ide/ext/git/client/GitResources.java | 4 ++-- .../org/eclipse/che/ide/ext/git/client/GitUtil.java | 4 ++-- .../ide/ext/git/client/action/AddToIndexAction.java | 4 ++-- .../git/client/action/CheckoutReferenceAction.java | 4 ++-- .../che/ide/ext/git/client/action/CommitAction.java | 4 ++-- .../git/client/action/CompareWithBranchAction.java | 4 ++-- .../git/client/action/CompareWithLatestAction.java | 4 ++-- .../git/client/action/CompareWithRevisionAction.java | 4 ++-- .../git/client/action/DeleteRepositoryAction.java | 4 ++-- .../che/ide/ext/git/client/action/FetchAction.java | 4 ++-- .../che/ide/ext/git/client/action/GitAction.java | 4 ++-- .../che/ide/ext/git/client/action/HistoryAction.java | 4 ++-- .../ext/git/client/action/InitRepositoryAction.java | 4 ++-- .../che/ide/ext/git/client/action/PullAction.java | 4 ++-- .../che/ide/ext/git/client/action/PushAction.java | 4 ++-- .../ext/git/client/action/RemoveFromIndexAction.java | 4 ++-- .../ide/ext/git/client/action/ResetFilesAction.java | 4 ++-- .../ext/git/client/action/ResetToCommitAction.java | 4 ++-- .../ext/git/client/action/ShowBranchesAction.java | 4 ++-- .../ide/ext/git/client/action/ShowMergeAction.java | 4 ++-- .../ide/ext/git/client/action/ShowRemoteAction.java | 4 ++-- .../ide/ext/git/client/action/ShowStatusAction.java | 4 ++-- .../ide/ext/git/client/add/AddToIndexPresenter.java | 4 ++-- .../che/ide/ext/git/client/add/AddToIndexView.java | 4 ++-- .../ide/ext/git/client/add/AddToIndexViewImpl.java | 4 ++-- .../ide/ext/git/client/add/AddToIndexViewImpl.ui.xml | 4 ++-- .../ide/ext/git/client/branch/BranchPresenter.java | 4 ++-- .../che/ide/ext/git/client/branch/BranchView.java | 4 ++-- .../ide/ext/git/client/branch/BranchViewImpl.java | 4 ++-- .../ide/ext/git/client/branch/BranchViewImpl.ui.xml | 4 ++-- .../client/checkout/CheckoutReferencePresenter.java | 4 ++-- .../git/client/checkout/CheckoutReferenceView.java | 4 ++-- .../client/checkout/CheckoutReferenceViewImpl.java | 4 ++-- .../client/checkout/CheckoutReferenceViewImpl.ui.xml | 4 ++-- .../ide/ext/git/client/commit/CommitPresenter.java | 4 ++-- .../che/ide/ext/git/client/commit/CommitView.java | 4 ++-- .../ide/ext/git/client/commit/CommitViewImpl.java | 4 ++-- .../ide/ext/git/client/commit/CommitViewImpl.ui.xml | 4 ++-- .../che/ide/ext/git/client/compare/AlteredFiles.java | 4 ++-- .../ide/ext/git/client/compare/ComparePresenter.java | 4 ++-- .../che/ide/ext/git/client/compare/CompareView.java | 4 ++-- .../ide/ext/git/client/compare/CompareViewImpl.java | 4 ++-- .../ext/git/client/compare/CompareViewImpl.ui.xml | 4 ++-- .../che/ide/ext/git/client/compare/FileStatus.java | 4 ++-- .../compare/branchlist/BranchListPresenter.java | 4 ++-- .../client/compare/branchlist/BranchListView.java | 4 ++-- .../compare/branchlist/BranchListViewImpl.java | 4 ++-- .../compare/branchlist/BranchListViewImpl.ui.xml | 4 ++-- .../compare/changeslist/ChangesListPresenter.java | 4 ++-- .../client/compare/changeslist/ChangesListView.java | 4 ++-- .../compare/changeslist/ChangesListViewImpl.java | 4 ++-- .../client/compare/changespanel/ChangedFileNode.java | 4 ++-- .../compare/changespanel/ChangedFolderNode.java | 4 ++-- .../compare/changespanel/ChangesPanelPresenter.java | 4 ++-- .../compare/changespanel/ChangesPanelView.java | 4 ++-- .../compare/changespanel/ChangesPanelViewImpl.java | 4 ++-- .../compare/changespanel/ChangesPanelViewImpl.ui.xml | 4 ++-- .../git/client/compare/changespanel/ViewMode.java | 4 ++-- .../compare/revisionslist/RevisionListPresenter.java | 4 ++-- .../compare/revisionslist/RevisionListView.java | 4 ++-- .../compare/revisionslist/RevisionListViewImpl.java | 4 ++-- .../revisionslist/RevisionListViewImpl.ui.xml | 4 ++-- .../git/client/delete/DeleteRepositoryPresenter.java | 4 ++-- .../che/ide/ext/git/client/fetch/FetchPresenter.java | 4 ++-- .../che/ide/ext/git/client/fetch/FetchView.java | 4 ++-- .../che/ide/ext/git/client/fetch/FetchViewImpl.java | 4 ++-- .../ide/ext/git/client/fetch/FetchViewImpl.ui.xml | 4 ++-- .../ide/ext/git/client/history/HistoryPresenter.java | 4 ++-- .../che/ide/ext/git/client/history/HistoryView.java | 4 ++-- .../ide/ext/git/client/history/HistoryViewImpl.java | 4 ++-- .../ext/git/client/history/HistoryViewImpl.ui.xml | 4 ++-- .../client/importer/GitImportWizardRegistrar.java | 4 ++-- .../importer/page/GitImporterPagePresenter.java | 4 ++-- .../client/importer/page/GitImporterPageView.java | 4 ++-- .../importer/page/GitImporterPageViewImpl.java | 4 ++-- .../importer/page/GitImporterPageViewImpl.ui.xml | 4 ++-- .../ext/git/client/init/InitRepositoryPresenter.java | 4 ++-- .../che/ide/ext/git/client/inject/GitGinModule.java | 4 ++-- .../che/ide/ext/git/client/merge/MergePresenter.java | 4 ++-- .../che/ide/ext/git/client/merge/MergeView.java | 4 ++-- .../che/ide/ext/git/client/merge/MergeViewImpl.java | 4 ++-- .../ide/ext/git/client/merge/MergeViewImpl.ui.xml | 4 ++-- .../che/ide/ext/git/client/merge/Reference.java | 4 ++-- .../client/merge/ReferenceTreeNodeDataAdapter.java | 4 ++-- .../git/client/merge/ReferenceTreeNodeRenderer.java | 4 ++-- .../git/client/outputconsole/GitOutputConsole.java | 4 ++-- .../outputconsole/GitOutputConsoleFactory.java | 4 ++-- .../outputconsole/GitOutputConsolePresenter.java | 4 ++-- .../git/client/outputconsole/GitOutputPartView.java | 4 ++-- .../client/outputconsole/GitOutputPartViewImpl.java | 4 ++-- .../outputconsole/GitOutputPartViewImpl.ui.xml | 4 ++-- .../preference/CommitterPreferencePresenter.java | 4 ++-- .../client/preference/CommitterPreferenceView.java | 4 ++-- .../preference/CommitterPreferenceViewImpl.java | 4 ++-- .../preference/CommitterPreferenceViewImpl.ui.xml | 4 ++-- .../che/ide/ext/git/client/pull/PullPresenter.java | 4 ++-- .../che/ide/ext/git/client/pull/PullView.java | 4 ++-- .../che/ide/ext/git/client/pull/PullViewImpl.java | 4 ++-- .../che/ide/ext/git/client/pull/PullViewImpl.ui.xml | 4 ++-- .../ext/git/client/push/PushToRemotePresenter.java | 4 ++-- .../ide/ext/git/client/push/PushToRemoteView.java | 4 ++-- .../ext/git/client/push/PushToRemoteViewImpl.java | 4 ++-- .../ext/git/client/push/PushToRemoteViewImpl.ui.xml | 4 ++-- .../ide/ext/git/client/remote/RemotePresenter.java | 4 ++-- .../che/ide/ext/git/client/remote/RemoteView.java | 4 ++-- .../ide/ext/git/client/remote/RemoteViewImpl.java | 4 ++-- .../ide/ext/git/client/remote/RemoteViewImpl.ui.xml | 4 ++-- .../remote/add/AddRemoteRepositoryPresenter.java | 4 ++-- .../client/remote/add/AddRemoteRepositoryView.java | 4 ++-- .../remote/add/AddRemoteRepositoryViewImpl.java | 4 ++-- .../remote/add/AddRemoteRepositoryViewImpl.ui.xml | 4 ++-- .../git/client/remove/RemoveFromIndexPresenter.java | 4 ++-- .../ext/git/client/remove/RemoveFromIndexView.java | 4 ++-- .../git/client/remove/RemoveFromIndexViewImpl.java | 4 ++-- .../git/client/remove/RemoveFromIndexViewImpl.ui.xml | 4 ++-- .../client/reset/commit/ResetToCommitPresenter.java | 4 ++-- .../git/client/reset/commit/ResetToCommitView.java | 4 ++-- .../client/reset/commit/ResetToCommitViewImpl.java | 4 ++-- .../client/reset/commit/ResetToCommitViewImpl.ui.xml | 4 ++-- .../git/client/reset/files/ResetFilesPresenter.java | 4 ++-- .../ext/git/client/reset/files/ResetFilesView.java | 4 ++-- .../git/client/reset/files/ResetFilesViewImpl.java | 4 ++-- .../git/client/reset/files/ResetFilesViewImpl.ui.xml | 4 ++-- .../git/client/status/StatusCommandPresenter.java | 4 ++-- .../org/eclipse/che/ide/ext/git/Git.gwt.xml | 4 ++-- .../git/client/GitLocalizationConstant.properties | 4 ++-- .../che/ide/ext/git/client/branch/current.svg | 4 ++-- .../che/ide/ext/git/client/controls/branches.svg | 4 ++-- .../ext/git/client/controls/checkoutReference.svg | 4 ++-- .../che/ide/ext/git/client/controls/clone.svg | 4 ++-- .../che/ide/ext/git/client/controls/commit.svg | 4 ++-- .../che/ide/ext/git/client/controls/delete-repo.svg | 4 ++-- .../che/ide/ext/git/client/controls/fetch.svg | 4 ++-- .../ide/ext/git/client/controls/git-output-icon.svg | 4 ++-- .../eclipse/che/ide/ext/git/client/controls/init.svg | 4 ++-- .../che/ide/ext/git/client/controls/merge.svg | 4 ++-- .../eclipse/che/ide/ext/git/client/controls/pull.svg | 4 ++-- .../eclipse/che/ide/ext/git/client/controls/push.svg | 4 ++-- .../che/ide/ext/git/client/controls/remote.svg | 4 ++-- .../che/ide/ext/git/client/controls/remotes.svg | 4 ++-- .../org/eclipse/che/ide/ext/git/client/git.css | 4 ++-- .../che/ide/ext/git/client/history/diff_index.svg | 4 ++-- .../ide/ext/git/client/history/diff_prev_version.svg | 4 ++-- .../ide/ext/git/client/history/diff_working_dir.svg | 4 ++-- .../che/ide/ext/git/client/history/history.svg | 4 ++-- .../che/ide/ext/git/client/history/project_level.svg | 4 ++-- .../che/ide/ext/git/client/history/refresh.svg | 4 ++-- .../ide/ext/git/client/history/resource_level.svg | 4 ++-- .../ext/git/client/importer/page/GitImporterPage.css | 4 ++-- .../eclipse/che/ide/ext/git/client/merge/Merge.css | 4 ++-- .../eclipse/che/ide/ext/git/client/push/arrow.svg | 4 ++-- .../che/ide/ext/git/client/reset/commit/custom.css | 4 ++-- .../org/eclipse/che/ide/ext/git/client/BaseTest.java | 4 ++-- .../ide/ext/git/client/BranchFilterByRemoteTest.java | 4 ++-- .../ext/git/client/add/AddToIndexPresenterTest.java | 4 ++-- .../ext/git/client/branch/BranchPresenterTest.java | 4 ++-- .../git/client/checkout/CheckoutReferenceTest.java | 4 ++-- .../ext/git/client/commit/CommitPresenterTest.java | 4 ++-- .../ide/ext/git/client/fetch/FetchPresenterTest.java | 4 ++-- .../ext/git/client/history/HistoryPresenterTest.java | 4 ++-- .../importer/page/GitImporterPagePresenterTest.java | 4 ++-- .../git/client/init/InitRepositoryPresenterTest.java | 4 ++-- .../ide/ext/git/client/merge/MergePresenterTest.java | 4 ++-- .../ext/git/client/patcher/JsOAuthWindowPatcher.java | 4 ++-- .../ide/ext/git/client/patcher/JsoArrayPatcher.java | 4 ++-- .../ide/ext/git/client/patcher/WindowPatcher.java | 4 ++-- .../preference/CommitterPreferencePresenterTest.java | 4 ++-- .../remote/add/AddRemoteRepositoryPresenterTest.java | 4 ++-- .../client/reset/files/ResetFilesPresenterTest.java | 4 ++-- .../client/status/StatusCommandPresenterTest.java | 4 ++-- .../resources/META-INF/gwt-test-utils.properties | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- plugins/plugin-git/pom.xml | 4 ++-- .../che-plugin-github-factory-resolver/pom.xml | 4 ++-- .../github/factory/resolver/GitHubFactoryModule.java | 4 ++-- .../resolver/GithubFactoryParametersResolver.java | 4 ++-- .../factory/resolver/GithubSourceStorageBuilder.java | 4 ++-- .../github/factory/resolver/GithubURLParser.java | 4 ++-- .../github/factory/resolver/GithubURLParserImpl.java | 4 ++-- .../plugin/github/factory/resolver/GithubUrl.java | 4 ++-- .../factory/resolver/LegacyGithubURLParser.java | 4 ++-- .../GithubFactoryParametersResolverTest.java | 4 ++-- .../github/factory/resolver/GithubURLParserTest.java | 4 ++-- .../github/factory/resolver/GithubUrlTest.java | 4 ++-- plugins/plugin-github/che-plugin-github-ide/pom.xml | 4 ++-- .../che/plugin/github/ide/GitHubClientService.java | 4 ++-- .../plugin/github/ide/GitHubClientServiceImpl.java | 4 ++-- .../che/plugin/github/ide/GitHubExtension.java | 4 ++-- .../github/ide/GitHubLocalizationConstant.java | 4 ++-- .../che/plugin/github/ide/GitHubResources.java | 4 ++-- .../che/plugin/github/ide/GitHubSshKeyUploader.java | 4 ++-- .../ide/authenticator/GitHubAuthenticatorImpl.java | 4 ++-- .../ide/authenticator/GitHubAuthenticatorView.java | 4 ++-- .../authenticator/GitHubAuthenticatorViewImpl.java | 4 ++-- .../ide/importer/GitHubImportWizardRegistrar.java | 4 ++-- .../importer/page/GithubImporterPagePresenter.java | 4 ++-- .../ide/importer/page/GithubImporterPageView.java | 4 ++-- .../importer/page/GithubImporterPageViewImpl.java | 4 ++-- .../importer/page/GithubImporterPageViewImpl.ui.xml | 4 ++-- .../plugin/github/ide/inject/GitHubGinModule.java | 4 ++-- .../che/plugin/github/ide/load/ProjectData.java | 4 ++-- .../org/eclipse/che/plugin/github/GitHub.gwt.xml | 4 ++-- .../github/ide/GitHubLocalizationConstant.properties | 4 ++-- .../github/ide/importer/page/GithubImporterPage.css | 4 ++-- .../authenticator/GitHubAuthenticatorImplTest.java | 4 ++-- .../page/GithubImporterPagePresenterTest.java | 4 ++-- .../plugin-github/che-plugin-github-oauth2/pom.xml | 4 ++-- .../che/security/oauth/GitHubOAuthAuthenticator.java | 4 ++-- .../org/eclipse/che/security/oauth/GitHubUser.java | 4 ++-- .../org/eclipse/che/security/oauth/GithubModule.java | 4 ++-- .../che-plugin-github-provider-github/pom.xml | 4 ++-- .../server/github/GitHubOAuthCredentialProvider.java | 4 ++-- .../ide/ext/git/server/github/GithubGitModule.java | 4 ++-- .../che-plugin-github-pullrequest/pom.xml | 4 ++-- .../client/GitHubContributionWorkflow.java | 4 ++-- .../pullrequest/client/GitHubHostingService.java | 4 ++-- .../plugin/pullrequest/client/GitHubTemplates.java | 4 ++-- .../pullrequest/client/GithubStagesProvider.java | 4 ++-- .../client/inject/GithubPullRequestGinModule.java | 4 ++-- .../che/plugin/pullrequest/GithubPullRequest.gwt.xml | 4 ++-- .../plugin-github/che-plugin-github-server/pom.xml | 4 ++-- .../che/plugin/github/server/GitHubDTOFactory.java | 4 ++-- .../che/plugin/github/server/GitHubFactory.java | 4 ++-- .../che/plugin/github/server/GitHubKeyUploader.java | 4 ++-- .../plugin/github/server/GitHubProjectImporter.java | 4 ++-- .../plugin/github/server/inject/GitHubModule.java | 4 ++-- .../che/plugin/github/server/rest/GitHubService.java | 4 ++-- .../plugin-github/che-plugin-github-shared/pom.xml | 4 ++-- .../che/plugin/github/shared/Collaborators.java | 4 ++-- .../che/plugin/github/shared/GitHubIssueComment.java | 4 ++-- .../github/shared/GitHubIssueCommentInput.java | 4 ++-- .../eclipse/che/plugin/github/shared/GitHubKey.java | 4 ++-- .../che/plugin/github/shared/GitHubPullRequest.java | 4 ++-- .../shared/GitHubPullRequestCreationInput.java | 4 ++-- .../plugin/github/shared/GitHubPullRequestHead.java | 4 ++-- .../plugin/github/shared/GitHubPullRequestList.java | 4 ++-- .../che/plugin/github/shared/GitHubRepository.java | 4 ++-- .../plugin/github/shared/GitHubRepositoryList.java | 4 ++-- .../eclipse/che/plugin/github/shared/GitHubUser.java | 4 ++-- plugins/plugin-github/pom.xml | 4 ++-- plugins/plugin-gwt/che-plugin-gwt-ext-gwt/pom.xml | 4 ++-- .../eclipse/che/ide/ext/gwt/client/GwtExtension.java | 4 ++-- .../eclipse/che/ide/ext/gwt/client/GwtGinModule.java | 4 ++-- .../ide/ext/gwt/client/GwtLocalizationConstants.java | 4 ++-- .../eclipse/che/ide/ext/gwt/client/GwtResources.java | 4 ++-- .../ide/ext/gwt/client/command/GwtCommandModel.java | 4 ++-- .../gwt/client/command/GwtCommandPagePresenter.java | 4 ++-- .../ext/gwt/client/command/GwtCommandPageView.java | 4 ++-- .../gwt/client/command/GwtCommandPageViewImpl.java | 4 ++-- .../gwt/client/command/GwtCommandPageViewImpl.ui.xml | 4 ++-- .../ide/ext/gwt/client/command/GwtCommandType.java | 4 ++-- .../org/eclipse/che/ide/ext/gwt/GWT.gwt.xml | 4 ++-- .../gwt/client/GwtLocalizationConstants.properties | 4 ++-- .../ide/ext/gwt/client/images/gwt-command-type.svg | 4 ++-- .../ext/gwt/client/command/GwtCommandTypeTest.java | 4 ++-- .../ext/gwt/client/command/GwtPagePresenterTest.java | 4 ++-- plugins/plugin-gwt/pom.xml | 4 ++-- .../plugin-help/che-plugin-help-ext-client/pom.xml | 4 ++-- .../che/ide/ext/help/client/AboutResources.java | 4 ++-- .../eclipse/che/ide/ext/help/client/BuildInfo.java | 4 ++-- .../che/ide/ext/help/client/HelpAboutExtension.java | 4 ++-- .../client/HelpExtensionLocalizationConstant.java | 4 ++-- .../ide/ext/help/client/RedirectToSupportAction.java | 4 ++-- .../help/client/about/AboutLocalizationConstant.java | 4 ++-- .../ide/ext/help/client/about/AboutPresenter.java | 4 ++-- .../che/ide/ext/help/client/about/AboutView.java | 4 ++-- .../che/ide/ext/help/client/about/AboutViewImpl.java | 4 ++-- .../ide/ext/help/client/about/AboutViewImpl.ui.xml | 4 ++-- .../ide/ext/help/client/about/ShowAboutAction.java | 4 ++-- .../ext/help/client/inject/HelpAboutGinModule.java | 4 ++-- .../che/ide/ext/help/HelpAboutExtension.gwt.xml | 4 ++-- .../org/eclipse/che/ide/ext/help/client/About.css | 4 ++-- .../HelpExtensionLocalizationConstant.properties | 4 ++-- .../about/AboutLocalizationConstant.properties | 4 ++-- .../che/ide/ext/help/client/actions/about.svg | 4 ++-- .../che/ide/ext/help/client/actions/support.svg | 4 ++-- plugins/plugin-help/pom.xml | 4 ++-- .../che-plugin-java-debugger-ide/pom.xml | 4 ++-- .../che/plugin/jdb/ide/JavaDebuggerExtension.java | 4 ++-- .../jdb/ide/JavaDebuggerLocalizationConstant.java | 4 ++-- .../che/plugin/jdb/ide/JavaDebuggerResources.java | 4 ++-- .../JavaDebugConfigurationPagePresenter.java | 4 ++-- .../JavaDebugConfigurationPageView.java | 4 ++-- .../JavaDebugConfigurationPageViewImpl.java | 4 ++-- .../JavaDebugConfigurationPageViewImpl.ui.xml | 4 ++-- .../configuration/JavaDebugConfigurationType.java | 4 ++-- .../che/plugin/jdb/ide/debug/JavaDebugger.java | 4 ++-- .../jdb/ide/debug/JavaDebuggerFileHandler.java | 4 ++-- .../che/plugin/jdb/ide/fqn/JavaClassFqnResolver.java | 4 ++-- .../che/plugin/jdb/ide/fqn/JavaFqnResolver.java | 4 ++-- .../plugin/jdb/ide/inject/JavaRuntimeGinModule.java | 4 ++-- .../org/eclipse/che/plugin/jdb/JavaDebugger.gwt.xml | 4 ++-- .../ide/JavaDebuggerLocalizationConstant.properties | 4 ++-- .../configuration/java-debug-configuration-type.svg | 4 ++-- .../JavaDebugConfigurationPagePresenterTest.java | 4 ++-- .../JavaDebugConfigurationTypeTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../che-plugin-java-debugger-server/pom.xml | 4 ++-- .../che/plugin/jdb/server/BreakPointComparator.java | 4 ++-- .../che/plugin/jdb/server/EventsCollector.java | 4 ++-- .../eclipse/che/plugin/jdb/server/EventsHandler.java | 4 ++-- .../eclipse/che/plugin/jdb/server/JavaDebugger.java | 4 ++-- .../che/plugin/jdb/server/JavaDebuggerFactory.java | 4 ++-- .../che/plugin/jdb/server/JavaDebuggerModule.java | 4 ++-- .../che/plugin/jdb/server/JdiArrayElement.java | 4 ++-- .../che/plugin/jdb/server/JdiArrayElementImpl.java | 4 ++-- .../org/eclipse/che/plugin/jdb/server/JdiField.java | 4 ++-- .../eclipse/che/plugin/jdb/server/JdiFieldImpl.java | 4 ++-- .../che/plugin/jdb/server/JdiLocalVariable.java | 4 ++-- .../che/plugin/jdb/server/JdiLocalVariableImpl.java | 4 ++-- .../eclipse/che/plugin/jdb/server/JdiNullValue.java | 4 ++-- .../eclipse/che/plugin/jdb/server/JdiStackFrame.java | 4 ++-- .../che/plugin/jdb/server/JdiStackFrameImpl.java | 4 ++-- .../org/eclipse/che/plugin/jdb/server/JdiType.java | 4 ++-- .../org/eclipse/che/plugin/jdb/server/JdiValue.java | 4 ++-- .../eclipse/che/plugin/jdb/server/JdiValueImpl.java | 4 ++-- .../eclipse/che/plugin/jdb/server/JdiVariable.java | 4 ++-- .../DebuggerAbsentInformationException.java | 4 ++-- .../jdb/server/expression/ANTLRExpressionParser.java | 4 ++-- .../plugin/jdb/server/expression/ArrayElement.java | 4 ++-- .../che/plugin/jdb/server/expression/Evaluator.java | 4 ++-- .../jdb/server/expression/ExpressionException.java | 4 ++-- .../jdb/server/expression/ExpressionParser.java | 4 ++-- .../jdb/server/expression/ExpressionValue.java | 4 ++-- .../plugin/jdb/server/expression/InstanceValue.java | 4 ++-- .../che/plugin/jdb/server/expression/JavaLexer.java | 4 ++-- .../che/plugin/jdb/server/expression/JavaParser.java | 4 ++-- .../plugin/jdb/server/expression/JavaTreeParser.java | 4 ++-- .../che/plugin/jdb/server/expression/LocalValue.java | 4 ++-- .../plugin/jdb/server/expression/ReadOnlyValue.java | 4 ++-- .../plugin/jdb/server/expression/StaticValue.java | 4 ++-- .../plugin/jdb/server/utils/JavaDebuggerUtils.java | 4 ++-- .../che/plugin/jdb/server/JavaDebuggerTest.java | 4 ++-- .../src/test/resources/docker-assembly.xml | 4 ++-- .../src/test/resources/findbugs-exclude.xml | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../resources/workspace/test/src/com/HelloWorld.java | 4 ++-- plugins/plugin-java-debugger/pom.xml | 4 ++-- .../org-eclipse-core-filebuffers/pom.xml | 4 ++-- .../org-eclipse-core-filesystem/pom.xml | 4 ++-- .../org-eclipse-core-resources/pom.xml | 4 ++-- .../org-eclipse-jdt-ui/pom.xml | 4 ++-- .../src/main/resources/JavadocHoverStyleSheet.css | 4 ++-- .../org-eclipse-jface-text/pom.xml | 4 ++-- .../org-eclipse-jface/pom.xml | 4 ++-- .../org-eclipse-ltk-core-refactoring/pom.xml | 4 ++-- .../refactoring/CheRefactoringContributions.java | 4 ++-- .../CheRefactoringParticipantsRegistry.java | 4 ++-- .../org-eclipse-search/pom.xml | 4 ++-- .../org-eclipse-ui-ide/pom.xml | 4 ++-- plugins/plugin-java/che-plugin-java-ext-jdt/pom.xml | 4 ++-- .../che-plugin-java-ext-lang-client/pom.xml | 4 ++-- .../ide/ext/java/client/CurrentClassFQN_Macro.java | 4 ++-- .../org/eclipse/che/ide/ext/java/client/JavaCss.java | 4 ++-- .../che/ide/ext/java/client/JavaEditorExtension.java | 4 ++-- .../che/ide/ext/java/client/JavaExtension.java | 4 ++-- .../ext/java/client/JavaLocalizationConstant.java | 4 ++-- .../che/ide/ext/java/client/JavaResources.java | 4 ++-- .../eclipse/che/ide/ext/java/client/JavaUtils.java | 4 ++-- .../eclipse/che/ide/ext/java/client/Resources.java | 4 ++-- .../ext/java/client/action/FileStructureAction.java | 4 ++-- .../ide/ext/java/client/action/FindUsagesAction.java | 4 ++-- .../ide/ext/java/client/action/JavaEditorAction.java | 4 ++-- .../java/client/action/MarkDirAsSourceAction.java | 4 ++-- .../ext/java/client/action/MarkDirectoryAsGroup.java | 4 ++-- .../java/client/action/NewJavaSourceFileAction.java | 4 ++-- .../ide/ext/java/client/action/NewPackageAction.java | 4 ++-- .../java/client/action/OpenDeclarationAction.java | 4 ++-- .../java/client/action/OpenImplementationAction.java | 4 ++-- .../java/client/action/OrganizeImportsAction.java | 4 ++-- .../java/client/action/ParametersHintsAction.java | 4 ++-- .../java/client/action/ProjectClasspathAction.java | 4 ++-- .../ide/ext/java/client/action/ProposalAction.java | 4 ++-- .../java/client/action/QuickDocumentationAction.java | 4 ++-- .../ide/ext/java/client/action/QuickFixAction.java | 4 ++-- .../java/client/action/UnmarkDirAsSourceAction.java | 4 ++-- .../ext/java/client/command/ClasspathContainer.java | 4 ++-- .../ext/java/client/command/JavaCommandModel.java | 4 ++-- .../client/command/JavaCommandPagePresenter.java | 4 ++-- .../ext/java/client/command/JavaCommandPageView.java | 4 ++-- .../java/client/command/JavaCommandPageViewImpl.java | 4 ++-- .../client/command/JavaCommandPageViewImpl.ui.xml | 4 ++-- .../ide/ext/java/client/command/JavaCommandType.java | 4 ++-- .../command/mainclass/ClassNodeInterceptor.java | 4 ++-- .../command/mainclass/SelectNodePresenter.java | 4 ++-- .../client/command/mainclass/SelectNodeView.java | 4 ++-- .../client/command/mainclass/SelectNodeViewImpl.java | 4 ++-- .../command/mainclass/SelectNodeViewImpl.ui.xml | 4 ++-- .../command/valueproviders/ClasspathMacro.java | 4 ++-- .../command/valueproviders/MainClassMacro.java | 4 ++-- .../command/valueproviders/OutputDirMacro.java | 4 ++-- .../command/valueproviders/SourcepathMacro.java | 4 ++-- .../dependenciesupdater/ChannelParameters.java | 4 ++-- .../JavaClasspathServiceClient.java | 4 ++-- .../JavaClasspathServiceClientImpl.java | 4 ++-- .../ide/ext/java/client/document/FormatterStore.java | 4 ++-- .../java/client/documentation/QuickDocPresenter.java | 4 ++-- .../ext/java/client/documentation/QuickDocView.java | 4 ++-- .../java/client/documentation/QuickDocViewImpl.java | 4 ++-- .../client/documentation/QuickDocumentation.java | 4 ++-- .../java/client/editor/ActionCompletionProposal.java | 4 ++-- .../che/ide/ext/java/client/editor/FileWatcher.java | 4 ++-- .../ext/java/client/editor/JavaAnnotationModel.java | 4 ++-- .../client/editor/JavaAnnotationModelFactory.java | 4 ++-- .../ext/java/client/editor/JavaAnnotationUtil.java | 4 ++-- .../client/editor/JavaChangeInterceptorProvider.java | 4 ++-- .../ext/java/client/editor/JavaCodeAssistClient.java | 4 ++-- .../java/client/editor/JavaCodeAssistProcessor.java | 4 ++-- .../editor/JavaCodeAssistProcessorFactory.java | 4 ++-- .../java/client/editor/JavaCompletionProposal.java | 4 ++-- .../ide/ext/java/client/editor/JavaFormatter.java | 4 ++-- .../ext/java/client/editor/JavaPartitionScanner.java | 4 ++-- .../java/client/editor/JavaPartitionerFactory.java | 4 ++-- .../java/client/editor/JavaQuickAssistProcessor.java | 4 ++-- .../editor/JavaQuickAssistProcessorFactory.java | 4 ++-- .../ext/java/client/editor/JavaReconcileClient.java | 4 ++-- .../client/editor/JavaReconcileUpdateOperation.java | 4 ++-- .../java/client/editor/JavaReconcilerStrategy.java | 4 ++-- .../client/editor/JavaReconcilerStrategyFactory.java | 4 ++-- .../ext/java/client/editor/JavaReconsilerEvent.java | 4 ++-- .../client/editor/JsJavaEditorConfiguration.java | 4 ++-- .../editor/JsJavaEditorConfigurationFactory.java | 4 ++-- .../ext/java/client/editor/JsJavaEditorProvider.java | 4 ++-- .../java/client/editor/OpenDeclarationFinder.java | 4 ++-- .../ext/java/client/editor/ProblemAnnotation.java | 4 ++-- .../ide/ext/java/client/editor/ProblemRequester.java | 4 ++-- .../ide/ext/java/client/editor/QuickFixResolver.java | 4 ++-- .../java/client/editor/QuickFixableAnnotation.java | 4 ++-- .../java/client/editor/ReconcileOperationEvent.java | 4 ++-- .../client/editor/SemanticHighlightRenderer.java | 4 ++-- .../ext/java/client/inject/JavaEditorGinModule.java | 4 ++-- .../ide/ext/java/client/inject/JavaGinModule.java | 4 ++-- .../inject/factories/PropertyWidgetFactory.java | 4 ++-- .../java/client/navigation/factory/NodeFactory.java | 4 ++-- .../navigation/filestructure/FileStructure.java | 4 ++-- .../navigation/filestructure/FileStructureImpl.java | 4 ++-- .../filestructure/FileStructureImpl.ui.xml | 4 ++-- .../filestructure/FileStructurePresenter.java | 4 ++-- .../navigation/node/AbstractPresentationNode.java | 4 ++-- .../ext/java/client/navigation/node/FieldNode.java | 4 ++-- .../java/client/navigation/node/InitializerNode.java | 4 ++-- .../ext/java/client/navigation/node/MethodNode.java | 4 ++-- .../ext/java/client/navigation/node/TypeNode.java | 4 ++-- .../openimplementation/NoImplementationWidget.java | 4 ++-- .../OpenImplementationPresenter.java | 4 ++-- .../paraminfo/ParametersHintsPresenter.java | 4 ++-- .../navigation/paraminfo/ParametersHintsView.java | 4 ++-- .../paraminfo/ParametersHintsViewImpl.java | 4 ++-- .../paraminfo/ParametersHintsViewImpl.ui.xml | 4 ++-- .../navigation/service/JavaNavigationService.java | 4 ++-- .../service/JavaNavigationServiceImpl.java | 4 ++-- .../client/newsourcefile/JavaSourceFileType.java | 4 ++-- .../newsourcefile/NewJavaSourceFilePresenter.java | 4 ++-- .../client/newsourcefile/NewJavaSourceFileView.java | 4 ++-- .../newsourcefile/NewJavaSourceFileViewImpl.java | 4 ++-- .../newsourcefile/NewJavaSourceFileViewImpl.ui.xml | 4 ++-- .../organizeimports/OrganizeImportsPresenter.java | 4 ++-- .../client/organizeimports/OrganizeImportsView.java | 4 ++-- .../organizeimports/OrganizeImportsViewImpl.java | 4 ++-- .../organizeimports/OrganizeImportsViewImpl.ui.xml | 4 ++-- .../project/classpath/ClasspathChangedEvent.java | 4 ++-- .../client/project/classpath/ClasspathResolver.java | 4 ++-- .../project/classpath/ProjectClasspathPresenter.java | 4 ++-- .../project/classpath/ProjectClasspathResources.java | 4 ++-- .../project/classpath/ProjectClasspathView.java | 4 ++-- .../project/classpath/ProjectClasspathViewImpl.java | 4 ++-- .../classpath/ProjectClasspathViewImpl.ui.xml | 4 ++-- .../classpath/service/ClasspathServiceClient.java | 4 ++-- .../service/ClasspathServiceClientImpl.java | 4 ++-- .../classpath/valueproviders/node/NodeEntry.java | 4 ++-- .../classpath/valueproviders/node/NodeWidget.java | 4 ++-- .../classpath/valueproviders/node/NodeWidget.ui.xml | 4 ++-- .../pages/AbstractClasspathPagePresenter.java | 4 ++-- .../valueproviders/pages/ClasspathPagePresenter.java | 4 ++-- .../pages/libraries/LibEntryPresenter.java | 4 ++-- .../valueproviders/pages/libraries/LibEntryView.java | 4 ++-- .../pages/libraries/LibEntryViewImpl.java | 4 ++-- .../pages/libraries/LibEntryViewImpl.ui.xml | 4 ++-- .../pages/sources/SourceEntryPresenter.java | 4 ++-- .../pages/sources/SourceEntryView.java | 4 ++-- .../pages/sources/SourceEntryViewImpl.java | 4 ++-- .../pages/sources/SourceEntryViewImpl.ui.xml | 4 ++-- .../selectnode/SelectNodePresenter.java | 4 ++-- .../valueproviders/selectnode/SelectNodeView.java | 4 ++-- .../selectnode/SelectNodeViewImpl.java | 4 ++-- .../selectnode/SelectNodeViewImpl.ui.xml | 4 ++-- .../interceptors/ClasspathNodeInterceptor.java | 4 ++-- .../selectnode/interceptors/JarNodeInterceptor.java | 4 ++-- .../interceptors/SourceFolderNodeInterceptor.java | 4 ++-- .../client/projecttree/JavaSourceFolderUtil.java | 4 ++-- .../ext/java/client/refactoring/RefactorInfo.java | 4 ++-- .../java/client/refactoring/RefactoringUpdater.java | 4 ++-- .../client/refactoring/move/CutJavaSourceAction.java | 4 ++-- .../ext/java/client/refactoring/move/MoveAction.java | 4 ++-- .../ext/java/client/refactoring/move/MoveType.java | 4 ++-- .../client/refactoring/move/RefactoredItemType.java | 4 ++-- .../refactoring/move/wizard/MovePresenter.java | 4 ++-- .../client/refactoring/move/wizard/MoveView.java | 4 ++-- .../client/refactoring/move/wizard/MoveViewImpl.java | 4 ++-- .../refactoring/move/wizard/MoveViewImpl.ui.xml | 4 ++-- .../move/wizard/ProjectsAndPackagesModel.java | 4 ++-- .../client/refactoring/preview/PreviewPresenter.java | 4 ++-- .../java/client/refactoring/preview/PreviewView.java | 4 ++-- .../client/refactoring/preview/PreviewViewImpl.java | 4 ++-- .../refactoring/preview/PreviewViewImpl.ui.xml | 4 ++-- .../refactoring/rename/JavaRefactoringRename.java | 4 ++-- .../refactoring/rename/RenameRefactoringAction.java | 4 ++-- .../refactoring/rename/wizard/RenamePresenter.java | 4 ++-- .../client/refactoring/rename/wizard/RenameView.java | 4 ++-- .../refactoring/rename/wizard/RenameViewImpl.java | 4 ++-- .../refactoring/rename/wizard/RenameViewImpl.ui.xml | 4 ++-- .../SimilarNamesConfigurationPresenter.java | 4 ++-- .../similarnames/SimilarNamesConfigurationView.java | 4 ++-- .../SimilarNamesConfigurationViewImpl.java | 4 ++-- .../SimilarNamesConfigurationViewImpl.ui.xml | 4 ++-- .../service/RefactoringServiceClient.java | 4 ++-- .../service/RefactoringServiceClientImpl.java | 4 ++-- .../ext/java/client/reference/JavaFqnProvider.java | 4 ++-- .../ext/java/client/resource/ClassInterceptor.java | 4 ++-- .../client/resource/JavaSourceRenameValidator.java | 4 ++-- .../client/resource/SourceFolderInterceptor.java | 4 ++-- .../ext/java/client/resource/SourceFolderMarker.java | 4 ++-- .../ext/java/client/search/FindUsagesPresenter.java | 4 ++-- .../ide/ext/java/client/search/FindUsagesView.java | 4 ++-- .../ext/java/client/search/FindUsagesViewImpl.java | 4 ++-- .../java/client/search/JavaSearchJsonRpcClient.java | 4 ++-- .../ext/java/client/search/JavaSearchService.java | 4 ++-- .../java/client/search/JavaSearchServiceRest.java | 4 ++-- .../client/search/node/AbstractPresentationNode.java | 4 ++-- .../ext/java/client/search/node/JavaProjectNode.java | 4 ++-- .../ide/ext/java/client/search/node/MatchNode.java | 4 ++-- .../ide/ext/java/client/search/node/MethodNode.java | 4 ++-- .../ext/java/client/search/node/NodeComparator.java | 4 ++-- .../ide/ext/java/client/search/node/NodeFactory.java | 4 ++-- .../java/client/search/node/PackageFragmentNode.java | 4 ++-- .../ide/ext/java/client/search/node/ResultNode.java | 4 ++-- .../ide/ext/java/client/search/node/TypeNode.java | 4 ++-- .../settings/compiler/ErrorWarningsOptions.java | 4 ++-- .../client/settings/compiler/ErrorWarningsView.java | 4 ++-- .../settings/compiler/ErrorWarningsViewImpl.java | 4 ++-- .../settings/compiler/ErrorWarningsViewImpl.ui.xml | 4 ++-- .../compiler/ErrorsWarningsPreferenceManager.java | 4 ++-- .../compiler/JavaCompilerPreferenceManager.java | 4 ++-- .../compiler/JavaCompilerPreferencePresenter.java | 4 ++-- .../settings/property/PropertyNameManager.java | 4 ++-- .../client/settings/property/PropertyWidget.java | 4 ++-- .../client/settings/property/PropertyWidgetImpl.java | 4 ++-- .../settings/property/PropertyWidgetImpl.ui.xml | 4 ++-- .../settings/service/SettingsServiceClient.java | 4 ++-- .../settings/service/SettingsServiceClientImpl.java | 4 ++-- .../ide/ext/java/client/tree/JavaNodeFactory.java | 4 ++-- .../ext/java/client/tree/JavaPackageConnector.java | 4 ++-- .../ext/java/client/tree/LibraryNodeProvider.java | 4 ++-- .../che/ide/ext/java/client/tree/PackageNode.java | 4 ++-- .../ext/java/client/tree/SourceFolderDecorator.java | 4 ++-- .../ext/java/client/tree/TestFolderDecorator.java | 4 ++-- .../ext/java/client/tree/library/JarFileNode.java | 4 ++-- .../ext/java/client/tree/library/JarFolderNode.java | 4 ++-- .../ide/ext/java/client/tree/library/JarNode.java | 4 ++-- .../ext/java/client/tree/library/LibrariesNode.java | 4 ++-- .../eclipse/che/ide/ext/java/client/util/Flags.java | 4 ++-- .../che/ide/ext/java/client/util/JavaUtil.java | 4 ++-- .../org/eclipse/che/ide/ext/java/Java.gwt.xml | 4 ++-- .../java/client/JavaLocalizationConstant.properties | 4 ++-- .../org/eclipse/che/ide/ext/java/client/Semantic.css | 4 ++-- .../eclipse/che/ide/ext/java/client/images/class.svg | 4 ++-- .../che/ide/ext/java/client/images/default_field.svg | 4 ++-- .../ide/ext/java/client/images/default_method.svg | 4 ++-- .../che/ide/ext/java/client/images/interface.svg | 4 ++-- .../che/ide/ext/java/client/images/package.svg | 4 ++-- .../che/ide/ext/java/client/images/private_field.svg | 4 ++-- .../ide/ext/java/client/images/protected_field.svg | 4 ++-- .../che/ide/ext/java/client/images/public_field.svg | 4 ++-- .../che/ide/ext/java/client/images/taskmrk.svg | 4 ++-- .../che/ide/ext/java/client/images/template.svg | 4 ++-- .../internal/text/correction/proposals/add.svg | 4 ++-- .../text/correction/proposals/correction_cast.svg | 4 ++-- .../text/correction/proposals/correction_change.svg | 4 ++-- .../proposals/correction_delete_import.svg | 4 ++-- .../text/correction/proposals/correction_rename.svg | 4 ++-- .../internal/text/correction/proposals/import.svg | 4 ++-- .../internal/text/correction/proposals/javadoc.svg | 4 ++-- .../text/correction/proposals/jexception_obj.svg | 4 ++-- .../internal/text/correction/proposals/local.svg | 4 ++-- .../internal/text/correction/proposals/remove.svg | 4 ++-- .../text/correction/proposals/remove_correction.svg | 4 ++-- .../org/eclipse/che/ide/ext/java/client/java.css | 4 ++-- .../client/project/classpath/PropertiesRenderer.css | 4 ++-- .../client/project/classpath/remove-node-button.svg | 4 ++-- .../che/ide/ext/java/client/svg/annotation_type.svg | 4 ++-- .../che/ide/ext/java/client/svg/category/java.svg | 4 ++-- .../che/ide/ext/java/client/svg/enum_type.svg | 4 ++-- .../ide/ext/java/client/svg/externalLibraries.svg | 4 ++-- .../che/ide/ext/java/client/svg/file-navigation.svg | 4 ++-- .../che/ide/ext/java/client/svg/jarFileIcon.svg | 4 ++-- .../eclipse/che/ide/ext/java/client/svg/javaFile.svg | 4 ++-- .../eclipse/che/ide/ext/java/client/svg/jsfFile.svg | 4 ++-- .../eclipse/che/ide/ext/java/client/svg/jspFile.svg | 4 ++-- .../che/ide/ext/java/client/svg/mark-error.svg | 4 ++-- .../che/ide/ext/java/client/svg/mark-warning.svg | 4 ++-- .../che/ide/ext/java/client/svg/openDeclaration.svg | 4 ++-- .../che/ide/ext/java/client/svg/private_method.svg | 4 ++-- .../che/ide/ext/java/client/svg/protected_method.svg | 4 ++-- .../che/ide/ext/java/client/svg/publicMethod.svg | 4 ++-- .../ide/ext/java/client/svg/quickDocumentation.svg | 4 ++-- .../che/ide/ext/java/client/svg/searchMatch.svg | 4 ++-- .../che/ide/ext/java/client/svg/sourceFolder.svg | 4 ++-- .../che/ide/ext/java/client/svg/testFolder.svg | 4 ++-- .../ide/ext/java/client/svg/update-dependencies.svg | 4 ++-- .../che/ide/ext/java/client/JavaUtilsTest.java | 4 ++-- .../client/action/OrganizeImportsActionTest.java | 4 ++-- .../java/client/command/ClasspathContainerTest.java | 4 ++-- .../client/command/JavaCommandPagePresenterTest.java | 4 ++-- .../command/valueproviders/ClasspathMacroTest.java | 4 ++-- .../command/valueproviders/OutputDirMacroTest.java | 4 ++-- .../command/valueproviders/SourcepathMacroTest.java | 4 ++-- .../client/editor/JavaReconcilerStrategyTest.java | 4 ++-- .../navigation/action/FileStructureActionTest.java | 4 ++-- .../filestructure/FileStructurePresenterTest.java | 4 ++-- .../java/client/navigation/node/FieldNodeTest.java | 4 ++-- .../client/navigation/node/InitializerNodeTest.java | 4 ++-- .../java/client/navigation/node/MethodNodeTest.java | 4 ++-- .../java/client/navigation/node/TypeNodeTest.java | 4 ++-- .../OpenImplementationPresenterTest.java | 4 ++-- .../OrganizeImportsPresenterTest.java | 4 ++-- .../refactoring/move/CutJavaSourceActionTest.java | 4 ++-- .../refactoring/move/wizard/MovePresenterTest.java | 4 ++-- .../refactoring/preview/PreviewPresenterTest.java | 4 ++-- .../rename/JavaRefactoringRenameTest.java | 4 ++-- .../rename/wizard/RenamePresenterTest.java | 4 ++-- .../SimilarNamesConfigurationPresenterTest.java | 4 ++-- .../SimilarNamesConfigurationViewImplTest.java | 4 ++-- .../resource/JavaSourceRenameValidatorTest.java | 4 ++-- .../settings/compiler/ErrorWarningsViewImplTest.java | 4 ++-- .../JavaCompilerPreferencePresenterTest.java | 4 ++-- .../settings/property/PropertyNameManagerTest.java | 4 ++-- .../settings/property/PropertyWidgetImplTest.java | 4 ++-- .../resources/META-INF/gwt-test-utils.properties | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../src/test/resources/projects/testproject/pom.xml | 4 ++-- .../src/main/java/com/codenvy/test/MyClass.java | 4 ++-- .../src/test/java/com/codenvy/testtest/Test.java | 4 ++-- .../che-plugin-java-ext-lang-server/pom.xml | 4 ++-- .../eclipse/che/plugin/java/server/CodeAssist.java | 4 ++-- .../plugin/java/server/CodeAssistantException.java | 4 ++-- .../che/plugin/java/server/JavaNavigation.java | 4 ++-- .../java/server/JavaReconcileRequestHandler.java | 4 ++-- .../che/plugin/java/server/JavaTypeHierarchy.java | 4 ++-- .../eclipse/che/plugin/java/server/JdtException.java | 4 ++-- .../che/plugin/java/server/ParametersHints.java | 4 ++-- .../che/plugin/java/server/ProjectListeners.java | 4 ++-- .../java/server/SourcesFromBytecodeGenerator.java | 4 ++-- .../che/plugin/java/server/inject/JavaModule.java | 4 ++-- .../plugin/java/server/inject/JdtGuiceModule.java | 4 ++-- .../server/projecttype/AbstractJavaInitHandler.java | 4 ++-- .../java/server/projecttype/JavaProjectType.java | 4 ++-- .../server/projecttype/JavaValueProviderFactory.java | 4 ++-- .../plugin/java/server/refactoring/DtoConverter.java | 4 ++-- .../server/refactoring/RefactoringException.java | 4 ++-- .../java/server/refactoring/RefactoringManager.java | 4 ++-- .../refactoring/session/MoveRefactoringSession.java | 4 ++-- .../refactoring/session/RefactoringSession.java | 4 ++-- .../session/RenameLinkedModeRefactoringSession.java | 4 ++-- .../server/refactoring/session/RenameSession.java | 4 ++-- .../refactoring/session/ReorgRefactoringSession.java | 4 ++-- .../plugin/java/server/rest/ClasspathService.java | 4 ++-- .../java/server/rest/ClasspathServiceInterface.java | 4 ++-- .../plugin/java/server/rest/CodeAssistService.java | 4 ++-- .../java/server/rest/CompilerSetupService.java | 4 ++-- .../java/server/rest/JavaNavigationService.java | 4 ++-- .../java/server/rest/JavaReconcileService.java | 4 ++-- .../che/plugin/java/server/rest/JavadocService.java | 4 ++-- .../java/server/rest/JavadocUrlProviderImpl.java | 4 ++-- .../plugin/java/server/rest/JdtExceptionMapper.java | 4 ++-- .../plugin/java/server/rest/RefactoringService.java | 4 ++-- .../java/server/rest/SearchJsonRpcService.java | 4 ++-- .../server/search/JavaElementToDtoConverter.java | 4 ++-- .../plugin/java/server/search/SearchException.java | 4 ++-- .../che/plugin/java/server/search/SearchManager.java | 4 ++-- .../eclipse/che/plugin/java/server/che/BaseTest.java | 4 ++-- .../plugin/java/server/che/CodeAssistantTest.java | 4 ++-- .../plugin/java/server/che/DeltaProcessingTest.java | 4 ++-- .../plugin/java/server/che/DummyProjectManager.java | 4 ++-- .../plugin/java/server/che/FindDeclarationTest.java | 4 ++-- .../plugin/java/server/che/JarNavigationTest.java | 4 ++-- .../java/server/che/JavadocFromSourceTest.java | 4 ++-- .../che/plugin/java/server/che/JavadocTest.java | 4 ++-- .../che/plugin/java/server/che/JavadocUrlTest.java | 4 ++-- .../che/plugin/java/server/che/ReconcileTest.java | 4 ++-- .../server/che/SourceFromBytecodeGeneratorTest.java | 4 ++-- .../eclipse/che/plugin/java/server/che/Utils.java | 4 ++-- .../projecttype/JavaValueProviderFactoryTest.java | 4 ++-- .../che-plugin-java-ext-lang-shared/pom.xml | 4 ++-- .../che/ide/ext/java/shared/ClasspathEntryKind.java | 4 ++-- .../eclipse/che/ide/ext/java/shared/Constants.java | 4 ++-- .../eclipse/che/ide/ext/java/shared/ContentRoot.java | 4 ++-- .../org/eclipse/che/ide/ext/java/shared/Jar.java | 4 ++-- .../eclipse/che/ide/ext/java/shared/JarEntry.java | 4 ++-- .../ext/java/shared/OpenDeclarationDescriptor.java | 4 ++-- .../eclipse/che/ide/ext/java/shared/dto/Change.java | 4 ++-- .../che/ide/ext/java/shared/dto/ClassContent.java | 4 ++-- .../ext/java/shared/dto/ClassPathBuilderResult.java | 4 ++-- .../ide/ext/java/shared/dto/ConflictImportDTO.java | 4 ++-- .../ide/ext/java/shared/dto/HighlightedPosition.java | 4 ++-- .../shared/dto/ImplementationsDescriptorDTO.java | 4 ++-- .../che/ide/ext/java/shared/dto/JavaClassInfo.java | 4 ++-- .../che/ide/ext/java/shared/dto/LinkedData.java | 4 ++-- .../che/ide/ext/java/shared/dto/LinkedModeModel.java | 4 ++-- .../ide/ext/java/shared/dto/LinkedPositionGroup.java | 4 ++-- .../ext/java/shared/dto/OrganizeImportResult.java | 4 ++-- .../eclipse/che/ide/ext/java/shared/dto/Problem.java | 4 ++-- .../ide/ext/java/shared/dto/ProposalApplyResult.java | 4 ++-- .../ext/java/shared/dto/ProposalPresentation.java | 4 ++-- .../che/ide/ext/java/shared/dto/Proposals.java | 4 ++-- .../che/ide/ext/java/shared/dto/ReconcileResult.java | 4 ++-- .../eclipse/che/ide/ext/java/shared/dto/Region.java | 4 ++-- .../java/shared/dto/classpath/ClasspathEntryDto.java | 4 ++-- .../che/ide/ext/java/shared/dto/model/ClassFile.java | 4 ++-- .../ext/java/shared/dto/model/CompilationUnit.java | 4 ++-- .../che/ide/ext/java/shared/dto/model/Field.java | 4 ++-- .../ext/java/shared/dto/model/ImportDeclaration.java | 4 ++-- .../ide/ext/java/shared/dto/model/Initializer.java | 4 ++-- .../ide/ext/java/shared/dto/model/JavaElement.java | 4 ++-- .../ide/ext/java/shared/dto/model/JavaProject.java | 4 ++-- .../ide/ext/java/shared/dto/model/LabelElement.java | 4 ++-- .../che/ide/ext/java/shared/dto/model/Member.java | 4 ++-- .../che/ide/ext/java/shared/dto/model/Method.java | 4 ++-- .../ext/java/shared/dto/model/MethodParameters.java | 4 ++-- .../che/ide/ext/java/shared/dto/model/Openable.java | 4 ++-- .../ext/java/shared/dto/model/PackageFragment.java | 4 ++-- .../java/shared/dto/model/PackageFragmentRoot.java | 4 ++-- .../che/ide/ext/java/shared/dto/model/Type.java | 4 ++-- .../ide/ext/java/shared/dto/model/TypeParameter.java | 4 ++-- .../che/ide/ext/java/shared/dto/model/TypeRoot.java | 4 ++-- .../shared/dto/refactoring/ChangeCreationResult.java | 4 ++-- .../shared/dto/refactoring/ChangeEnabledState.java | 4 ++-- .../ext/java/shared/dto/refactoring/ChangeInfo.java | 4 ++-- .../java/shared/dto/refactoring/ChangePreview.java | 4 ++-- .../dto/refactoring/CreateMoveRefactoring.java | 4 ++-- .../dto/refactoring/CreateRenameRefactoring.java | 4 ++-- .../java/shared/dto/refactoring/ElementToMove.java | 4 ++-- .../refactoring/LinkedRenameRefactoringApply.java | 4 ++-- .../java/shared/dto/refactoring/MoveSettings.java | 4 ++-- .../shared/dto/refactoring/RefactoringChange.java | 4 ++-- .../shared/dto/refactoring/RefactoringPreview.java | 4 ++-- .../shared/dto/refactoring/RefactoringResult.java | 4 ++-- .../shared/dto/refactoring/RefactoringSession.java | 4 ++-- .../shared/dto/refactoring/RefactoringStatus.java | 4 ++-- .../dto/refactoring/RefactoringStatusEntry.java | 4 ++-- .../dto/refactoring/RenameRefactoringSession.java | 4 ++-- .../java/shared/dto/refactoring/RenameSettings.java | 4 ++-- .../shared/dto/refactoring/ReorgDestination.java | 4 ++-- .../java/shared/dto/refactoring/ValidateNewName.java | 4 ++-- .../java/shared/dto/search/FindUsagesRequest.java | 4 ++-- .../java/shared/dto/search/FindUsagesResponse.java | 4 ++-- .../che/ide/ext/java/shared/dto/search/Match.java | 4 ++-- .../che-plugin-java-plain-ide/pom.xml | 4 ++-- .../plain/client/PlainJavaLocalizationConstant.java | 4 ++-- .../java/plain/client/inject/PlainJavaGinModule.java | 4 ++-- .../service/ClasspathUpdaterServiceClient.java | 4 ++-- .../service/ClasspathUpdaterServiceClientImpl.java | 4 ++-- .../plain/client/wizard/PlainJavaPagePresenter.java | 4 ++-- .../java/plain/client/wizard/PlainJavaPageView.java | 4 ++-- .../plain/client/wizard/PlainJavaPageViewImpl.java | 4 ++-- .../plain/client/wizard/PlainJavaPageViewImpl.ui.xml | 4 ++-- .../wizard/PlainJavaProjectWizardRegistrar.java | 4 ++-- .../client/wizard/selector/SelectNodePresenter.java | 4 ++-- .../plain/client/wizard/selector/SelectNodeView.java | 4 ++-- .../client/wizard/selector/SelectNodeViewImpl.java | 4 ++-- .../client/wizard/selector/SelectNodeViewImpl.ui.xml | 4 ++-- .../client/wizard/selector/SelectionDelegate.java | 4 ++-- .../eclipse/che/plugin/java/plain/PlainJava.gwt.xml | 4 ++-- .../client/PlainJavaLocalizationConstant.properties | 4 ++-- .../client/wizard/PlainJavaPagePresenterTest.java | 4 ++-- .../che-plugin-java-plain-server/pom.xml | 4 ++-- .../server/generator/PlainJavaProjectGenerator.java | 4 ++-- .../plain/server/inject/PlainJavaProjectModule.java | 4 ++-- .../plain/server/projecttype/ClasspathBuilder.java | 4 ++-- .../server/projecttype/PlainJavaInitHandler.java | 4 ++-- .../server/projecttype/PlainJavaProjectType.java | 4 ++-- .../projecttype/PlainJavaValueProviderFactory.java | 4 ++-- .../plain/server/rest/ClasspathUpdaterService.java | 4 ++-- .../che/plugin/java/plain/server/BaseTest.java | 4 ++-- .../generator/PlainJavaProjectGeneratorTest.java | 4 ++-- .../server/projecttype/ClasspathBuilderTest.java | 4 ++-- .../PlainJavaValueProviderFactoryTest.java | 4 ++-- .../test/resources/projects/project/src/Main.java | 4 ++-- .../che-plugin-java-plain-shared/pom.xml | 4 ++-- .../java/plain/shared/PlainJavaProjectConstants.java | 4 ++-- plugins/plugin-java/che-plugin-java-plain/pom.xml | 4 ++-- plugins/plugin-java/pom.xml | 4 ++-- plugins/plugin-json/che-plugin-json-server/pom.xml | 4 ++-- .../eclipse/che/plugin/json/inject/JsonModule.java | 4 ++-- .../plugin/json/languageserver/JsonExtension.java | 4 ++-- .../languageserver/JsonLanguageServerLauncher.java | 4 ++-- plugins/plugin-json/pom.xml | 4 ++-- .../plugin-keybinding-eclipse-ide/pom.xml | 4 ++-- .../plugin/keybinding/eclipse/EclipseKeyBinding.java | 4 ++-- .../keybinding/eclipse/EclipseKeyBinding.gwt.xml | 4 ++-- plugins/plugin-keybinding-eclipse/pom.xml | 4 ++-- .../che-plugin-languageserver-ide/pom.xml | 4 ++-- .../languageserver/ide/LanguageServerExtension.java | 4 ++-- .../ide/LanguageServerFileTypeRegister.java | 4 ++-- .../ide/LanguageServerLocalization.java | 4 ++-- .../languageserver/ide/LanguageServerResources.java | 4 ++-- .../ide/editor/DiagnosticAnnotation.java | 4 ++-- .../ide/editor/DiagnosticCollector.java | 4 ++-- .../ide/editor/LanguageServerAnnotationModel.java | 4 ++-- .../editor/LanguageServerAnnotationModelFactory.java | 4 ++-- .../LanguageServerCodeassistProcessorFactory.java | 4 ++-- .../editor/LanguageServerEditorConfiguration.java | 4 ++-- .../LanguageServerEditorConfigurationFactory.java | 4 ++-- .../ide/editor/LanguageServerEditorProvider.java | 4 ++-- .../ide/editor/LanguageServerFormatter.java | 4 ++-- .../ide/editor/LanguageServerFormatterFactory.java | 4 ++-- .../ide/editor/LanguageServerReconcileStrategy.java | 4 ++-- .../LanguageServerReconcileStrategyFactory.java | 4 ++-- .../ide/editor/PublishDiagnosticsProcessor.java | 4 ++-- .../ide/editor/ShowMessageProcessor.java | 4 ++-- .../editor/codeassist/CompletionImageProvider.java | 4 ++-- .../CompletionItemBasedCompletionProposal.java | 4 ++-- .../LanguageServerCodeAssistProcessor.java | 4 ++-- .../signature/LanguageServerSignatureHelp.java | 4 ++-- .../LanguageServerSignatureHelpFactory.java | 4 ++-- .../ide/editor/signature/ParamterInfoImpl.java | 4 ++-- .../ide/editor/signature/SignatureHelpImpl.java | 4 ++-- .../ide/editor/signature/SignatureInfoImpl.java | 4 ++-- .../ide/editor/sync/FullTextDocumentSynchronize.java | 4 ++-- .../sync/IncrementalTextDocumentSynchronize.java | 4 ++-- .../ide/editor/sync/TextDocumentSynchronize.java | 4 ++-- .../editor/sync/TextDocumentSynchronizeFactory.java | 4 ++-- .../ide/highlighting/OccurrencesProvider.java | 4 ++-- .../languageserver/ide/hover/HoverProvider.java | 4 ++-- .../ide/inject/LanguageServerGinModule.java | 4 ++-- .../ide/location/OpenLocationPresenter.java | 4 ++-- .../ide/location/OpenLocationPresenterFactory.java | 4 ++-- .../ide/location/OpenLocationView.java | 4 ++-- .../ide/location/OpenLocationViewImpl.java | 4 ++-- .../navigation/declaration/FindDefinitionAction.java | 4 ++-- .../navigation/references/FindReferencesAction.java | 4 ++-- .../ide/navigation/symbol/GoToSymbolAction.java | 4 ++-- .../ide/navigation/symbol/SymbolEntry.java | 4 ++-- .../ide/navigation/symbol/SymbolKindHelper.java | 4 ++-- .../ide/navigation/workspace/FindSymbolAction.java | 4 ++-- .../ide/navigation/workspace/SymbolEntry.java | 4 ++-- .../ide/quickopen/EditorQuickOpenEntry.java | 4 ++-- .../languageserver/ide/quickopen/QuickOpenEntry.java | 4 ++-- .../ide/quickopen/QuickOpenEntryGroup.java | 4 ++-- .../languageserver/ide/quickopen/QuickOpenModel.java | 4 ++-- .../ide/quickopen/QuickOpenPresenter.java | 4 ++-- .../languageserver/ide/quickopen/QuickOpenView.java | 4 ++-- .../ide/quickopen/QuickOpenViewImpl.java | 4 ++-- .../ide/quickopen/QuickOpenViewImpl.ui.xml | 4 ++-- .../languageserver/ide/quickopen/Renderer.java | 4 ++-- .../ide/registry/LanguageServerRegistry.java | 4 ++-- .../service/LanguageServerRegistryJsonRpcClient.java | 4 ++-- .../service/LanguageServerRegistryServiceClient.java | 4 ++-- .../ide/service/PublishDiagnosticsReceiver.java | 4 ++-- .../ide/service/ShowMessageJsonRpcReceiver.java | 4 ++-- .../ide/service/TextDocumentServiceClient.java | 4 ++-- .../ide/service/WorkspaceServiceClient.java | 4 ++-- .../languageserver/ide/util/DtoBuildHelper.java | 4 ++-- .../ide/util/OpenFileInEditorHelper.java | 4 ++-- .../che/api/languageserver/LanguageServer.gwt.xml | 4 ++-- .../che/plugin/languageserver/LanguageServer.gwt.xml | 4 ++-- .../ide/LanguageServerLocalization.properties | 4 ++-- .../che/plugin/languageserver/ide/QuickOpenList.css | 4 ++-- .../che/plugin/languageserver/ide/languageserver.css | 4 ++-- .../che/plugin/languageserver/ide/svg/category.svg | 4 ++-- .../languageserver/ide/svg/codeassist/class.svg | 4 ++-- .../languageserver/ide/svg/codeassist/enum_type.svg | 4 ++-- .../languageserver/ide/svg/codeassist/field.svg | 4 ++-- .../ide/svg/codeassist/generic_file.svg | 4 ++-- .../languageserver/ide/svg/codeassist/interface.svg | 4 ++-- .../languageserver/ide/svg/codeassist/local.svg | 4 ++-- .../languageserver/ide/svg/codeassist/method.svg | 4 ++-- .../languageserver/ide/svg/codeassist/package.svg | 4 ++-- .../languageserver/ide/svg/codeassist/property.svg | 4 ++-- .../languageserver/ide/svg/codeassist/template.svg | 4 ++-- .../languageserver/ide/svg/codeassist/text.svg | 4 ++-- .../languageserver/ide/svg/codeassist/value.svg | 4 ++-- .../che/plugin/languageserver/ide/svg/file.svg | 4 ++-- .../che/plugin/languageserver/ide/svg/find.svg | 4 ++-- .../che/plugin/languageserver/ide/svg/import.svg | 4 ++-- .../che/plugin/languageserver/ide/svg/mark-error.svg | 4 ++-- .../plugin/languageserver/ide/svg/mark-warning.svg | 4 ++-- .../che/plugin/languageserver/ide/svg/taskmrk.svg | 4 ++-- plugins/plugin-languageserver/pom.xml | 4 ++-- .../che-plugin-machine-ext-server/pom.xml | 4 ++-- .../che/ide/ext/machine/server/MachineModule.java | 4 ++-- .../che/ide/ext/machine/server/ssh/KeysInjector.java | 4 ++-- .../ide/ext/machine/server/ssh/WorkspaceSshKeys.java | 4 ++-- .../ide/ext/machine/server/ssh/KeysInjectorTest.java | 4 ++-- .../ext/machine/server/ssh/WorkspaceSshKeysTest.java | 4 ++-- .../che-plugin-machine-ssh-client/pom.xml | 4 ++-- .../eclipse/che/ide/ext/ssh/client/SshExtension.java | 4 ++-- .../ide/ext/ssh/client/SshLocalizationConstant.java | 4 ++-- .../eclipse/che/ide/ext/ssh/client/SshResources.java | 4 ++-- .../che/ide/ext/ssh/client/inject/SshGinModule.java | 4 ++-- .../ide/ext/ssh/client/manage/ShowSshKeyView.java | 4 ++-- .../ext/ssh/client/manage/ShowSshKeyViewImpl.java | 4 ++-- .../ext/ssh/client/manage/ShowSshKeyViewImpl.ui.xml | 4 ++-- .../ssh/client/manage/SshKeyManagerPresenter.java | 4 ++-- .../ide/ext/ssh/client/manage/SshKeyManagerView.java | 4 ++-- .../ext/ssh/client/manage/SshKeyManagerViewImpl.java | 4 ++-- .../ssh/client/manage/SshKeyManagerViewImpl.ui.xml | 4 ++-- .../ext/ssh/client/upload/UploadSshKeyPresenter.java | 4 ++-- .../ide/ext/ssh/client/upload/UploadSshKeyView.java | 4 ++-- .../ext/ssh/client/upload/UploadSshKeyViewImpl.java | 4 ++-- .../ssh/client/upload/UploadSshKeyViewImpl.ui.xml | 4 ++-- .../org/eclipse/che/ide/ext/ssh/MachineSsh.gwt.xml | 4 ++-- .../ssh/client/SshLocalizationConstant.properties | 4 ++-- plugins/plugin-machine/pom.xml | 4 ++-- .../che-plugin-maven-generator-archetype/pom.xml | 4 ++-- .../generator/archetype/ArchetypeGenerator.java | 4 ++-- .../generator/archetype/ArchetypeOutputImpl.java | 4 ++-- .../generator/archetype/MavenArchetypeImpl.java | 4 ++-- .../archetype/MavenArchetypeJsonRpcMessenger.java | 4 ++-- .../generator/archetype/ArchetypeGeneratorTest.java | 4 ++-- plugins/plugin-maven/che-plugin-maven-ide/pom.xml | 4 ++-- .../che/plugin/maven/client/MavenArchetype.java | 4 ++-- .../che/plugin/maven/client/MavenExtension.java | 4 ++-- .../che/plugin/maven/client/MavenJsonRpcHandler.java | 4 ++-- .../maven/client/MavenLocalizationConstant.java | 4 ++-- .../che/plugin/maven/client/MavenResources.java | 4 ++-- .../maven/client/actions/GetEffectivePomAction.java | 4 ++-- .../maven/client/actions/MavenActionsConstants.java | 4 ++-- .../actions/ReimportMavenDependenciesAction.java | 4 ++-- .../maven/client/command/MavenCommandModel.java | 4 ++-- .../client/command/MavenCommandPagePresenter.java | 4 ++-- .../maven/client/command/MavenCommandPageView.java | 4 ++-- .../client/command/MavenCommandPageViewImpl.java | 4 ++-- .../client/command/MavenCommandPageViewImpl.ui.xml | 4 ++-- .../maven/client/command/MavenCommandType.java | 4 ++-- .../client/comunnication/MavenMessagesHandler.java | 4 ++-- .../client/comunnication/PomEditorReconciler.java | 4 ++-- .../progressor/ResolveDependencyPresenter.java | 4 ++-- .../progressor/ResolveDependencyView.java | 4 ++-- .../progressor/ResolveDependencyViewImpl.java | 4 ++-- .../progressor/ResolveDependencyViewImpl.ui.xml | 4 ++-- .../background/BackgroundLoaderPresenter.java | 4 ++-- .../progressor/background/BackgroundLoaderView.java | 4 ++-- .../background/BackgroundLoaderViewImpl.java | 4 ++-- .../background/BackgroundLoaderViewImpl.ui.xml | 4 ++-- .../background/DependencyResolverAction.java | 4 ++-- .../client/editor/ClassFileSourcesDownloader.java | 4 ++-- .../plugin/maven/client/inject/MavenGinModule.java | 4 ++-- .../maven/client/project/MavenModelImporter.java | 4 ++-- .../project/ResolvingMavenProjectStateHolder.java | 4 ++-- .../client/resource/MavenProjectInterceptor.java | 4 ++-- .../resource/MavenSourceFolderInterceptor.java | 4 ++-- .../plugin/maven/client/resource/PomInterceptor.java | 4 ++-- .../client/service/MavenServerServiceClient.java | 4 ++-- .../client/service/MavenServerServiceClientImpl.java | 4 ++-- .../maven/client/wizard/MavenPagePresenter.java | 4 ++-- .../plugin/maven/client/wizard/MavenPageView.java | 4 ++-- .../maven/client/wizard/MavenPageViewImpl.java | 4 ++-- .../maven/client/wizard/MavenPageViewImpl.ui.xml | 4 ++-- .../client/wizard/MavenProjectWizardRegistrar.java | 4 ++-- .../org/eclipse/che/plugin/maven/Maven.gwt.xml | 4 ++-- .../org/eclipse/che/plugin/maven/client/Maven.css | 4 ++-- .../client/MavenLocalizationConstant.properties | 4 ++-- .../maven/client/command/maven-command-type.svg | 4 ++-- .../comunnication/progressor/background/Loader.css | 4 ++-- .../comunnication/progressor/background/error.svg | 4 ++-- .../progressor/background/loaderIcon.svg | 4 ++-- .../org/eclipse/che/plugin/maven/client/maven.svg | 4 ++-- .../maven/client/command/MavenCommandTypeTest.java | 4 ++-- .../maven/client/command/MavenPagePresenterTest.java | 4 ++-- .../comunnication/MavenMessagesHandlerTest.java | 4 ++-- .../progressor/ResolveDependencyPresenterTest.java | 4 ++-- .../background/DependencyResolverActionTest.java | 4 ++-- .../maven/client/wizard/MavenPagePresenterTest.java | 4 ++-- plugins/plugin-maven/che-plugin-maven-server/pom.xml | 4 ++-- .../che/plugin/maven/server/MavenServerManager.java | 4 ++-- .../che/plugin/maven/server/MavenServerWrapper.java | 4 ++-- .../che/plugin/maven/server/MavenWrapperManager.java | 4 ++-- .../plugin/maven/server/PomModificationDetector.java | 4 ++-- .../server/core/BufferOutputFixedRateSender.java | 4 ++-- .../maven/server/core/EclipseWorkspaceProvider.java | 4 ++-- .../maven/server/core/MavenClasspathContainer.java | 4 ++-- .../core/MavenClasspathContainerInitializer.java | 4 ++-- .../plugin/maven/server/core/MavenClasspathUtil.java | 4 ++-- .../plugin/maven/server/core/MavenCommunication.java | 4 ++-- .../maven/server/core/MavenExecutorService.java | 4 ++-- .../server/core/MavenJavaProjectConfigurator.java | 4 ++-- .../maven/server/core/MavenJsonRpcCommunication.java | 4 ++-- .../maven/server/core/MavenProgressNotifier.java | 4 ++-- .../maven/server/core/MavenProjectListener.java | 4 ++-- .../maven/server/core/MavenProjectManager.java | 4 ++-- .../maven/server/core/MavenProjectResolveTask.java | 4 ++-- .../plugin/maven/server/core/MavenProjectTask.java | 4 ++-- .../maven/server/core/MavenServerNotifier.java | 4 ++-- .../plugin/maven/server/core/MavenTaskExecutor.java | 4 ++-- .../plugin/maven/server/core/MavenTerminalImpl.java | 4 ++-- .../server/core/MavenWebSocketCommunication.java | 4 ++-- .../che/plugin/maven/server/core/MavenWorkspace.java | 4 ++-- .../server/core/classpath/ClasspathEntryHelper.java | 4 ++-- .../maven/server/core/classpath/ClasspathHelper.java | 4 ++-- .../server/core/classpath/ClasspathManager.java | 4 ++-- .../core/classpath/MavenLocalRepositoryUtil.java | 4 ++-- .../maven/server/core/project/MavenModelReader.java | 4 ++-- .../server/core/project/MavenModelReaderResult.java | 4 ++-- .../maven/server/core/project/MavenProject.java | 4 ++-- .../core/project/MavenProjectModifications.java | 4 ++-- .../maven/server/core/project/PomChangeListener.java | 4 ++-- .../maven/server/core/reconcile/PomReconciler.java | 10 ++++++++++ .../che/plugin/maven/server/inject/MavenModule.java | 4 ++-- .../maven/server/projecttype/MavenProjectType.java | 4 ++-- .../maven/server/projecttype/MavenValueProvider.java | 4 ++-- .../projecttype/MavenValueProviderFactory.java | 4 ++-- .../handler/ArchetypeGenerationStrategy.java | 4 ++-- .../projecttype/handler/GeneratorStrategy.java | 4 ++-- .../projecttype/handler/MavenProjectGenerator.java | 4 ++-- .../projecttype/handler/MavenProjectInitHandler.java | 4 ++-- .../projecttype/handler/SimpleGeneratorStrategy.java | 4 ++-- .../plugin/maven/server/rest/MavenServerService.java | 4 ++-- .../org/eclipse/che/plugin/maven/server/rmi/Ref.java | 4 ++-- .../che/plugin/maven/server/rmi/RmiClient.java | 4 ++-- .../plugin/maven/server/rmi/RmiObjectWrapper.java | 4 ++-- .../eclipse/che/plugin/maven/server/BaseTest.java | 4 ++-- .../che/plugin/maven/server/WorkspaceTest.java | 4 ++-- .../maven/server/classpath/ClasspathManagerTest.java | 4 ++-- .../maven/server/classpath/OutputPathTest.java | 4 ++-- .../server/core/project/MavenModelReaderTest.java | 4 ++-- .../server/core/reconcile/PomReconcilerTest.java | 4 ++-- .../server/projecttype/MavenProjectTypeTest.java | 4 ++-- .../server/projecttype/MavenValueProviderTest.java | 4 ++-- .../handler/MavenProjectGeneratorTest.java | 4 ++-- .../handler/SimpleGeneratorStrategyTest.java | 4 ++-- .../maven/server/rmi/MavenProjectManagerTest.java | 4 ++-- .../maven/server/rmi/MavenServerManagerTest.java | 4 ++-- .../src/test/resources/BadProject/pom.xml | 4 ++-- .../src/test/resources/EffectivePom/pom.xml | 4 ++-- .../src/test/resources/FirstProject/pom.xml | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../multi-module-with-profiles/module1/pom.xml | 4 ++-- .../multi-module-with-profiles/module2/pom.xml | 4 ++-- .../modulesX/module3/pom.xml | 4 ++-- .../modulesX/module4/pom.xml | 4 ++-- .../multi-module-with-profiles/modulesX/pom.xml | 4 ++-- .../resources/multi-module-with-profiles/pom.xml | 4 ++-- plugins/plugin-maven/che-plugin-maven-shared/pom.xml | 4 ++-- .../che/plugin/maven/shared/MavenArchetype.java | 4 ++-- .../che/plugin/maven/shared/MavenAttributes.java | 4 ++-- .../eclipse/che/plugin/maven/shared/MessageType.java | 4 ++-- .../che/plugin/maven/shared/dto/ArchetypeOutput.java | 4 ++-- .../plugin/maven/shared/dto/MavenArchetypeDto.java | 4 ++-- .../plugin/maven/shared/dto/MavenOutputEventDto.java | 4 ++-- .../che/plugin/maven/shared/dto/MavenProblem.java | 4 ++-- .../plugin/maven/shared/dto/NotificationMessage.java | 4 ++-- .../plugin/maven/shared/dto/PercentMessageDto.java | 4 ++-- .../maven/shared/dto/PercentUndefinedMessageDto.java | 4 ++-- .../maven/shared/dto/ProjectsUpdateMessage.java | 4 ++-- .../maven/shared/dto/StartStopNotification.java | 4 ++-- .../che/plugin/maven/shared/dto/TextMessageDto.java | 4 ++-- .../plugin/maven/shared/event/MavenOutputEvent.java | 4 ++-- .../maven/shared/event/MavenPercentMessageEvent.java | 4 ++-- .../shared/event/MavenPercentUndefinedEvent.java | 4 ++-- .../maven/shared/event/MavenStartStopEvent.java | 4 ++-- .../maven/shared/event/MavenTextMessageEvent.java | 4 ++-- .../plugin/maven/shared/event/MavenUpdateEvent.java | 4 ++-- .../maven/shared/impl/MavenOutputEventImpl.java | 4 ++-- .../maven/shared/impl/MavenPercentEventImpl.java | 4 ++-- .../shared/impl/MavenPercentUndefinedEventImpl.java | 4 ++-- .../maven/shared/impl/MavenStartStopEventImpl.java | 4 ++-- .../maven/shared/impl/MavenTextMessageEventImpl.java | 4 ++-- .../maven/shared/impl/MavenUpdateEventImpl.java | 4 ++-- plugins/plugin-maven/che-plugin-maven-tools/pom.xml | 4 ++-- .../org/eclipse/che/ide/maven/tools/Activation.java | 4 ++-- .../eclipse/che/ide/maven/tools/ActivationFile.java | 4 ++-- .../eclipse/che/ide/maven/tools/ActivationOS.java | 4 ++-- .../che/ide/maven/tools/ActivationProperty.java | 4 ++-- .../java/org/eclipse/che/ide/maven/tools/Build.java | 4 ++-- .../org/eclipse/che/ide/maven/tools/BuildBase.java | 4 ++-- .../eclipse/che/ide/maven/tools/Dependencies.java | 4 ++-- .../org/eclipse/che/ide/maven/tools/Dependency.java | 4 ++-- .../che/ide/maven/tools/DependencyManagement.java | 4 ++-- .../org/eclipse/che/ide/maven/tools/Exclusion.java | 4 ++-- .../eclipse/che/ide/maven/tools/MavenArtifact.java | 4 ++-- .../org/eclipse/che/ide/maven/tools/MavenUtils.java | 4 ++-- .../java/org/eclipse/che/ide/maven/tools/Model.java | 4 ++-- .../java/org/eclipse/che/ide/maven/tools/Parent.java | 4 ++-- .../java/org/eclipse/che/ide/maven/tools/Plugin.java | 4 ++-- .../org/eclipse/che/ide/maven/tools/Profile.java | 4 ++-- .../org/eclipse/che/ide/maven/tools/Repository.java | 4 ++-- .../che/ide/maven/tools/RepositoryPolicy.java | 4 ++-- .../org/eclipse/che/ide/maven/tools/Resource.java | 4 ++-- .../eclipse/che/ide/maven/tools/MavenUtilTest.java | 4 ++-- .../org/eclipse/che/ide/maven/tools/ModelTest.java | 4 ++-- .../src/test/resources/multi-module/module1/pom.xml | 4 ++-- .../src/test/resources/multi-module/module2/pom.xml | 4 ++-- .../resources/multi-module/modulesX/module3/pom.xml | 4 ++-- .../resources/multi-module/modulesX/module4/pom.xml | 4 ++-- .../src/test/resources/multi-module/modulesX/pom.xml | 4 ++-- .../src/test/resources/multi-module/pom.xml | 4 ++-- .../src/test/resources/no-packaging.xml | 4 ++-- .../src/test/resources/test-artifactId.xml | 4 ++-- .../src/test/resources/test-pom.xml | 4 ++-- .../plugin-maven/che-plugin-maven-wsmaster/pom.xml | 4 ++-- .../plugin/maven/MavenOptsEnvVariableProvider.java | 4 ++-- .../org/eclipse/che/plugin/maven/WsMasterModule.java | 4 ++-- .../maven-server/maven-server-api/pom.xml | 4 ++-- .../org/eclipse/che/maven/data/MavenActivation.java | 4 ++-- .../eclipse/che/maven/data/MavenActivationFile.java | 4 ++-- .../eclipse/che/maven/data/MavenActivationOS.java | 4 ++-- .../che/maven/data/MavenActivationProperty.java | 4 ++-- .../org/eclipse/che/maven/data/MavenArtifact.java | 4 ++-- .../org/eclipse/che/maven/data/MavenArtifactKey.java | 4 ++-- .../java/org/eclipse/che/maven/data/MavenBuild.java | 4 ++-- .../org/eclipse/che/maven/data/MavenBuildBase.java | 4 ++-- .../org/eclipse/che/maven/data/MavenConstants.java | 4 ++-- .../che/maven/data/MavenExplicitProfiles.java | 4 ++-- .../java/org/eclipse/che/maven/data/MavenKey.java | 4 ++-- .../java/org/eclipse/che/maven/data/MavenModel.java | 4 ++-- .../org/eclipse/che/maven/data/MavenModelBase.java | 4 ++-- .../java/org/eclipse/che/maven/data/MavenParent.java | 4 ++-- .../java/org/eclipse/che/maven/data/MavenPlugin.java | 4 ++-- .../eclipse/che/maven/data/MavenPluginExecution.java | 4 ++-- .../org/eclipse/che/maven/data/MavenProblemType.java | 4 ++-- .../org/eclipse/che/maven/data/MavenProfile.java | 4 ++-- .../eclipse/che/maven/data/MavenProjectProblem.java | 4 ++-- .../che/maven/data/MavenRemoteRepository.java | 4 ++-- .../che/maven/data/MavenRepositoryPolicy.java | 4 ++-- .../org/eclipse/che/maven/data/MavenResource.java | 4 ++-- .../eclipse/che/maven/data/MavenWorkspaceCache.java | 4 ++-- .../eclipse/che/maven/server/MavenProjectInfo.java | 4 ++-- .../eclipse/che/maven/server/MavenRemoteServer.java | 4 ++-- .../org/eclipse/che/maven/server/MavenServer.java | 4 ++-- .../maven/server/MavenServerDownloadListener.java | 4 ++-- .../eclipse/che/maven/server/MavenServerLogger.java | 4 ++-- .../maven/server/MavenServerProgressNotifier.java | 4 ++-- .../eclipse/che/maven/server/MavenServerResult.java | 4 ++-- .../org/eclipse/che/maven/server/MavenSettings.java | 4 ++-- .../org/eclipse/che/maven/server/MavenTerminal.java | 4 ++-- .../che/maven/server/ProfileApplicationResult.java | 4 ++-- .../java/org/eclipse/che/maven/util/JdomUtil.java | 4 ++-- .../src/main/java/org/eclipse/che/rmi/JNDI.java | 4 ++-- .../src/main/java/org/eclipse/che/rmi/RmiObject.java | 4 ++-- .../src/main/java/org/eclipse/che/rmi/RmiServer.java | 4 ++-- .../maven-server/maven-server-impl/pom.xml | 4 ++-- .../che/maven/server/ArtifactTransferListener.java | 4 ++-- .../che/maven/server/MavenFileProfileActivator.java | 4 ++-- .../org/eclipse/che/maven/server/MavenModelUtil.java | 4 ++-- .../che/maven/server/MavenRemoteServerImpl.java | 4 ++-- .../org/eclipse/che/maven/server/MavenResult.java | 4 ++-- .../org/eclipse/che/maven/server/MavenRmiObject.java | 4 ++-- .../eclipse/che/maven/server/MavenServerContext.java | 4 ++-- .../eclipse/che/maven/server/MavenServerImpl.java | 4 ++-- .../eclipse/che/maven/server/MavenServerMain.java | 4 ++-- .../server/MavenServerProgressNotifierImpl.java | 4 ++-- .../che/maven/server/MavenServerTerminalLogger.java | 4 ++-- .../che/maven/server/MavenWorkspaceReader.java | 4 ++-- .../che/maven/server/RuntimeRemoteException.java | 4 ++-- .../eclipse/che/maven/server/MavenServerTest.java | 4 ++-- .../che/maven/server/ProjectResolverTest.java | 4 ++-- .../src/test/resources/BadProject/pom.xml | 4 ++-- .../src/test/resources/ComplexPom/pom.xml | 4 ++-- .../src/test/resources/EffectivePom/pom.xml | 4 ++-- .../src/test/resources/FirstProject/pom.xml | 4 ++-- .../src/test/resources/SimplePom/pom.xml | 4 ++-- .../multi-module-with-profiles/dir/file.txt | 4 ++-- .../multi-module-with-profiles/module1/pom.xml | 4 ++-- .../multi-module-with-profiles/module2/pom.xml | 4 ++-- .../modulesX/module3/pom.xml | 4 ++-- .../modulesX/module4/pom.xml | 4 ++-- .../multi-module-with-profiles/modulesX/pom.xml | 4 ++-- .../resources/multi-module-with-profiles/pom.xml | 4 ++-- plugins/plugin-maven/maven-server/pom.xml | 4 ++-- plugins/plugin-maven/pom.xml | 4 ++-- .../che-plugin-nodejs-debugger-ide/pom.xml | 4 ++-- .../che/plugin/nodejsdbg/ide/NodeJsDebugger.java | 4 ++-- .../nodejsdbg/ide/NodeJsDebuggerExtension.java | 4 ++-- .../nodejsdbg/ide/NodeJsDebuggerGinModule.java | 4 ++-- .../ide/NodeJsDebuggerLocalizationConstant.java | 4 ++-- .../nodejsdbg/ide/NodeJsDebuggerResources.java | 4 ++-- .../NodeJsDebuggerConfigurationPagePresenter.java | 4 ++-- .../NodeJsDebuggerConfigurationPageView.java | 4 ++-- .../NodeJsDebuggerConfigurationPageViewImpl.java | 4 ++-- .../NodeJsDebuggerConfigurationPageViewImpl.ui.xml | 4 ++-- .../NodeJsDebuggerConfigurationType.java | 4 ++-- .../che/plugin/nodejsdbg/NodeJsDebugger.gwt.xml | 4 ++-- .../NodeJsDebuggerLocalizationConstant.properties | 4 ++-- .../nodejs-debugger-configuration-type.svg | 4 ++-- ...NodeJsDebuggerConfigurationPagePresenterTest.java | 4 ++-- .../NodeJsDebuggerConfigurationTypeTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../che-plugin-nodejs-debugger-server/pom.xml | 4 ++-- .../plugin/nodejsdbg/server/NodeJsDebugProcess.java | 4 ++-- .../che/plugin/nodejsdbg/server/NodeJsDebugger.java | 4 ++-- .../nodejsdbg/server/NodeJsDebuggerFactory.java | 4 ++-- .../nodejsdbg/server/NodeJsDebuggerModule.java | 4 ++-- .../che/plugin/nodejsdbg/server/NodeJsOutput.java | 4 ++-- .../nodejsdbg/server/NodeJsProcessObservable.java | 4 ++-- .../nodejsdbg/server/NodeJsProcessObserver.java | 4 ++-- .../che/plugin/nodejsdbg/server/OutputReader.java | 4 ++-- .../nodejsdbg/server/command/NodeJsDebugCommand.java | 4 ++-- .../server/command/NodeJsDebugCommandImpl.java | 4 ++-- .../server/command/NodeJsDebugCommandsLibrary.java | 4 ++-- .../server/exception/NodeJsDebuggerException.java | 4 ++-- .../exception/NodeJsDebuggerParseException.java | 4 ++-- .../exception/NodeJsDebuggerTerminatedException.java | 4 ++-- .../server/parser/NodeJsBackTraceParser.java | 4 ++-- .../server/parser/NodeJsBreakpointsParser.java | 4 ++-- .../nodejsdbg/server/parser/NodeJsOutputParser.java | 4 ++-- .../nodejsdbg/server/parser/NodeJsScriptsParser.java | 4 ++-- .../nodejsdbg/server/parser/NodeJsStepParser.java | 4 ++-- .../plugin/nodejsdbg/server/NodeJsDebuggerTest.java | 4 ++-- .../server/parser/NodeJsBackTraceParserTest.java | 4 ++-- .../server/parser/NodeJsBreakpointsParserTest.java | 4 ++-- .../server/parser/NodeJsScriptsParserTest.java | 4 ++-- .../server/parser/NodeJsStepParserTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- plugins/plugin-nodejs-debugger/pom.xml | 4 ++-- .../plugin-nodejs/che-plugin-nodejs-lang-ide/pom.xml | 4 ++-- .../che/plugin/nodejs/ide/NodeJsExtension.java | 4 ++-- .../che/plugin/nodejs/ide/NodeJsResources.java | 4 ++-- .../plugin/nodejs/ide/inject/NodeJsGinModule.java | 4 ++-- .../ide/project/NodeJsProjectWizardRegistrar.java | 4 ++-- .../org/eclipse/che/plugin/nodejs/NodeJs.gwt.xml | 4 ++-- .../org/eclipse/che/plugin/nodejs/ide/icons/js.svg | 4 ++-- .../che-plugin-nodejs-lang-server/pom.xml | 4 ++-- .../nodejs/generator/NodeJsProjectGenerator.java | 4 ++-- .../che/plugin/nodejs/inject/NodeJsModule.java | 4 ++-- .../plugin/nodejs/projecttype/NodeJsProjectType.java | 4 ++-- .../che-plugin-nodejs-lang-shared/pom.xml | 4 ++-- .../eclipse/che/plugin/nodejs/shared/Constants.java | 4 ++-- plugins/plugin-nodejs/pom.xml | 4 ++-- .../plugin-orion/che-plugin-orion-compare/pom.xml | 4 ++-- .../eclipse/che/ide/orion/compare/CompareConfig.java | 4 ++-- .../che/ide/orion/compare/CompareFactory.java | 4 ++-- .../che/ide/orion/compare/CompareFactoryImpl.java | 4 ++-- .../eclipse/che/ide/orion/compare/CompareWidget.java | 4 ++-- .../eclipse/che/ide/orion/compare/FileOptions.java | 4 ++-- .../che/ide/orion/compare/OrionCompareExtension.java | 4 ++-- .../che/ide/orion/compare/OrionCompareModule.java | 4 ++-- .../che/ide/orion/compare/jso/CompareConfigJs.java | 4 ++-- .../che/ide/orion/compare/jso/FileOptionsJs.java | 4 ++-- .../org/eclipse/che/ide/orion/OrionCompare.gwt.xml | 4 ++-- plugins/plugin-orion/che-plugin-orion-editor/pom.xml | 4 ++-- plugins/plugin-orion/pom.xml | 4 ++-- plugins/plugin-php/che-plugin-php-lang-ide/pom.xml | 4 ++-- .../org/eclipse/che/plugin/php/ide/PhpExtension.java | 4 ++-- .../che/plugin/php/ide/PhpLocalizationConstant.java | 4 ++-- .../org/eclipse/che/plugin/php/ide/PhpResources.java | 4 ++-- .../php/ide/action/CreatePhpSourceFileAction.java | 4 ++-- .../php/ide/action/NewPhplikeResourceAction.java | 4 ++-- .../che/plugin/php/ide/inject/PhpGinModule.java | 4 ++-- .../php/ide/project/PhpProjectWizardRegistrar.java | 4 ++-- .../resources/org/eclipse/che/plugin/php/Php.gwt.xml | 4 ++-- .../org/eclipse/che/plugin/php/ide/svg/category.svg | 4 ++-- .../org/eclipse/che/plugin/php/ide/svg/php_file.svg | 4 ++-- .../plugin-php/che-plugin-php-lang-server/pom.xml | 4 ++-- .../org/eclipse/che/plugin/php/inject/PhpModule.java | 4 ++-- .../languageserver/PhpLanguageServerLauncher.java | 4 ++-- .../plugin/php/projecttype/PhpProjectGenerator.java | 4 ++-- .../che/plugin/php/projecttype/PhpProjectType.java | 4 ++-- .../plugin-php/che-plugin-php-lang-shared/pom.xml | 4 ++-- .../org/eclipse/che/plugin/php/shared/Constants.java | 4 ++-- plugins/plugin-php/pom.xml | 4 ++-- plugins/plugin-product-info/pom.xml | 4 ++-- .../info/client/CheProductInfoDataProvider.java | 4 ++-- .../product/info/client/LocalizationConstant.java | 4 ++-- .../info/client/inject/ProductInfoGinModule.java | 4 ++-- .../che/plugin/product/info/ProductInfo.gwt.xml | 4 ++-- .../info/client/LocalizationConstant.properties | 4 ++-- .../che-plugin-pullrequest-ide/pom.xml | 4 ++-- .../pullrequest/client/ContributeMessages.java | 4 ++-- .../pullrequest/client/ContributeResources.java | 4 ++-- .../pullrequest/client/ContributionExtension.java | 4 ++-- .../client/ContributionMixinProvider.java | 4 ++-- .../client/dialogs/commit/CommitPresenter.java | 4 ++-- .../client/dialogs/commit/CommitView.java | 4 ++-- .../client/dialogs/commit/CommitViewImpl.java | 4 ++-- .../client/dialogs/commit/CommitViewImpl.ui.xml | 4 ++-- .../client/dialogs/commit/CommitViewUiBinder.java | 4 ++-- .../client/dialogs/paste/PasteAwareTextBox.java | 4 ++-- .../pullrequest/client/dialogs/paste/PasteEvent.java | 4 ++-- .../client/dialogs/paste/PasteHandler.java | 4 ++-- .../client/events/ContextInvalidatedEvent.java | 4 ++-- .../client/events/ContextInvalidatedHandler.java | 4 ++-- .../client/events/ContextPropertyChangeEvent.java | 4 ++-- .../client/events/ContextPropertyChangeHandler.java | 4 ++-- .../client/events/CurrentContextChangedEvent.java | 4 ++-- .../client/events/CurrentContextChangedHandler.java | 4 ++-- .../plugin/pullrequest/client/events/StepEvent.java | 4 ++-- .../pullrequest/client/events/StepHandler.java | 4 ++-- .../client/inject/PullRequestGinModule.java | 4 ++-- .../parts/contribute/ContributePartPresenter.java | 4 ++-- .../client/parts/contribute/ContributePartView.java | 4 ++-- .../parts/contribute/ContributePartViewImpl.java | 4 ++-- .../parts/contribute/ContributePartViewImpl.ui.xml | 4 ++-- .../parts/contribute/ContributePartViewUiBinder.java | 4 ++-- .../client/parts/contribute/StagesProvider.java | 4 ++-- .../client/parts/contribute/TextChangedHandler.java | 4 ++-- .../pullrequest/client/steps/AddForkRemoteStep.java | 4 ++-- .../client/steps/AddForkRemoteStepFactory.java | 4 ++-- .../client/steps/AddHttpForkRemoteStep.java | 4 ++-- .../client/steps/AddReviewFactoryLinkStep.java | 4 ++-- .../client/steps/AddSshForkRemoteStep.java | 4 ++-- .../client/steps/AuthorizeCodenvyOnVCSHostStep.java | 4 ++-- .../pullrequest/client/steps/CheckBranchToPush.java | 4 ++-- .../client/steps/CommitWorkingTreeStep.java | 4 ++-- .../pullrequest/client/steps/CreateForkStep.java | 4 ++-- .../client/steps/DefineExecutionConfiguration.java | 4 ++-- .../steps/DefineForkRemoteUrlProtocolStep.java | 4 ++-- .../client/steps/DefineWorkBranchStep.java | 4 ++-- .../client/steps/DetectPullRequestStep.java | 4 ++-- .../steps/DetermineUpstreamRepositoryStep.java | 4 ++-- .../client/steps/GenerateReviewFactoryStep.java | 4 ++-- .../client/steps/InitializeWorkflowContextStep.java | 4 ++-- .../client/steps/IssuePullRequestStep.java | 4 ++-- .../client/steps/PushBranchOnForkStep.java | 4 ++-- .../client/steps/PushBranchOnOriginStep.java | 4 ++-- .../pullrequest/client/steps/PushBranchStep.java | 4 ++-- .../client/steps/PushBranchStepFactory.java | 4 ++-- .../client/steps/UpdatePullRequestStep.java | 4 ++-- .../client/steps/WaitForkOnRemoteStep.java | 4 ++-- .../client/steps/WaitForkOnRemoteStepFactory.java | 4 ++-- .../pullrequest/client/utils/FactoryHelper.java | 4 ++-- .../client/vcs/BranchUpToDateException.java | 4 ++-- .../plugin/pullrequest/client/vcs/GitVcsService.java | 4 ++-- .../plugin/pullrequest/client/vcs/VcsService.java | 4 ++-- .../pullrequest/client/vcs/VcsServiceProvider.java | 4 ++-- .../client/vcs/hosting/HostingServiceTemplates.java | 4 ++-- .../vcs/hosting/NoCommitsInPullRequestException.java | 4 ++-- .../vcs/hosting/NoHistoryInCommonException.java | 4 ++-- .../client/vcs/hosting/NoPullRequestException.java | 4 ++-- .../client/vcs/hosting/NoUserForkException.java | 4 ++-- .../NoVcsHostingServiceImplementationException.java | 4 ++-- .../hosting/PullRequestAlreadyExistsException.java | 4 ++-- .../pullrequest/client/vcs/hosting/ServiceUtil.java | 4 ++-- .../client/vcs/hosting/VcsHostingService.java | 4 ++-- .../vcs/hosting/VcsHostingServiceProvider.java | 4 ++-- .../pullrequest/client/workflow/ChainExecutor.java | 4 ++-- .../plugin/pullrequest/client/workflow/Context.java | 4 ++-- .../client/workflow/ContributionWorkflow.java | 4 ++-- .../che/plugin/pullrequest/client/workflow/Step.java | 4 ++-- .../pullrequest/client/workflow/StepsChain.java | 4 ++-- .../pullrequest/client/workflow/SyntheticStep.java | 4 ++-- .../client/workflow/WorkflowExecutor.java | 4 ++-- .../pullrequest/client/workflow/WorkflowStatus.java | 4 ++-- .../che/plugin/pullrequest/PullRequest.gwt.xml | 4 ++-- .../che/plugin/pullrequest/client/Contribute.css | 4 ++-- .../pullrequest/client/ContributeMessages.properties | 4 ++-- .../che/plugin/pullrequest/client/images/refresh.svg | 4 ++-- .../che-plugin-pullrequest-server/pom.xml | 4 ++-- .../pullrequest/server/ContributionProjectType.java | 4 ++-- .../server/ContributionProjectTypeModule.java | 4 ++-- .../che-plugin-pullrequest-shared/pom.xml | 4 ++-- .../shared/ContributionProjectTypeConstants.java | 4 ++-- .../plugin/pullrequest/shared/dto/Configuration.java | 4 ++-- .../che/plugin/pullrequest/shared/dto/HostUser.java | 4 ++-- .../plugin/pullrequest/shared/dto/IssueComment.java | 4 ++-- .../plugin/pullrequest/shared/dto/PullRequest.java | 4 ++-- .../plugin/pullrequest/shared/dto/Repository.java | 4 ++-- plugins/plugin-pullrequest-parent/pom.xml | 4 ++-- .../plugin-python/che-plugin-python-lang-ide/pom.xml | 4 ++-- .../che/plugin/python/ide/PythonExtension.java | 4 ++-- .../python/ide/PythonLocalizationConstant.java | 4 ++-- .../che/plugin/python/ide/PythonResources.java | 4 ++-- .../python/ide/action/CreatePythonFileAction.java | 4 ++-- .../plugin/python/ide/inject/PythonGinModule.java | 4 ++-- .../ide/project/PythonProjectWizardRegistrar.java | 4 ++-- .../org/eclipse/che/plugin/python/Python.gwt.xml | 4 ++-- .../python/ide/PythonLocalizationConstant.properties | 4 ++-- .../org/eclipse/che/plugin/python/ide/svg/python.svg | 4 ++-- .../che-plugin-python-lang-server/pom.xml | 4 ++-- .../python/generator/PythonProjectGenerator.java | 4 ++-- .../che/plugin/python/inject/PythonModule.java | 4 ++-- .../languageserver/PythonLanguageSeverLauncher.java | 4 ++-- .../plugin/python/projecttype/PythonProjectType.java | 4 ++-- .../che-plugin-python-lang-shared/pom.xml | 4 ++-- .../che/plugin/python/shared/ProjectAttributes.java | 4 ++-- plugins/plugin-python/pom.xml | 4 ++-- .../plugin-sdk/che-plugin-sdk-ext-plugins/pom.xml | 4 ++-- .../che/ide/ext/plugins/client/GwtCheExtension.java | 4 ++-- .../che/ide/ext/plugins/client/PluginsGinModule.java | 4 ++-- .../plugins/client/PluginsLocalizationConstant.java | 4 ++-- .../che/ide/ext/plugins/client/PluginsResources.java | 4 ++-- .../plugins/client/command/GwtCheCommandModel.java | 4 ++-- .../client/command/GwtCheCommandPagePresenter.java | 4 ++-- .../client/command/GwtCheCommandPageView.java | 4 ++-- .../client/command/GwtCheCommandPageViewImpl.java | 4 ++-- .../client/command/GwtCheCommandPageViewImpl.ui.xml | 4 ++-- .../plugins/client/command/GwtCheCommandType.java | 4 ++-- .../che/ide/ext/plugins/PluginsDevelopment.gwt.xml | 4 ++-- .../client/PluginsLocalizationConstant.properties | 4 ++-- .../plugins/client/images/gwt-che-command-type.svg | 4 ++-- .../client/command/GwtChePagePresenterTest.java | 4 ++-- plugins/plugin-sdk/che-plugin-sdk-tools/pom.xml | 4 ++-- .../eclipse/che/ide/sdk/tools/InstallExtension.java | 4 ++-- plugins/plugin-sdk/pom.xml | 4 ++-- plugins/plugin-ssh-machine/pom.xml | 4 ++-- .../eclipse/che/plugin/machine/ssh/SshClient.java | 4 ++-- .../che/plugin/machine/ssh/SshMachineFactory.java | 4 ++-- .../che/plugin/machine/ssh/SshMachineInstance.java | 4 ++-- .../machine/ssh/SshMachineInstanceProvider.java | 4 ++-- .../che/plugin/machine/ssh/SshMachineModule.java | 4 ++-- .../che/plugin/machine/ssh/SshMachineProcess.java | 4 ++-- .../che/plugin/machine/ssh/SshMachineRecipe.java | 4 ++-- .../eclipse/che/plugin/machine/ssh/SshProcess.java | 4 ++-- .../ssh/exec/SshMachineExecAgentLauncher.java | 4 ++-- .../machine/ssh/exec/SshProcessLaunchedChecker.java | 4 ++-- .../che/plugin/machine/ssh/jsch/JschSshClient.java | 4 ++-- .../che/plugin/machine/ssh/jsch/JschSshProcess.java | 4 ++-- .../plugin/machine/ssh/jsch/JschUserInfoImpl.java | 4 ++-- .../machine/ssh/SshMachineInstanceProviderTest.java | 4 ++-- .../plugin/machine/ssh/SshMachineInstanceTest.java | 4 ++-- plugins/plugin-svn/che-plugin-svn-ext-ide/pom.xml | 4 ++-- .../che/plugin/svn/ide/SubversionClientService.java | 4 ++-- .../plugin/svn/ide/SubversionClientServiceImpl.java | 4 ++-- .../che/plugin/svn/ide/SubversionExtension.java | 4 ++-- .../SubversionExtensionLocalizationConstants.java | 4 ++-- .../plugin/svn/ide/SubversionExtensionResources.java | 4 ++-- .../java/org/eclipse/che/plugin/svn/ide/SvnUtil.java | 4 ++-- .../eclipse/che/plugin/svn/ide/action/AddAction.java | 4 ++-- .../che/plugin/svn/ide/action/ApplyPatchAction.java | 4 ++-- .../che/plugin/svn/ide/action/BranchTagAction.java | 4 ++-- .../che/plugin/svn/ide/action/CleanupAction.java | 4 ++-- .../che/plugin/svn/ide/action/CommitAction.java | 4 ++-- .../che/plugin/svn/ide/action/CopyAction.java | 4 ++-- .../che/plugin/svn/ide/action/CreatePatchAction.java | 4 ++-- .../che/plugin/svn/ide/action/DiffAction.java | 4 ++-- .../che/plugin/svn/ide/action/ExportAction.java | 4 ++-- .../che/plugin/svn/ide/action/LockAction.java | 4 ++-- .../eclipse/che/plugin/svn/ide/action/LogAction.java | 4 ++-- .../che/plugin/svn/ide/action/MergeAction.java | 4 ++-- .../che/plugin/svn/ide/action/MoveAction.java | 4 ++-- .../che/plugin/svn/ide/action/PropertiesAction.java | 4 ++-- .../che/plugin/svn/ide/action/RelocateAction.java | 4 ++-- .../che/plugin/svn/ide/action/RemoveAction.java | 4 ++-- .../che/plugin/svn/ide/action/RenameAction.java | 4 ++-- .../che/plugin/svn/ide/action/ResolveAction.java | 4 ++-- .../che/plugin/svn/ide/action/RevertAction.java | 4 ++-- .../che/plugin/svn/ide/action/StatusAction.java | 4 ++-- .../che/plugin/svn/ide/action/SubversionAction.java | 4 ++-- .../che/plugin/svn/ide/action/SwitchAction.java | 4 ++-- .../che/plugin/svn/ide/action/UnlockAction.java | 4 ++-- .../che/plugin/svn/ide/action/UpdateAction.java | 4 ++-- .../svn/ide/action/UpdateToRevisionAction.java | 4 ++-- .../eclipse/che/plugin/svn/ide/add/AddPresenter.java | 4 ++-- .../che/plugin/svn/ide/cleanup/CleanupPresenter.java | 4 ++-- .../che/plugin/svn/ide/commit/CommitPresenter.java | 4 ++-- .../che/plugin/svn/ide/commit/CommitView.java | 4 ++-- .../che/plugin/svn/ide/commit/CommitViewImpl.java | 4 ++-- .../che/plugin/svn/ide/commit/CommitViewImpl.ui.xml | 4 ++-- .../svn/ide/commit/diff/DiffViewerPresenter.java | 4 ++-- .../plugin/svn/ide/commit/diff/DiffViewerView.java | 4 ++-- .../svn/ide/commit/diff/DiffViewerViewImpl.java | 4 ++-- .../svn/ide/commit/diff/DiffViewerViewImpl.ui.xml | 4 ++-- .../che/plugin/svn/ide/common/StatusColors.java | 4 ++-- .../svn/ide/common/SubversionActionPresenter.java | 4 ++-- .../svn/ide/common/SubversionOutputConsole.java | 4 ++-- .../ide/common/SubversionOutputConsoleFactory.java | 4 ++-- .../ide/common/SubversionOutputConsolePresenter.java | 4 ++-- .../svn/ide/common/SubversionOutputConsoleView.java | 4 ++-- .../ide/common/SubversionOutputConsoleViewImpl.java | 4 ++-- .../common/SubversionOutputConsoleViewImpl.ui.xml | 4 ++-- .../svn/ide/common/threechoices/ChoiceDialog.java | 4 ++-- .../ide/common/threechoices/ChoiceDialogFactory.java | 4 ++-- .../ide/common/threechoices/ChoiceDialogFooter.java | 4 ++-- .../common/threechoices/ChoiceDialogFooter.ui.xml | 4 ++-- .../common/threechoices/ChoiceDialogPresenter.java | 4 ++-- .../ide/common/threechoices/ChoiceDialogView.java | 4 ++-- .../common/threechoices/ChoiceDialogViewImpl.java | 4 ++-- .../common/threechoices/ChoiceDialogViewImpl.ui.xml | 4 ++-- .../che/plugin/svn/ide/copy/CopyPresenter.java | 4 ++-- .../eclipse/che/plugin/svn/ide/copy/CopyView.java | 4 ++-- .../che/plugin/svn/ide/copy/CopyViewImpl.java | 4 ++-- .../che/plugin/svn/ide/copy/CopyViewImpl.ui.xml | 4 ++-- .../SubversionCredentialsDialogImpl.java | 4 ++-- .../SubversionCredentialsDialogView.java | 4 ++-- .../SubversionCredentialsDialogViewImpl.java | 4 ++-- .../SubversionCredentialsDialogViewImpl.ui.xml | 4 ++-- .../che/plugin/svn/ide/diff/DiffPresenter.java | 4 ++-- .../che/plugin/svn/ide/export/ExportPresenter.java | 4 ++-- .../che/plugin/svn/ide/export/ExportView.java | 4 ++-- .../che/plugin/svn/ide/export/ExportViewImpl.java | 4 ++-- .../che/plugin/svn/ide/export/ExportViewImpl.ui.xml | 4 ++-- .../importer/SubversionImportWizardRegistrar.java | 4 ++-- .../importer/SubversionProjectImporterPresenter.java | 4 ++-- .../ide/importer/SubversionProjectImporterView.java | 4 ++-- .../importer/SubversionProjectImporterViewImpl.java | 4 ++-- .../SubversionProjectImporterViewImpl.ui.xml | 4 ++-- .../plugin/svn/ide/inject/SubversionGinModule.java | 4 ++-- .../svn/ide/lockunlock/LockUnlockPresenter.java | 4 ++-- .../che/plugin/svn/ide/log/ShowLogPresenter.java | 4 ++-- .../eclipse/che/plugin/svn/ide/log/ShowLogsView.java | 4 ++-- .../che/plugin/svn/ide/log/ShowLogsViewImpl.java | 4 ++-- .../che/plugin/svn/ide/log/ShowLogsViewImpl.ui.xml | 4 ++-- .../che/plugin/svn/ide/merge/MergePresenter.java | 4 ++-- .../eclipse/che/plugin/svn/ide/merge/MergeView.java | 4 ++-- .../che/plugin/svn/ide/merge/MergeViewImpl.java | 4 ++-- .../che/plugin/svn/ide/merge/MergeViewImpl.ui.xml | 4 ++-- .../che/plugin/svn/ide/move/MovePresenter.java | 4 ++-- .../eclipse/che/plugin/svn/ide/move/MoveView.java | 4 ++-- .../che/plugin/svn/ide/move/MoveViewImpl.java | 4 ++-- .../che/plugin/svn/ide/move/MoveViewImpl.ui.xml | 4 ++-- .../svn/ide/property/PropertyEditorPresenter.java | 4 ++-- .../plugin/svn/ide/property/PropertyEditorView.java | 4 ++-- .../svn/ide/property/PropertyEditorViewImpl.java | 4 ++-- .../svn/ide/property/PropertyEditorViewImpl.ui.xml | 4 ++-- .../che/plugin/svn/ide/remove/RemovePresenter.java | 4 ++-- .../svn/ide/resolve/ConflictResolutionAction.java | 4 ++-- .../che/plugin/svn/ide/resolve/ResolvePresenter.java | 4 ++-- .../che/plugin/svn/ide/resolve/ResolveView.java | 4 ++-- .../che/plugin/svn/ide/resolve/ResolveViewImpl.java | 4 ++-- .../plugin/svn/ide/resolve/ResolveViewImpl.ui.xml | 4 ++-- .../che/plugin/svn/ide/revert/RevertPresenter.java | 4 ++-- .../che/plugin/svn/ide/status/StatusPresenter.java | 4 ++-- .../che/plugin/svn/ide/sw/LocationSelectorView.java | 4 ++-- .../plugin/svn/ide/sw/LocationSelectorViewImpl.java | 4 ++-- .../svn/ide/sw/LocationSelectorViewImpl.ui.xml | 4 ++-- .../org/eclipse/che/plugin/svn/ide/sw/SvnNode.java | 4 ++-- .../che/plugin/svn/ide/sw/SwitchPresenter.java | 4 ++-- .../eclipse/che/plugin/svn/ide/sw/SwitchView.java | 4 ++-- .../che/plugin/svn/ide/sw/SwitchViewImpl.java | 4 ++-- .../che/plugin/svn/ide/sw/SwitchViewImpl.ui.xml | 4 ++-- .../che/plugin/svn/ide/update/UpdatePresenter.java | 4 ++-- .../svn/ide/update/UpdateToRevisionPresenter.java | 4 ++-- .../plugin/svn/ide/update/UpdateToRevisionView.java | 4 ++-- .../svn/ide/update/UpdateToRevisionViewImpl.java | 4 ++-- .../svn/ide/update/UpdateToRevisionViewImpl.ui.xml | 4 ++-- .../org/eclipse/che/plugin/svn/Subversion.gwt.xml | 4 ++-- ...bversionExtensionLocalizationConstants.properties | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/add.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/alert.svg | 4 ++-- .../che/plugin/svn/ide/actions/apply-patch.svg | 4 ++-- .../che/plugin/svn/ide/actions/branch-tag.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/cleanup.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/commit.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/copy.svg | 4 ++-- .../che/plugin/svn/ide/actions/create-patch.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/delete.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/diff.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/export.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/lock.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/log.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/merge.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/move.svg | 4 ++-- .../che/plugin/svn/ide/actions/properties.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/relocate.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/rename.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/resolved.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/revert.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/status.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/actions/svn.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/switch.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/unlock.svg | 4 ++-- .../eclipse/che/plugin/svn/ide/actions/update.svg | 4 ++-- .../ide/importer/SubversionProjectImporterView.css | 4 ++-- .../org/eclipse/che/plugin/svn/ide/output-icon.svg | 4 ++-- .../org/eclipse/che/plugin/svn/ide/subversion.css | 4 ++-- .../SubversionProjectImporterPresenterTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- plugins/plugin-svn/che-plugin-svn-ext-server/pom.xml | 4 ++-- .../eclipse/che/plugin/svn/server/SubversionApi.java | 4 ++-- .../svn/server/SubversionConfigurationChecker.java | 4 ++-- .../che/plugin/svn/server/SubversionException.java | 4 ++-- .../che/plugin/svn/server/SubversionModule.java | 4 ++-- .../plugin/svn/server/SubversionProjectImporter.java | 4 ++-- .../che/plugin/svn/server/SubversionProjectType.java | 4 ++-- .../svn/server/SubversionValueProviderFactory.java | 4 ++-- .../svn/server/repository/RepositoryUrlProvider.java | 4 ++-- .../server/repository/RepositoryUrlProviderImpl.java | 4 ++-- .../plugin/svn/server/rest/SubversionService.java | 4 ++-- .../server/upstream/CommandLineOutputProcessor.java | 4 ++-- .../svn/server/upstream/CommandLineResult.java | 4 ++-- .../plugin/svn/server/upstream/UpstreamUtils.java | 4 ++-- .../che/plugin/svn/server/upstream/package-info.java | 4 ++-- .../che/plugin/svn/server/utils/InfoUtils.java | 4 ++-- .../che/plugin/svn/server/utils/SshEnvironment.java | 4 ++-- .../che/plugin/svn/server/utils/SubversionUtils.java | 4 ++-- .../che/plugin/svn/server/SubversionApiITest.java | 4 ++-- .../server/SubversionConfigurationCheckerTest.java | 4 ++-- .../svn/server/SubversionProjectImporterTest.java | 4 ++-- .../plugin/svn/server/utils/SubversionUtilsTest.java | 4 ++-- .../che/plugin/svn/server/utils/TestUtils.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- plugins/plugin-svn/che-plugin-svn-ext-shared/pom.xml | 4 ++-- .../eclipse/che/plugin/svn/shared/AddRequest.java | 4 ++-- .../che/plugin/svn/shared/CLIOutputParser.java | 4 ++-- .../che/plugin/svn/shared/CLIOutputResponse.java | 4 ++-- .../che/plugin/svn/shared/CLIOutputResponseList.java | 4 ++-- .../svn/shared/CLIOutputWithRevisionResponse.java | 4 ++-- .../che/plugin/svn/shared/CheckoutRequest.java | 4 ++-- .../che/plugin/svn/shared/CleanupRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/CommitRequest.java | 4 ++-- .../org/eclipse/che/plugin/svn/shared/Constants.java | 4 ++-- .../eclipse/che/plugin/svn/shared/CopyRequest.java | 4 ++-- .../org/eclipse/che/plugin/svn/shared/Depth.java | 4 ++-- .../che/plugin/svn/shared/GetRevisionsRequest.java | 4 ++-- .../che/plugin/svn/shared/GetRevisionsResponse.java | 4 ++-- .../che/plugin/svn/shared/ImportParameterKeys.java | 4 ++-- .../eclipse/che/plugin/svn/shared/InfoRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/InfoResponse.java | 4 ++-- .../eclipse/che/plugin/svn/shared/ListRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/ListResponse.java | 4 ++-- .../eclipse/che/plugin/svn/shared/LockRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/MergeRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/MoveRequest.java | 4 ++-- .../che/plugin/svn/shared/PropertyDeleteRequest.java | 4 ++-- .../che/plugin/svn/shared/PropertyGetRequest.java | 4 ++-- .../che/plugin/svn/shared/PropertyListRequest.java | 4 ++-- .../che/plugin/svn/shared/PropertyRequest.java | 4 ++-- .../che/plugin/svn/shared/PropertySetRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/RemoveRequest.java | 4 ++-- .../che/plugin/svn/shared/ResolveRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/RevertRequest.java | 4 ++-- .../che/plugin/svn/shared/ShowDiffRequest.java | 4 ++-- .../che/plugin/svn/shared/ShowLogRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/StatusItem.java | 4 ++-- .../eclipse/che/plugin/svn/shared/StatusRequest.java | 4 ++-- .../che/plugin/svn/shared/SubversionItem.java | 4 ++-- .../plugin/svn/shared/SubversionTypeConstant.java | 4 ++-- .../eclipse/che/plugin/svn/shared/SwitchRequest.java | 4 ++-- .../eclipse/che/plugin/svn/shared/UpdateRequest.java | 4 ++-- plugins/plugin-svn/pom.xml | 4 ++-- .../plugin-testing-classpath/pom.xml | 4 ++-- .../plugin/java/testing/AbstractJavaTestRunner.java | 4 ++-- .../java/testing/AnnotationSearchRequestor.java | 4 ++-- .../che/plugin/java/testing/ClasspathUtil.java | 4 ++-- .../che/plugin/java/testing/JavaTestAnnotations.java | 4 ++-- .../che/plugin/java/testing/JavaTestFinder.java | 4 ++-- .../java/testing/MavenTestClasspathProvider.java | 4 ++-- .../java/testing/ProjectClasspathProvider.java | 4 ++-- .../java/testing/TestClasspathGuiceModule.java | 4 ++-- .../plugin/java/testing/TestClasspathProvider.java | 4 ++-- .../plugin/java/testing/TestClasspathRegistry.java | 4 ++-- .../java/testing/ProjectClasspathProviderTest.java | 4 ++-- .../che-plugin-testing-junit-ide/pom.xml | 4 ++-- .../plugin/testing/junit/ide/JUnitTestAction.java | 4 ++-- .../junit/ide/JUnitTestLocalizationConstant.java | 4 ++-- .../plugin/testing/junit/ide/JUnitTestResources.java | 4 ++-- .../junit/ide/action/DebugJUnitTestAction.java | 4 ++-- .../testing/junit/ide/action/RunJUnitTestAction.java | 4 ++-- .../testing/junit/ide/inject/JUnitGinModule.java | 4 ++-- .../eclipse/che/plugin/testing/junit/JUnit.gwt.xml | 4 ++-- .../ide/JUnitTestLocalizationConstant.properties | 4 ++-- .../che/plugin/testing/junit/ide/svg/test.svg | 4 ++-- .../che-plugin-testing-junit-runtime/pom.xml | 4 ++-- .../org/eclipse/che/junit/TestingMessageHelper.java | 4 ++-- .../eclipse/che/junit/junit4/CheJUnitCoreRunner.java | 4 ++-- .../eclipse/che/junit/junit4/CheJUnitLauncher.java | 4 ++-- .../che/junit/junit4/JUnit4TestReference.java | 4 ++-- .../org/eclipse/che/junit/junit4/TestRunnerUtil.java | 4 ++-- .../junit/junit4/listeners/CheJUnitTestListener.java | 4 ++-- .../junit4/listeners/JUnitExecutionListener.java | 4 ++-- .../che-plugin-testing-junit-server/pom.xml | 4 ++-- .../plugin/testing/junit/server/JUnitTestRunner.java | 4 ++-- .../junit/server/inject/JunitGuiceModule.java | 4 ++-- .../junit/server/junit4/JUnit4TestRunner.java | 4 ++-- .../plugin-testing-java/plugin-testing-junit/pom.xml | 4 ++-- .../che-plugin-testing-testng-ide/pom.xml | 4 ++-- .../testng/ide/TestNgLocalizationConstant.java | 4 ++-- .../plugin/testing/testng/ide/TestNgResources.java | 4 ++-- .../plugin/testing/testng/ide/TestNgTestAction.java | 4 ++-- .../testng/ide/action/DebugTestNgTestAction.java | 4 ++-- .../testng/ide/action/RunTestNgTestAction.java | 4 ++-- .../testing/testng/ide/inject/TestNgGinModule.java | 4 ++-- .../eclipse/che/plugin/testing/testng/TestNG.gwt.xml | 4 ++-- .../testng/ide/TestNgLocalizationConstant.properties | 4 ++-- .../che/plugin/testing/testng/ide/svg/test.svg | 4 ++-- .../che-plugin-testing-testng-runtime/pom.xml | 4 ++-- .../src/main/java/org/testng/CheTestNG.java | 4 ++-- .../src/main/java/org/testng/CheTestNGLauncher.java | 4 ++-- .../src/main/java/org/testng/CheTestNGListener.java | 4 ++-- .../src/main/java/org/testng/TestResultWrapper.java | 4 ++-- .../main/java/org/testng/TestingMessageHelper.java | 4 ++-- .../testng/listeners/CheConfigurationListener.java | 4 ++-- .../testng/listeners/CheInvokedMethodListener.java | 4 ++-- .../java/org/testng/listeners/CheSuiteListener.java | 4 ++-- .../java/org/testng/listeners/CheTestListener.java | 4 ++-- .../java/org/testng/che/tests/ListeneterTest.java | 4 ++-- .../che-plugin-testing-testng-server/pom.xml | 4 ++-- .../plugin/testing/testng/server/TestNGRunner.java | 4 ++-- .../testing/testng/server/TestNGSuiteUtil.java | 4 ++-- .../testng/server/inject/TestNGGuiceModule.java | 4 ++-- .../che/plugin/testing/testng/server/BaseTest.java | 4 ++-- .../testing/testng/server/TestNGRunnerTest.java | 4 ++-- .../testng/server/TestNGTestDiscoveryTest.java | 4 ++-- .../plugin/testing/testng/server/TestSetUpUtil.java | 4 ++-- .../plugin-testing-testng/pom.xml | 4 ++-- plugins/plugin-testing-java/pom.xml | 4 ++-- plugins/plugin-testing/pom.xml | 4 ++-- plugins/plugin-traefik/plugin-traefik-docker/pom.xml | 4 ++-- .../traefik/TraefikCreateContainerInterceptor.java | 4 ++-- .../che/plugin/traefik/TraefikDockerModule.java | 4 ++-- .../TraefikCreateContainerInterceptorTest.java | 4 ++-- plugins/plugin-traefik/pom.xml | 4 ++-- plugins/plugin-urlfactory/pom.xml | 4 ++-- .../plugin/urlfactory/ProjectConfigDtoMerger.java | 4 ++-- .../eclipse/che/plugin/urlfactory/URLChecker.java | 4 ++-- .../che/plugin/urlfactory/URLFactoryBuilder.java | 4 ++-- .../eclipse/che/plugin/urlfactory/URLFetcher.java | 4 ++-- .../urlfactory/ProjectConfigDtoMergerTest.java | 4 ++-- .../che/plugin/urlfactory/URLCheckerTest.java | 4 ++-- .../che/plugin/urlfactory/URLFactoryBuilderTest.java | 4 ++-- .../che/plugin/urlfactory/URLFetcherTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- plugins/plugin-web/che-plugin-web-ext-server/pom.xml | 4 ++-- .../org/eclipse/che/plugin/web/inject/WebModule.java | 4 ++-- .../che/plugin/web/typescript/TSLSLauncher.java | 4 ++-- .../plugin/web/typescript/TypeScriptProjectType.java | 4 ++-- plugins/plugin-web/che-plugin-web-ext-shared/pom.xml | 4 ++-- .../org/eclipse/che/plugin/web/shared/Constants.java | 4 ++-- .../org/eclipse/che/plugin/web/WebShared.gwt.xml | 4 ++-- plugins/plugin-web/che-plugin-web-ext-web/pom.xml | 4 ++-- .../org/eclipse/che/ide/ext/web/WebExtension.java | 4 ++-- .../che/ide/ext/web/WebExtensionResource.java | 4 ++-- .../che/ide/ext/web/WebLocalizationConstant.java | 4 ++-- .../che/ide/ext/web/css/NewCssFileAction.java | 4 ++-- .../che/ide/ext/web/css/NewLessFileAction.java | 4 ++-- .../che/ide/ext/web/html/NewHtmlFileAction.java | 4 ++-- .../che/ide/ext/web/html/PreviewHTMLAction.java | 4 ++-- .../ext/web/html/editor/AutoEditStrategyFactory.java | 4 ++-- .../web/html/editor/DefaultCodeAssistProcessor.java | 4 ++-- .../ext/web/html/editor/HTMLCodeAssistProcessor.java | 4 ++-- .../html/editor/HTMLEditorConfigurationProvider.java | 4 ++-- .../ext/web/html/editor/HtmlEditorConfiguration.java | 4 ++-- .../ide/ext/web/html/editor/HtmlEditorProvider.java | 4 ++-- .../eclipse/che/ide/ext/web/inject/WebModule.java | 4 ++-- .../che/ide/ext/web/js/NewJavaScriptFileAction.java | 4 ++-- .../web/js/editor/DefaultCodeAssistProcessor.java | 4 ++-- .../ide/ext/web/js/editor/JsCodeAssistProcessor.java | 4 ++-- .../ide/ext/web/js/editor/JsEditorConfiguration.java | 4 ++-- .../web/js/editor/JsEditorConfigurationProvider.java | 4 ++-- .../che/ide/ext/web/js/editor/JsEditorProvider.java | 4 ++-- .../ext/web/typescript/TSProjectWizardRegistrar.java | 4 ++-- .../org/eclipse/che/ide/ext/web/Web.gwt.xml | 4 ++-- .../ide/ext/web/WebLocalizationConstant.properties | 4 ++-- .../org/eclipse/che/ide/ext/web/category/js.svg | 4 ++-- .../resources/org/eclipse/che/ide/ext/web/css.svg | 4 ++-- .../resources/org/eclipse/che/ide/ext/web/html.svg | 4 ++-- .../resources/org/eclipse/che/ide/ext/web/js.svg | 4 ++-- .../resources/org/eclipse/che/ide/ext/web/less.svg | 4 ++-- .../resources/org/eclipse/che/ide/ext/web/php.svg | 4 ++-- plugins/plugin-web/pom.xml | 4 ++-- plugins/pom.xml | 4 ++-- pom.xml | 4 ++-- samples/pom.xml | 4 ++-- .../che-sample-plugin-actions-ide/pom.xml | 4 ++-- .../sampleactions/ide/SampleActionsExtensions.java | 4 ++-- .../sampleactions/ide/SampleActionsResources.java | 4 ++-- .../sampleactions/ide/action/HelloWorldAction.java | 4 ++-- .../ide/action/HelloWorldActionWithIcon.java | 4 ++-- .../sampleactions/ide/action/NewMyFileAction.java | 4 ++-- .../che/plugin/sampleactions/SampleActions.gwt.xml | 4 ++-- .../che/plugin/sampleactions/ide/svg/icon.svg | 4 ++-- samples/sample-plugin-actions/pom.xml | 4 ++-- .../che-sample-plugin-embedjs-ide/pom.xml | 4 ++-- .../embedjsexample/ide/HelloWorldResources.java | 4 ++-- .../ide/HelloWorldViewExampleExtension.java | 4 ++-- .../embedjsexample/ide/action/HelloWorldAction.java | 4 ++-- .../plugin/embedjsexample/ide/common/Constants.java | 4 ++-- .../ide/inject/HelloWorldViewExampleGinModule.java | 4 ++-- .../embedjsexample/ide/view/HelloWorldView.java | 4 ++-- .../embedjsexample/ide/view/HelloWorldViewImpl.java | 4 ++-- .../ide/view/HelloWorldViewImpl.ui.xml | 4 ++-- .../ide/view/HelloWorldViewPresenter.java | 4 ++-- .../ide/view/client/jso/HelloWorldViewOverlay.java | 4 ++-- .../che/plugin/embedjsexample/EmbedJSExample.gwt.xml | 4 ++-- .../che/plugin/embedjsexample/ide/svg/icon.svg | 4 ++-- .../che/plugin/embedjsexample/public/helloworld.js | 4 ++-- samples/sample-plugin-embedjs/pom.xml | 4 ++-- .../che-sample-plugin-filetype-ide/pom.xml | 4 ++-- .../che/plugin/filetype/ide/MyFileTypeExtension.java | 4 ++-- .../eclipse/che/plugin/filetype/ide/MyResources.java | 4 ++-- .../filetype/ide/action/CreateMyFileAction.java | 4 ++-- .../che/plugin/filetype/ide/inject/MyGinModule.java | 4 ++-- .../eclipse/che/plugin/filetype/MyFileType.gwt.xml | 4 ++-- .../org/eclipse/che/plugin/filetype/ide/icons/my.svg | 4 ++-- samples/sample-plugin-filetype/pom.xml | 4 ++-- .../che-sample-plugin-json-ide/pom.xml | 4 ++-- .../jsonexample/ide/JsonExampleEditorExtension.java | 4 ++-- .../plugin/jsonexample/ide/JsonExampleExtension.java | 4 ++-- .../plugin/jsonexample/ide/JsonExampleResources.java | 4 ++-- .../jsonexample/ide/action/CountLinesAction.java | 4 ++-- .../jsonexample/ide/action/HelloWorldAction.java | 4 ++-- .../ide/action/JsonExampleProjectAction.java | 4 ++-- .../ide/editor/JsonExampleCodeAssistClient.java | 4 ++-- .../ide/editor/JsonExampleCodeAssistProcessor.java | 4 ++-- .../ide/editor/JsonExampleEditorConfiguration.java | 4 ++-- .../JsonExampleEditorConfigurationProvider.java | 4 ++-- .../ide/editor/JsonExampleEditorProvider.java | 4 ++-- .../jsonexample/ide/editor/SimpleCompletion.java | 4 ++-- .../ide/editor/SimpleCompletionProposal.java | 4 ++-- .../ide/editor/StringListUnmarshaller.java | 4 ++-- .../jsonexample/ide/inject/JsonExampleModule.java | 4 ++-- .../project/JsonExampleProjectWizardRegistrar.java | 4 ++-- .../ide/project/SchemaUrlChangedDelegate.java | 4 ++-- .../jsonexample/ide/project/SchemaUrlPageView.java | 4 ++-- .../ide/project/SchemaUrlPageViewImpl.java | 4 ++-- .../ide/project/SchemaUrlPageViewImpl.ui.xml | 4 ++-- .../jsonexample/ide/project/SchemaUrlWizardPage.java | 4 ++-- .../che/plugin/jsonexample/JSONExample.gwt.xml | 4 ++-- .../che/plugin/jsonexample/ide/svg/completion.svg | 4 ++-- .../eclipse/che/plugin/jsonexample/ide/svg/icon.svg | 4 ++-- .../che-sample-plugin-json-server/pom.xml | 4 ++-- .../jsonexample/JsonExampleCompletionService.java | 4 ++-- .../che/plugin/jsonexample/JsonLocService.java | 4 ++-- .../generator/JsonExampleCreateProjectHandler.java | 4 ++-- .../jsonexample/inject/JsonExampleGuiceModule.java | 4 ++-- .../projecttype/JsonExampleProjectType.java | 4 ++-- .../che-sample-plugin-json-shared/pom.xml | 4 ++-- .../che/plugin/jsonexample/shared/Constants.java | 4 ++-- samples/sample-plugin-json/pom.xml | 4 ++-- .../che-sample-plugin-nativeaccess-ide/pom.xml | 4 ++-- .../ide/NativeAccessExampleExtension.java | 4 ++-- .../ide/action/RunNativeCommandAction.java | 4 ++-- .../machine/client/command/CommandManager.java | 4 ++-- .../nativeaccessexample/NativeAccessExample.gwt.xml | 4 ++-- samples/sample-plugin-nativeaccess/pom.xml | 4 ++-- .../che-sample-plugin-parts-ide/pom.xml | 4 ++-- .../che/plugin/parts/ide/SamplePartsExtension.java | 4 ++-- .../che/plugin/parts/ide/SamplePartsResources.java | 4 ++-- .../ide/helloworldview/HelloWorldPresenter.java | 4 ++-- .../parts/ide/helloworldview/HelloWorldView.java | 4 ++-- .../ide/helloworldview/HelloWorldViewAction.java | 4 ++-- .../parts/ide/helloworldview/HelloWorldViewImpl.java | 4 ++-- .../che/plugin/parts/ide/inject/MyGinModule.java | 4 ++-- .../org/eclipse/che/plugin/parts/SampleParts.gwt.xml | 4 ++-- .../org/eclipse/che/plugin/parts/ide/icons/my.svg | 4 ++-- samples/sample-plugin-parts/pom.xml | 4 ++-- .../che-sample-plugin-serverservice-ide/pom.xml | 4 ++-- .../plugin/serverservice/ide/MyServiceClient.java | 4 ++-- .../serverservice/ide/ServerServiceExtension.java | 4 ++-- .../plugin/serverservice/ide/action/MyAction.java | 4 ++-- .../che/plugin/serverservice/ServerService.gwt.xml | 4 ++-- .../che-sample-plugin-serverservice-server/pom.xml | 4 ++-- .../eclipse/che/plugin/serverservice/MyService.java | 4 ++-- .../inject/ServerServiceGuiceModule.java | 4 ++-- samples/sample-plugin-serverservice/pom.xml | 4 ++-- .../che-sample-plugin-wizard-ide/pom.xml | 4 ++-- .../sample/wizard/ide/SampleWizardExtension.java | 4 ++-- .../wizard/ide/SampleWizardLocalizationConstant.java | 4 ++-- .../sample/wizard/ide/SampleWizardResources.java | 4 ++-- .../sample/wizard/ide/action/NewXFileAction.java | 4 ++-- .../sample/wizard/ide/action/SampleAction.java | 4 ++-- .../sample/wizard/ide/file/NewXFilePresenter.java | 4 ++-- .../plugin/sample/wizard/ide/file/NewXFileView.java | 4 ++-- .../sample/wizard/ide/file/NewXFileViewImpl.java | 4 ++-- .../sample/wizard/ide/file/NewXFileViewImpl.ui.xml | 4 ++-- .../wizard/ide/inject/SampleWizardGinModule.java | 4 ++-- .../wizard/ide/wizard/SamplePagePresenter.java | 4 ++-- .../sample/wizard/ide/wizard/SamplePageView.java | 4 ++-- .../sample/wizard/ide/wizard/SamplePageViewImpl.java | 4 ++-- .../wizard/ide/wizard/SamplePageViewImpl.ui.xml | 4 ++-- .../wizard/ide/wizard/SampleWizardRegistrar.java | 4 ++-- .../che/plugin/sample/wizard/SampleWizard.gwt.xml | 4 ++-- .../ide/SampleWizardLocalizationConstant.properties | 4 ++-- .../che/plugin/sample/wizard/ide/svg/c_file.svg | 4 ++-- .../che/plugin/sample/wizard/ide/svg/category.svg | 4 ++-- .../che-sample-plugin-wizard-server/pom.xml | 4 ++-- .../sample/wizard/inject/SampleWizardModule.java | 4 ++-- .../sample/wizard/projecttype/SampleProjectType.java | 4 ++-- .../che-sample-plugin-wizard-shared/pom.xml | 4 ++-- .../che/plugin/sample/wizard/shared/Constants.java | 4 ++-- samples/sample-plugin-wizard/pom.xml | 4 ++-- wsagent/activity/pom.xml | 4 ++-- .../che/api/activity/LastAccessTimeFilter.java | 4 ++-- .../che/api/activity/WorkspaceActivityNotifier.java | 4 ++-- .../che/api/activity/LastAccessTimeFilterTest.java | 4 ++-- .../api/activity/WorkspaceActivityNotifierTest.java | 4 ++-- wsagent/agent/pom.xml | 4 ++-- .../main/java/org/eclipse/che/api/agent/WsAgent.java | 4 ++-- .../org/eclipse/che/api/agent/WsAgentLauncher.java | 4 ++-- .../resources/org.eclipse.che.ws-agent.script.sh | 4 ++-- .../eclipse/che/api/agent/WsAgentLauncherTest.java | 4 ++-- wsagent/che-core-api-debug-shared/pom.xml | 4 ++-- .../che/api/debug/shared/dto/BreakpointDto.java | 4 ++-- .../che/api/debug/shared/dto/DebugSessionDto.java | 4 ++-- .../che/api/debug/shared/dto/DebuggerInfoDto.java | 4 ++-- .../eclipse/che/api/debug/shared/dto/FieldDto.java | 4 ++-- .../che/api/debug/shared/dto/LocationDto.java | 4 ++-- .../che/api/debug/shared/dto/SimpleValueDto.java | 4 ++-- .../che/api/debug/shared/dto/StackFrameDumpDto.java | 4 ++-- .../che/api/debug/shared/dto/VariableDto.java | 4 ++-- .../che/api/debug/shared/dto/VariablePathDto.java | 4 ++-- .../che/api/debug/shared/dto/action/ActionDto.java | 4 ++-- .../api/debug/shared/dto/action/ResumeActionDto.java | 4 ++-- .../api/debug/shared/dto/action/StartActionDto.java | 4 ++-- .../debug/shared/dto/action/StepIntoActionDto.java | 4 ++-- .../debug/shared/dto/action/StepOutActionDto.java | 4 ++-- .../debug/shared/dto/action/StepOverActionDto.java | 4 ++-- .../debug/shared/dto/action/SuspendActionDto.java | 4 ++-- .../dto/event/BreakpointActivatedEventDto.java | 4 ++-- .../api/debug/shared/dto/event/DebuggerEventDto.java | 4 ++-- .../debug/shared/dto/event/DisconnectEventDto.java | 4 ++-- .../api/debug/shared/dto/event/SuspendEventDto.java | 4 ++-- .../che/api/debug/shared/model/Breakpoint.java | 4 ++-- .../che/api/debug/shared/model/DebugSession.java | 4 ++-- .../che/api/debug/shared/model/DebuggerInfo.java | 4 ++-- .../eclipse/che/api/debug/shared/model/Field.java | 4 ++-- .../eclipse/che/api/debug/shared/model/Location.java | 4 ++-- .../che/api/debug/shared/model/MutableVariable.java | 4 ++-- .../che/api/debug/shared/model/SimpleValue.java | 4 ++-- .../che/api/debug/shared/model/StackFrameDump.java | 4 ++-- .../eclipse/che/api/debug/shared/model/Variable.java | 4 ++-- .../che/api/debug/shared/model/VariablePath.java | 4 ++-- .../che/api/debug/shared/model/action/Action.java | 4 ++-- .../api/debug/shared/model/action/ResumeAction.java | 4 ++-- .../api/debug/shared/model/action/StartAction.java | 4 ++-- .../debug/shared/model/action/StepIntoAction.java | 4 ++-- .../api/debug/shared/model/action/StepOutAction.java | 4 ++-- .../debug/shared/model/action/StepOverAction.java | 4 ++-- .../api/debug/shared/model/action/SuspendAction.java | 4 ++-- .../shared/model/event/BreakpointActivatedEvent.java | 4 ++-- .../api/debug/shared/model/event/DebuggerEvent.java | 4 ++-- .../debug/shared/model/event/DisconnectEvent.java | 4 ++-- .../api/debug/shared/model/event/SuspendEvent.java | 4 ++-- .../api/debug/shared/model/impl/BreakpointImpl.java | 4 ++-- .../debug/shared/model/impl/DebugSessionImpl.java | 4 ++-- .../debug/shared/model/impl/DebuggerInfoImpl.java | 4 ++-- .../che/api/debug/shared/model/impl/FieldImpl.java | 4 ++-- .../api/debug/shared/model/impl/LocationImpl.java | 4 ++-- .../debug/shared/model/impl/MutableVariableImpl.java | 4 ++-- .../api/debug/shared/model/impl/SimpleValueImpl.java | 4 ++-- .../debug/shared/model/impl/StackFrameDumpImpl.java | 4 ++-- .../api/debug/shared/model/impl/VariableImpl.java | 4 ++-- .../debug/shared/model/impl/VariablePathImpl.java | 4 ++-- .../debug/shared/model/impl/action/ActionImpl.java | 4 ++-- .../shared/model/impl/action/ResumeActionImpl.java | 4 ++-- .../shared/model/impl/action/StartActionImpl.java | 4 ++-- .../shared/model/impl/action/StepIntoActionImpl.java | 4 ++-- .../shared/model/impl/action/StepOutActionImpl.java | 4 ++-- .../shared/model/impl/action/StepOverActionImpl.java | 4 ++-- .../shared/model/impl/action/SuspendActionImpl.java | 4 ++-- .../impl/event/BreakpointActivatedEventImpl.java | 4 ++-- .../shared/model/impl/event/DebuggerEventImpl.java | 4 ++-- .../shared/model/impl/event/DisconnectEventImpl.java | 4 ++-- .../shared/model/impl/event/SuspendEventImpl.java | 4 ++-- wsagent/che-core-api-debug/pom.xml | 4 ++-- .../eclipse/che/api/debugger/server/Debugger.java | 4 ++-- .../api/debugger/server/DebuggerActionProvider.java | 4 ++-- .../che/api/debugger/server/DebuggerFactory.java | 4 ++-- .../debugger/server/DebuggerJsonRpcMessenger.java | 4 ++-- .../che/api/debugger/server/DebuggerManager.java | 4 ++-- .../che/api/debugger/server/DebuggerMessage.java | 4 ++-- .../che/api/debugger/server/DebuggerModule.java | 4 ++-- .../che/api/debugger/server/DebuggerService.java | 4 ++-- .../debugger/server/DebuggerWebSocketMessenger.java | 4 ++-- .../che/api/debugger/server/DtoConverter.java | 4 ++-- .../server/exceptions/DebuggerException.java | 4 ++-- .../server/exceptions/DebuggerNotFoundException.java | 4 ++-- wsagent/che-core-api-git-shared/pom.xml | 4 ++-- .../org/eclipse/che/api/git/shared/AddRequest.java | 4 ++-- .../java/org/eclipse/che/api/git/shared/Branch.java | 4 ++-- .../che/api/git/shared/BranchCreateRequest.java | 4 ++-- .../eclipse/che/api/git/shared/BranchListMode.java | 4 ++-- .../eclipse/che/api/git/shared/CheckoutRequest.java | 4 ++-- .../org/eclipse/che/api/git/shared/CloneRequest.java | 4 ++-- .../eclipse/che/api/git/shared/CommitRequest.java | 4 ++-- .../org/eclipse/che/api/git/shared/Commiters.java | 4 ++-- .../eclipse/che/api/git/shared/ConfigRequest.java | 4 ++-- .../che/api/git/shared/ConflictExceptionError.java | 4 ++-- .../org/eclipse/che/api/git/shared/Constants.java | 4 ++-- .../eclipse/che/api/git/shared/DiffCommitFile.java | 4 ++-- .../org/eclipse/che/api/git/shared/DiffType.java | 4 ++-- .../org/eclipse/che/api/git/shared/FetchRequest.java | 4 ++-- .../eclipse/che/api/git/shared/GitCheckoutEvent.java | 4 ++-- .../eclipse/che/api/git/shared/GitUrlVendorInfo.java | 4 ++-- .../java/org/eclipse/che/api/git/shared/GitUser.java | 4 ++-- .../org/eclipse/che/api/git/shared/IndexFile.java | 4 ++-- .../java/org/eclipse/che/api/git/shared/Log.java | 4 ++-- .../org/eclipse/che/api/git/shared/LogResponse.java | 4 ++-- .../org/eclipse/che/api/git/shared/MergeRequest.java | 4 ++-- .../org/eclipse/che/api/git/shared/MergeResult.java | 4 ++-- .../org/eclipse/che/api/git/shared/MoveRequest.java | 4 ++-- .../org/eclipse/che/api/git/shared/ProviderInfo.java | 4 ++-- .../org/eclipse/che/api/git/shared/PullRequest.java | 4 ++-- .../org/eclipse/che/api/git/shared/PullResponse.java | 4 ++-- .../org/eclipse/che/api/git/shared/PushRequest.java | 4 ++-- .../org/eclipse/che/api/git/shared/PushResponse.java | 4 ++-- .../eclipse/che/api/git/shared/RebaseRequest.java | 4 ++-- .../eclipse/che/api/git/shared/RebaseResponse.java | 4 ++-- .../java/org/eclipse/che/api/git/shared/Remote.java | 4 ++-- .../eclipse/che/api/git/shared/RemoteAddRequest.java | 4 ++-- .../eclipse/che/api/git/shared/RemoteReference.java | 4 ++-- .../che/api/git/shared/RemoteUpdateRequest.java | 4 ++-- .../org/eclipse/che/api/git/shared/RepoInfo.java | 4 ++-- .../org/eclipse/che/api/git/shared/ResetRequest.java | 4 ++-- .../org/eclipse/che/api/git/shared/Revision.java | 4 ++-- .../org/eclipse/che/api/git/shared/RmRequest.java | 4 ++-- .../che/api/git/shared/ShowFileContentResponse.java | 4 ++-- .../java/org/eclipse/che/api/git/shared/Status.java | 4 ++-- .../org/eclipse/che/api/git/shared/StatusFormat.java | 4 ++-- .../java/org/eclipse/che/api/git/shared/Tag.java | 4 ++-- .../eclipse/che/api/git/shared/TagCreateRequest.java | 4 ++-- wsagent/che-core-api-git/pom.xml | 4 ++-- .../org/eclipse/che/api/git/BranchListWriter.java | 4 ++-- .../org/eclipse/che/api/git/CommitMessageWriter.java | 4 ++-- .../main/java/org/eclipse/che/api/git/Config.java | 4 ++-- .../org/eclipse/che/api/git/CredentialsLoader.java | 4 ++-- .../org/eclipse/che/api/git/CredentialsProvider.java | 4 ++-- .../main/java/org/eclipse/che/api/git/DiffPage.java | 4 ++-- .../GitBasicAuthenticationCredentialsProvider.java | 4 ++-- .../org/eclipse/che/api/git/GitCheckoutDetector.java | 4 ++-- .../eclipse/che/api/git/GitConfigurationChecker.java | 4 ++-- .../java/org/eclipse/che/api/git/GitConnection.java | 4 ++-- .../eclipse/che/api/git/GitConnectionFactory.java | 4 ++-- .../org/eclipse/che/api/git/GitExceptionMapper.java | 4 ++-- .../org/eclipse/che/api/git/GitJsonRpcMessenger.java | 4 ++-- .../main/java/org/eclipse/che/api/git/GitModule.java | 4 ++-- .../org/eclipse/che/api/git/GitProjectImporter.java | 4 ++-- .../java/org/eclipse/che/api/git/GitProjectType.java | 4 ++-- .../java/org/eclipse/che/api/git/GitService.java | 4 ++-- .../java/org/eclipse/che/api/git/GitUrlUtils.java | 4 ++-- .../org/eclipse/che/api/git/GitUserResolver.java | 4 ++-- .../eclipse/che/api/git/GitValueProviderFactory.java | 4 ++-- .../eclipse/che/api/git/GitWebSocketMessenger.java | 4 ++-- .../main/java/org/eclipse/che/api/git/InfoPage.java | 4 ++-- .../eclipse/che/api/git/LocalGitUserResolver.java | 4 ++-- .../main/java/org/eclipse/che/api/git/LogPage.java | 4 ++-- .../org/eclipse/che/api/git/MergeResultWriter.java | 4 ++-- .../org/eclipse/che/api/git/RemoteListWriter.java | 4 ++-- .../org/eclipse/che/api/git/StatusPageWriter.java | 4 ++-- .../java/org/eclipse/che/api/git/TagListWriter.java | 4 ++-- .../java/org/eclipse/che/api/git/UserCredential.java | 4 ++-- .../che/api/git/exception/GitConflictException.java | 4 ++-- .../eclipse/che/api/git/exception/GitException.java | 4 ++-- .../git/exception/GitInvalidRefNameException.java | 4 ++-- .../git/exception/GitRefAlreadyExistsException.java | 4 ++-- .../api/git/exception/GitRefNotFoundException.java | 4 ++-- .../org/eclipse/che/api/git/params/AddParams.java | 4 ++-- .../eclipse/che/api/git/params/CheckoutParams.java | 4 ++-- .../org/eclipse/che/api/git/params/CloneParams.java | 4 ++-- .../org/eclipse/che/api/git/params/CommitParams.java | 4 ++-- .../org/eclipse/che/api/git/params/DiffParams.java | 4 ++-- .../org/eclipse/che/api/git/params/FetchParams.java | 4 ++-- .../org/eclipse/che/api/git/params/LogParams.java | 4 ++-- .../eclipse/che/api/git/params/LsFilesParams.java | 4 ++-- .../org/eclipse/che/api/git/params/PullParams.java | 4 ++-- .../org/eclipse/che/api/git/params/PushParams.java | 4 ++-- .../eclipse/che/api/git/params/RemoteAddParams.java | 4 ++-- .../che/api/git/params/RemoteUpdateParams.java | 4 ++-- .../org/eclipse/che/api/git/params/ResetParams.java | 4 ++-- .../org/eclipse/che/api/git/params/RmParams.java | 4 ++-- .../eclipse/che/api/git/params/TagCreateParams.java | 4 ++-- .../che/api/git/GitConfigurationCheckerTest.java | 4 ++-- .../org/eclipse/che/api/git/GitUrlUtilsTest.java | 4 ++-- .../che/api/git/LocalGitUserResolverTest.java | 4 ++-- .../test/java/org/eclipse/che/git/impl/AddTest.java | 4 ++-- .../org/eclipse/che/git/impl/BranchCreateTest.java | 4 ++-- .../org/eclipse/che/git/impl/BranchDeleteTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/CheckoutTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/CloneTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/CommitTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/ConfigTest.java | 4 ++-- .../test/java/org/eclipse/che/git/impl/DiffTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/FetchTest.java | 4 ++-- .../org/eclipse/che/git/impl/GetCommitersTest.java | 4 ++-- .../che/git/impl/GitConnectionFactoryProvider.java | 4 ++-- .../java/org/eclipse/che/git/impl/GitTestUtil.java | 4 ++-- .../test/java/org/eclipse/che/git/impl/InitTest.java | 4 ++-- .../eclipse/che/git/impl/IsInsideWorkTreeTest.java | 4 ++-- .../test/java/org/eclipse/che/git/impl/LogTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/LsRemoteTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/MergeTest.java | 4 ++-- .../test/java/org/eclipse/che/git/impl/PullTest.java | 4 ++-- .../test/java/org/eclipse/che/git/impl/PushTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/RemoteAddTest.java | 4 ++-- .../org/eclipse/che/git/impl/RemoteDeleteTest.java | 4 ++-- .../org/eclipse/che/git/impl/RemoteListTest.java | 4 ++-- .../org/eclipse/che/git/impl/RemoteUpdateTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/RemoveTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/ResetTest.java | 4 ++-- .../eclipse/che/git/impl/ShowFileContentTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/StatusTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/TagCreateTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/TagDeleteTest.java | 4 ++-- .../java/org/eclipse/che/git/impl/TagListTest.java | 4 ++-- .../che-core-api-languageserver-maven-plugin/pom.xml | 4 ++-- .../maven/plugin/DtoGeneratorMojo.java | 4 ++-- wsagent/che-core-api-languageserver-shared/pom.xml | 4 ++-- .../languageserver/shared/ProjectLangugageKey.java | 4 ++-- .../shared/event/LanguageServerInitializeEvent.java | 4 ++-- .../shared/model/LanguageDescription.java | 4 ++-- wsagent/che-core-api-languageserver/pom.xml | 4 ++-- .../che/api/languageserver/LanguageServerModule.java | 4 ++-- .../exception/LanguageServerException.java | 4 ++-- .../launcher/LanguageServerLauncher.java | 4 ++-- .../launcher/LanguageServerLauncherTemplate.java | 4 ++-- .../PublishDiagnosticsParamsJsonRpcTransmitter.java | 4 ++-- .../messager/ShowMessageJsonRpcTransmitter.java | 4 ++-- .../registry/InitializedLanguageServer.java | 4 ++-- .../registry/LanguageServerRegistry.java | 4 ++-- .../registry/LanguageServerRegistryImpl.java | 4 ++-- .../languageserver/registry/ServerInitializer.java | 4 ++-- .../registry/ServerInitializerImpl.java | 4 ++-- .../registry/ServerInitializerObservable.java | 4 ++-- .../registry/ServerInitializerObserver.java | 4 ++-- .../service/LanguageRegistryService.java | 4 ++-- .../service/LanguageServerInitializationHandler.java | 4 ++-- .../languageserver/service/LanguageServiceUtils.java | 4 ++-- .../languageserver/service/TextDocumentService.java | 4 ++-- .../api/languageserver/service/WorkspaceService.java | 4 ++-- .../registry/LanguageServerRegistryImplTest.java | 4 ++-- .../registry/ServerInitializerImplTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsagent/che-core-api-oauth/pom.xml | 4 ++-- .../eclipse/che/security/oauth/OAuthAgentModule.java | 4 ++-- .../che/security/oauth/RemoteOAuthTokenProvider.java | 4 ++-- .../RemoteOAuthAuthorizationHeaderProvider.java | 4 ++-- .../security/oauth/RemoteOAuthTokenProviderTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsagent/che-core-api-project-shared/pom.xml | 4 ++-- .../eclipse/che/api/project/shared/Constants.java | 4 ++-- .../che/api/project/shared/ImportProgressRecord.java | 4 ++-- .../api/project/shared/dto/AttributeDescriptor.java | 4 ++-- .../che/api/project/shared/dto/AttributeDto.java | 4 ++-- .../che/api/project/shared/dto/CopyOptions.java | 4 ++-- .../che/api/project/shared/dto/EditorChangesDto.java | 4 ++-- .../api/project/shared/dto/GeneratorDescription.java | 4 ++-- .../project/shared/dto/ImportProgressRecordDto.java | 4 ++-- .../che/api/project/shared/dto/ItemReference.java | 4 ++-- .../che/api/project/shared/dto/MoveOptions.java | 4 ++-- .../api/project/shared/dto/ProjectImporterData.java | 4 ++-- .../shared/dto/ProjectImporterDescriptor.java | 4 ++-- .../project/shared/dto/ProjectSearchRequestDto.java | 4 ++-- .../project/shared/dto/ProjectSearchResponseDto.java | 4 ++-- .../che/api/project/shared/dto/ProjectTypeDto.java | 4 ++-- .../che/api/project/shared/dto/ProjectUpdate.java | 4 ++-- .../che/api/project/shared/dto/ServerError.java | 4 ++-- .../che/api/project/shared/dto/SourceEstimation.java | 4 ++-- .../che/api/project/shared/dto/TreeElement.java | 4 ++-- .../eclipse/che/api/project/shared/dto/ValueDto.java | 4 ++-- .../project/shared/dto/event/FileStateUpdateDto.java | 4 ++-- .../shared/dto/event/FileTrackingOperationDto.java | 4 ++-- .../shared/dto/event/FileWatcherEventType.java | 4 ++-- .../shared/dto/event/GitCheckoutEventDto.java | 4 ++-- .../shared/dto/event/PomModifiedEventDto.java | 4 ++-- .../shared/dto/event/ProjectTreeStateUpdateDto.java | 4 ++-- .../dto/event/ProjectTreeTrackingOperationDto.java | 4 ++-- .../api/project/shared/dto/event/VfsWatchEvent.java | 4 ++-- wsagent/che-core-api-project/pom.xml | 4 ++-- .../eclipse/che/api/project/server/DtoConverter.java | 4 ++-- .../che/api/project/server/EditorChangesTracker.java | 4 ++-- .../che/api/project/server/EditorWorkingCopy.java | 4 ++-- .../api/project/server/EditorWorkingCopyManager.java | 4 ++-- .../server/EditorWorkingCopyUpdatedEvent.java | 4 ++-- .../eclipse/che/api/project/server/FileEntry.java | 4 ++-- .../eclipse/che/api/project/server/FolderEntry.java | 4 ++-- .../che/api/project/server/HtmlErrorFormatter.java | 4 ++-- .../che/api/project/server/NewProjectConfigImpl.java | 4 ++-- .../che/api/project/server/ProjectApiModule.java | 4 ++-- .../che/api/project/server/ProjectCreatedEvent.java | 4 ++-- .../che/api/project/server/ProjectDeletedEvent.java | 4 ++-- .../che/api/project/server/ProjectManager.java | 4 ++-- .../server/ProjectOutputLineConsumerFactory.java | 4 ++-- .../che/api/project/server/ProjectRegistry.java | 4 ++-- .../che/api/project/server/ProjectService.java | 4 ++-- .../project/server/ProjectServiceLinksInjector.java | 4 ++-- .../che/api/project/server/ProjectTypeService.java | 4 ++-- .../eclipse/che/api/project/server/ProjectTypes.java | 4 ++-- .../che/api/project/server/RegisteredProject.java | 4 ++-- .../che/api/project/server/VirtualFileEntry.java | 4 ++-- .../che/api/project/server/WorkspaceHolder.java | 4 ++-- .../api/project/server/WorkspaceProjectsSyncer.java | 4 ++-- .../che/api/project/server/ZipProjectImporter.java | 4 ++-- .../handlers/CreateBaseProjectTypeHandler.java | 4 ++-- .../server/handlers/CreateProjectHandler.java | 4 ++-- .../api/project/server/handlers/GetItemHandler.java | 4 ++-- .../server/handlers/PostImportProjectHandler.java | 4 ++-- .../api/project/server/handlers/ProjectHandler.java | 4 ++-- .../server/handlers/ProjectHandlerRegistry.java | 4 ++-- .../project/server/handlers/ProjectInitHandler.java | 4 ++-- .../BaseProjectImportOutputLineConsumer.java | 4 ++-- .../ProjectImportOutputJsonRpcLineConsumer.java | 4 ++-- .../ProjectImportOutputJsonRpcRegistrar.java | 4 ++-- .../importer/ProjectImportOutputWSLineConsumer.java | 4 ++-- .../api/project/server/importer/ProjectImporter.java | 4 ++-- .../server/importer/ProjectImporterRegistry.java | 4 ++-- .../server/importer/ProjectImportersService.java | 4 ++-- .../notification/ProjectItemModifiedEvent.java | 4 ++-- .../server/notification/VfsWatchBroadcaster.java | 4 ++-- .../api/project/server/type/AbstractAttribute.java | 4 ++-- .../che/api/project/server/type/AttributeValue.java | 4 ++-- .../che/api/project/server/type/BaseProjectType.java | 4 ++-- .../che/api/project/server/type/Constant.java | 4 ++-- .../server/type/InitBaseProjectTypeHandler.java | 4 ++-- .../server/type/ProjectTypeConstraintException.java | 4 ++-- .../che/api/project/server/type/ProjectTypeDef.java | 4 ++-- .../api/project/server/type/ProjectTypeRegistry.java | 4 ++-- .../project/server/type/ProjectTypeResolution.java | 4 ++-- .../project/server/type/ReadonlyValueProvider.java | 4 ++-- .../project/server/type/SettableValueProvider.java | 4 ++-- .../che/api/project/server/type/TransientMixin.java | 4 ++-- .../che/api/project/server/type/ValueProvider.java | 4 ++-- .../project/server/type/ValueProviderFactory.java | 4 ++-- .../project/server/type/ValueStorageException.java | 4 ++-- .../che/api/project/server/type/Variable.java | 4 ++-- .../api/vfs/AbstractVirtualFileSystemProvider.java | 4 ++-- .../main/java/org/eclipse/che/api/vfs/Archiver.java | 4 ++-- .../org/eclipse/che/api/vfs/ArchiverFactory.java | 4 ++-- .../org/eclipse/che/api/vfs/HashSumsCounter.java | 4 ++-- .../org/eclipse/che/api/vfs/LockedFileFinder.java | 4 ++-- .../src/main/java/org/eclipse/che/api/vfs/Path.java | 4 ++-- .../org/eclipse/che/api/vfs/PathLockFactory.java | 4 ++-- .../java/org/eclipse/che/api/vfs/TarArchiver.java | 4 ++-- .../java/org/eclipse/che/api/vfs/VirtualFile.java | 4 ++-- .../org/eclipse/che/api/vfs/VirtualFileFilter.java | 4 ++-- .../org/eclipse/che/api/vfs/VirtualFileFilters.java | 4 ++-- .../org/eclipse/che/api/vfs/VirtualFileSystem.java | 4 ++-- .../che/api/vfs/VirtualFileSystemProvider.java | 4 ++-- .../org/eclipse/che/api/vfs/VirtualFileVisitor.java | 4 ++-- .../java/org/eclipse/che/api/vfs/ZipArchiver.java | 4 ++-- .../che/api/vfs/impl/file/DataSerializer.java | 4 ++-- .../file/DefaultFileWatcherNotificationHandler.java | 4 ++-- .../org/eclipse/che/api/vfs/impl/file/FileLock.java | 4 ++-- .../che/api/vfs/impl/file/FileLockSerializer.java | 4 ++-- .../api/vfs/impl/file/FileMetadataSerializer.java | 4 ++-- .../che/api/vfs/impl/file/FileTreeWatcher.java | 4 ++-- .../impl/file/FileWatcherNotificationHandler.java | 4 ++-- .../impl/file/FileWatcherNotificationListener.java | 4 ++-- .../che/api/vfs/impl/file/LocalVirtualFile.java | 4 ++-- .../api/vfs/impl/file/LocalVirtualFileSystem.java | 4 ++-- .../impl/file/LocalVirtualFileSystemProvider.java | 4 ++-- .../event/detectors/EditorFileOperationHandler.java | 4 ++-- .../impl/file/event/detectors/EditorFileTracker.java | 4 ++-- .../event/detectors/FileTrackingOperationEvent.java | 4 ++-- .../file/event/detectors/ProjectTreeTracker.java | 4 ++-- .../che/api/vfs/impl/memory/MemoryVirtualFile.java | 4 ++-- .../api/vfs/impl/memory/MemoryVirtualFileSystem.java | 4 ++-- .../impl/memory/MemoryVirtualFileSystemProvider.java | 4 ++-- .../eclipse/che/api/vfs/search/MediaTypeFilter.java | 4 ++-- .../eclipse/che/api/vfs/search/QueryExpression.java | 4 ++-- .../org/eclipse/che/api/vfs/search/SearchResult.java | 4 ++-- .../che/api/vfs/search/SearchResultEntry.java | 4 ++-- .../org/eclipse/che/api/vfs/search/Searcher.java | 4 ++-- .../eclipse/che/api/vfs/search/SearcherProvider.java | 4 ++-- .../search/impl/AbstractLuceneSearcherProvider.java | 4 ++-- .../che/api/vfs/search/impl/FSLuceneSearcher.java | 4 ++-- .../vfs/search/impl/FSLuceneSearcherProvider.java | 4 ++-- .../che/api/vfs/search/impl/LuceneSearcher.java | 4 ++-- .../api/vfs/search/impl/MemoryLuceneSearcher.java | 4 ++-- .../search/impl/MemoryLuceneSearcherProvider.java | 4 ++-- .../api/vfs/util/DeleteOnCloseFileInputStream.java | 4 ++-- .../che/api/vfs/util/NotClosableInputStream.java | 4 ++-- .../org/eclipse/che/api/vfs/util/ZipContent.java | 4 ++-- .../eclipse/che/api/vfs/watcher/FileTreeWalker.java | 4 ++-- .../api/vfs/watcher/FileWatcherByPathMatcher.java | 4 ++-- .../che/api/vfs/watcher/FileWatcherByPathValue.java | 4 ++-- .../che/api/vfs/watcher/FileWatcherEventHandler.java | 4 ++-- .../watcher/FileWatcherExcludePatternsRegistry.java | 4 ++-- .../vfs/watcher/FileWatcherIgnoreFileTracker.java | 10 ++++++++++ .../che/api/vfs/watcher/FileWatcherManager.java | 4 ++-- .../che/api/vfs/watcher/FileWatcherOperation.java | 4 ++-- .../che/api/vfs/watcher/FileWatcherService.java | 4 ++-- .../che/api/vfs/watcher/FileWatcherUtils.java | 4 ++-- .../api/vfs/watcher/IndexedFileCreateConsumer.java | 4 ++-- .../api/vfs/watcher/IndexedFileDeleteConsumer.java | 4 ++-- .../api/vfs/watcher/IndexedFileUpdateConsumer.java | 4 ++-- .../che/api/project/server/BaseProjectTypeTest.java | 4 ++-- .../che/api/project/server/ExtensionCasesTest.java | 4 ++-- .../api/project/server/ProjectManagerReadTest.java | 4 ++-- .../api/project/server/ProjectManagerWriteTest.java | 4 ++-- .../server/ProjectServiceLinksInjectorTest.java | 4 ++-- .../che/api/project/server/ProjectServiceTest.java | 4 ++-- .../che/api/project/server/ProjectTypesTest.java | 4 ++-- .../che/api/project/server/VfsWatcherTest.java | 4 ++-- .../che/api/project/server/WsAgentTestBase.java | 4 ++-- .../handlers/CreateBaseProjectTypeHandlerTest.java | 4 ++-- .../BaseProjectImportOutputLineConsumerTest.java | 4 ++-- .../ProjectImportOutputJsonRpcLineConsumerTest.java | 4 ++-- .../che/api/project/server/type/ProjectTypeTest.java | 4 ++-- .../org/eclipse/che/api/vfs/ArchiverFactoryTest.java | 4 ++-- .../org/eclipse/che/api/vfs/HashSumsCounterTest.java | 4 ++-- .../eclipse/che/api/vfs/LockedFileFinderTest.java | 4 ++-- .../org/eclipse/che/api/vfs/PathLockFactoryTest.java | 4 ++-- .../test/java/org/eclipse/che/api/vfs/PathTest.java | 4 ++-- .../org/eclipse/che/api/vfs/TarArchiverTest.java | 4 ++-- .../org/eclipse/che/api/vfs/ZipArchiverTest.java | 4 ++-- .../DefaultFileWatcherNotificationHandlerTest.java | 4 ++-- .../api/vfs/impl/file/FileLockSerializerTest.java | 4 ++-- .../vfs/impl/file/FileMetadataSerializerTest.java | 4 ++-- .../file/FileTreeWatcherMassiveIoOperationTest.java | 4 ++-- .../che/api/vfs/impl/file/FileTreeWatcherTest.java | 4 ++-- .../che/api/vfs/impl/file/FileWatcherTestTree.java | 4 ++-- .../impl/file/LocalVirtualFileAssertionHelper.java | 4 ++-- .../file/LocalVirtualFileSystemProviderTest.java | 4 ++-- .../vfs/impl/file/LocalVirtualFileSystemTest.java | 4 ++-- .../che/api/vfs/impl/file/LocalVirtualFileTest.java | 4 ++-- .../memory/MemoryVirtualFileSystemProviderTest.java | 4 ++-- .../vfs/impl/memory/MemoryVirtualFileSystemTest.java | 4 ++-- .../api/vfs/impl/memory/MemoryVirtualFileTest.java | 4 ++-- .../che/api/vfs/search/MediaTypeFilterTest.java | 4 ++-- .../search/impl/FSLuceneSearcherProviderTest.java | 4 ++-- .../api/vfs/search/impl/FSLuceneSearcherTest.java | 4 ++-- .../impl/MemoryLuceneSearcherProviderTest.java | 4 ++-- .../vfs/search/impl/MemoryLuceneSearcherTest.java | 4 ++-- .../org/eclipse/che/api/vfs/util/ZipContentTest.java | 4 ++-- .../che/api/vfs/watcher/FileTreeWalkerTest.java | 4 ++-- .../api/vfs/watcher/FileWatcherByPathValueTest.java | 4 ++-- .../api/vfs/watcher/FileWatcherEventHandlerTest.java | 4 ++-- .../che/api/vfs/watcher/FileWatcherManagerTest.java | 4 ++-- .../api/vfs/watcher/FileWatcherOperationTest.java | 4 ++-- .../che/api/vfs/watcher/FileWatcherServiceTest.java | 4 ++-- .../che/api/vfs/watcher/FileWatcherUtilsTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsagent/che-core-git-impl-jgit/pom.xml | 4 ++-- .../eclipse/che/git/impl/jgit/JGitConfigImpl.java | 4 ++-- .../eclipse/che/git/impl/jgit/JGitConnection.java | 4 ++-- .../che/git/impl/jgit/JGitConnectionFactory.java | 4 ++-- .../org/eclipse/che/git/impl/jgit/JGitDiffPage.java | 4 ++-- .../org/eclipse/che/git/impl/jgit/JGitModule.java | 4 ++-- .../eclipse/che/git/impl/jgit/JGitStatusImpl.java | 4 ++-- .../che/git/impl/GitConnectionFactoryProvider.java | 4 ++-- .../che/git/impl/jgit/JGitConnectionTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsagent/che-core-ssh-key-ide/pom.xml | 4 ++-- .../che/plugin/ssh/key/client/SshKeyExtension.java | 4 ++-- .../ssh/key/client/SshKeyLocalizationConstant.java | 4 ++-- .../che/plugin/ssh/key/client/SshKeyUploader.java | 4 ++-- .../ssh/key/client/SshKeyUploaderRegistry.java | 4 ++-- .../che/plugin/ssh/key/client/SshResources.java | 4 ++-- .../ssh/key/client/inject/SshKeyGinModule.java | 4 ++-- .../plugin/ssh/key/client/manage/ShowSshKeyView.java | 4 ++-- .../ssh/key/client/manage/ShowSshKeyViewImpl.java | 4 ++-- .../ssh/key/client/manage/ShowSshKeyViewImpl.ui.xml | 4 ++-- .../key/client/manage/SshKeyManagerPresenter.java | 4 ++-- .../ssh/key/client/manage/SshKeyManagerView.java | 4 ++-- .../ssh/key/client/manage/SshKeyManagerViewImpl.java | 4 ++-- .../key/client/manage/SshKeyManagerViewImpl.ui.xml | 4 ++-- .../ssh/key/client/upload/UploadSshKeyPresenter.java | 4 ++-- .../ssh/key/client/upload/UploadSshKeyView.java | 4 ++-- .../ssh/key/client/upload/UploadSshKeyViewImpl.java | 4 ++-- .../key/client/upload/UploadSshKeyViewImpl.ui.xml | 4 ++-- .../org/eclipse/che/plugin/ssh/key/SshKey.gwt.xml | 4 ++-- .../key/client/SshKeyLocalizationConstant.properties | 4 ++-- .../che/plugin/ssh/key/client/github-generate.svg | 4 ++-- .../client/manage/SshKeyManagerPresenterTest.java | 4 ++-- wsagent/che-core-ssh-key-server/pom.xml | 4 ++-- .../che/plugin/ssh/key/HttpSshServiceClient.java | 4 ++-- .../org/eclipse/che/plugin/ssh/key/SshModule.java | 4 ++-- .../eclipse/che/plugin/ssh/key/SshServiceClient.java | 4 ++-- .../che/plugin/ssh/key/script/SshKeyProvider.java | 4 ++-- .../plugin/ssh/key/script/SshKeyProviderImpl.java | 4 ++-- .../che/plugin/ssh/key/script/SshKeyUploader.java | 4 ++-- .../eclipse/che/plugin/ssh/key/script/SshScript.java | 4 ++-- .../che/plugin/ssh/key/script/SshScriptProvider.java | 4 ++-- .../che/plugin/ssh/key/script/UnixSshScript.java | 4 ++-- .../che/plugin/ssh/key/script/WindowsSshScript.java | 4 ++-- .../eclipse/che/plugin/ssh/key/utils/UrlUtils.java | 4 ++-- .../che/plugin/ssh/key/HttpSshServiceClientTest.java | 4 ++-- .../plugin/ssh/key/script/SshScriptProviderTest.java | 4 ++-- .../src/test/java/resources/logback-test.xml | 4 ++-- .../plugin/ssh/key/script/SshScriptProviderTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsagent/che-wsagent-core/pom.xml | 4 ++-- .../che/wsagent/server/CheWebSocketEndpoint.java | 4 ++-- .../eclipse/che/wsagent/server/CheWsAgentModule.java | 4 ++-- .../che/wsagent/server/CheWsAgentServletModule.java | 4 ++-- .../wsagent/server/WsAgentAnalyticsAddresser.java | 4 ++-- .../eclipse/che/wsagent/server/WsAgentModule.java | 4 ++-- .../che/wsagent/server/WsAgentServletModule.java | 4 ++-- .../che/wsagent/server/WsAgentURLProvider.java | 4 ++-- .../codenvy/che-machine-configuration.properties | 4 ++-- .../che-wsagent-core/src/main/webapp/WEB-INF/web.xml | 4 ++-- wsagent/pom.xml | 4 ++-- wsagent/wsagent-local/pom.xml | 4 ++-- .../eclipse/che/ApiEndpointAccessibilityChecker.java | 4 ++-- .../java/org/eclipse/che/EventBusURLProvider.java | 4 ++-- .../java/org/eclipse/che/UriApiEndpointProvider.java | 4 ++-- .../main/java/org/eclipse/che/UserTokenProvider.java | 4 ++-- .../java/org/eclipse/che/WorkspaceIdProvider.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsmaster/che-core-api-account/pom.xml | 4 ++-- .../org/eclipse/che/account/api/AccountManager.java | 4 ++-- .../org/eclipse/che/account/api/AccountModule.java | 4 ++-- .../che/account/event/BeforeAccountRemovedEvent.java | 4 ++-- .../eclipse/che/account/shared/model/Account.java | 4 ++-- .../java/org/eclipse/che/account/spi/AccountDao.java | 4 ++-- .../org/eclipse/che/account/spi/AccountImpl.java | 4 ++-- .../eclipse/che/account/spi/AccountValidator.java | 4 ++-- .../eclipse/che/account/spi/jpa/JpaAccountDao.java | 4 ++-- .../che/account/spi/AccountValidatorTest.java | 4 ++-- .../eclipse/che/account/spi/tck/AccountDaoTest.java | 4 ++-- .../che/account/spi/tck/jpa/AccountJpaTckModule.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsmaster/che-core-api-auth-shared/pom.xml | 4 ++-- .../eclipse/che/api/auth/shared/dto/Credentials.java | 4 ++-- .../eclipse/che/api/auth/shared/dto/OAuthToken.java | 4 ++-- .../org/eclipse/che/api/auth/shared/dto/Token.java | 4 ++-- .../shared/OAuthAuthorizationHeaderProvider.java | 4 ++-- .../security/oauth/shared/OAuthTokenProvider.java | 4 ++-- .../org/eclipse/che/security/oauth/shared/User.java | 4 ++-- .../shared/dto/OAuthAuthenticatorDescriptor.java | 4 ++-- wsmaster/che-core-api-auth/pom.xml | 4 ++-- .../org/eclipse/che/api/auth/AuthenticationDao.java | 4 ++-- .../che/api/auth/AuthenticationException.java | 4 ++-- .../che/api/auth/AuthenticationExceptionMapper.java | 4 ++-- .../eclipse/che/api/auth/AuthenticationService.java | 4 ++-- .../org/eclipse/che/security/oauth/OAuth2.gwt.xml | 4 ++-- .../security/oauth/OAuthAuthenticationException.java | 4 ++-- .../security/oauth/OAuthAuthenticationService.java | 4 ++-- .../che/security/oauth/OAuthAuthenticator.java | 4 ++-- .../security/oauth/OAuthAuthenticatorProvider.java | 4 ++-- .../oauth/OAuthAuthenticatorProviderImpl.java | 4 ++-- .../oauth/OAuthAuthenticatorTokenProvider.java | 4 ++-- .../oauth1/OAuthAuthenticationException.java | 4 ++-- .../security/oauth1/OAuthAuthenticationService.java | 4 ++-- .../che/security/oauth1/OAuthAuthenticator.java | 4 ++-- .../security/oauth1/OAuthAuthenticatorProvider.java | 4 ++-- .../oauth/OAuthAuthenticationServiceTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsmaster/che-core-api-factory-shared/pom.xml | 4 ++-- .../eclipse/che/api/factory/shared/Constants.java | 4 ++-- .../che/api/factory/shared/dto/AuthorDto.java | 4 ++-- .../api/factory/shared/dto/ButtonAttributesDto.java | 4 ++-- .../che/api/factory/shared/dto/ButtonDto.java | 4 ++-- .../che/api/factory/shared/dto/FactoryDto.java | 4 ++-- .../che/api/factory/shared/dto/IdeActionDto.java | 4 ++-- .../eclipse/che/api/factory/shared/dto/IdeDto.java | 4 ++-- .../che/api/factory/shared/dto/OnAppClosedDto.java | 4 ++-- .../che/api/factory/shared/dto/OnAppLoadedDto.java | 4 ++-- .../api/factory/shared/dto/OnProjectsLoadedDto.java | 4 ++-- .../che/api/factory/shared/dto/PoliciesDto.java | 4 ++-- wsmaster/che-core-api-factory/pom.xml | 4 ++-- .../eclipse/che/api/factory/server/DtoConverter.java | 4 ++-- .../api/factory/server/FactoryAcceptValidator.java | 4 ++-- .../che/api/factory/server/FactoryConstants.java | 4 ++-- .../api/factory/server/FactoryCreateValidator.java | 4 ++-- .../che/api/factory/server/FactoryEditValidator.java | 4 ++-- .../eclipse/che/api/factory/server/FactoryImage.java | 4 ++-- .../che/api/factory/server/FactoryLinksHelper.java | 4 ++-- .../che/api/factory/server/FactoryManager.java | 4 ++-- .../factory/server/FactoryMessageBodyAdapter.java | 4 ++-- .../factory/server/FactoryParameterValidator.java | 4 ++-- .../factory/server/FactoryParametersResolver.java | 4 ++-- .../che/api/factory/server/FactoryService.java | 4 ++-- .../che/api/factory/server/LegacyConverter.java | 4 ++-- .../eclipse/che/api/factory/server/ValueHelper.java | 4 ++-- .../api/factory/server/builder/FactoryBuilder.java | 4 ++-- .../server/impl/FactoryAcceptValidatorImpl.java | 4 ++-- .../factory/server/impl/FactoryBaseValidator.java | 4 ++-- .../server/impl/FactoryCreateValidatorImpl.java | 4 ++-- .../server/impl/FactoryEditValidatorImpl.java | 4 ++-- .../impl/SourceStorageParametersValidator.java | 4 ++-- .../che/api/factory/server/jpa/FactoryJpaModule.java | 4 ++-- .../che/api/factory/server/jpa/JpaFactoryDao.java | 4 ++-- .../api/factory/server/model/impl/ActionImpl.java | 4 ++-- .../api/factory/server/model/impl/AuthorImpl.java | 4 ++-- .../server/model/impl/ButtonAttributesImpl.java | 4 ++-- .../api/factory/server/model/impl/ButtonImpl.java | 4 ++-- .../api/factory/server/model/impl/FactoryImpl.java | 4 ++-- .../che/api/factory/server/model/impl/IdeImpl.java | 4 ++-- .../factory/server/model/impl/OnAppClosedImpl.java | 4 ++-- .../factory/server/model/impl/OnAppLoadedImpl.java | 4 ++-- .../server/model/impl/OnProjectsLoadedImpl.java | 4 ++-- .../api/factory/server/model/impl/PoliciesImpl.java | 4 ++-- .../che/api/factory/server/spi/FactoryDao.java | 4 ++-- .../che/api/factory/server/FactoryManagerTest.java | 4 ++-- .../che/api/factory/server/FactoryServiceTest.java | 4 ++-- .../factory/server/builder/FactoryBuilderTest.java | 4 ++-- .../server/impl/FactoryBaseValidatorTest.java | 4 ++-- .../FactoryCreateAndAcceptValidatorsImplsTest.java | 4 ++-- .../server/impl/FactoryEditValidatorImplTest.java | 4 ++-- .../impl/SourceProjectParametersValidatorTest.java | 4 ++-- .../server/impl/TesterFactoryBaseValidator.java | 4 ++-- .../che/api/factory/server/jpa/FactoryTckModule.java | 4 ++-- .../api/factory/server/spi/tck/FactoryDaoTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsmaster/che-core-api-machine-shared/pom.xml | 4 ++-- .../eclipse/che/api/machine/shared/Constants.java | 4 ++-- .../che/api/machine/shared/ManagedRecipe.java | 4 ++-- .../che/api/machine/shared/dto/CommandDto.java | 4 ++-- .../che/api/machine/shared/dto/MachineConfigDto.java | 4 ++-- .../che/api/machine/shared/dto/MachineDto.java | 4 ++-- .../che/api/machine/shared/dto/MachineLimitsDto.java | 4 ++-- .../api/machine/shared/dto/MachineLogMessageDto.java | 4 ++-- .../api/machine/shared/dto/MachineProcessDto.java | 4 ++-- .../machine/shared/dto/MachineRuntimeInfoDto.java | 4 ++-- .../che/api/machine/shared/dto/MachineSourceDto.java | 4 ++-- .../machine/shared/dto/NewSnapshotDescriptor.java | 4 ++-- .../che/api/machine/shared/dto/ServerConfDto.java | 4 ++-- .../che/api/machine/shared/dto/ServerDto.java | 4 ++-- .../api/machine/shared/dto/ServerPropertiesDto.java | 4 ++-- .../che/api/machine/shared/dto/SnapshotDto.java | 4 ++-- .../shared/dto/event/MachineProcessEvent.java | 4 ++-- .../machine/shared/dto/event/MachineStatusEvent.java | 4 ++-- .../dto/execagent/GetProcessLogsRequestDto.java | 4 ++-- .../dto/execagent/GetProcessLogsResponseDto.java | 4 ++-- .../shared/dto/execagent/GetProcessRequestDto.java | 4 ++-- .../shared/dto/execagent/GetProcessResponseDto.java | 4 ++-- .../shared/dto/execagent/GetProcessesRequestDto.java | 4 ++-- .../dto/execagent/GetProcessesResponseDto.java | 4 ++-- .../shared/dto/execagent/ProcessKillRequestDto.java | 4 ++-- .../shared/dto/execagent/ProcessKillResponseDto.java | 4 ++-- .../shared/dto/execagent/ProcessStartRequestDto.java | 4 ++-- .../dto/execagent/ProcessStartResponseDto.java | 4 ++-- .../dto/execagent/ProcessSubscribeRequestDto.java | 4 ++-- .../dto/execagent/ProcessSubscribeResponseDto.java | 4 ++-- .../dto/execagent/ProcessUnSubscribeRequestDto.java | 4 ++-- .../dto/execagent/ProcessUnSubscribeResponseDto.java | 4 ++-- .../dto/execagent/UpdateSubscriptionRequestDto.java | 4 ++-- .../dto/execagent/UpdateSubscriptionResponseDto.java | 4 ++-- .../dto/execagent/event/ConnectedEventDto.java | 4 ++-- .../shared/dto/execagent/event/DtoWithPid.java | 4 ++-- .../dto/execagent/event/ProcessDiedEventDto.java | 4 ++-- .../dto/execagent/event/ProcessStartedEventDto.java | 4 ++-- .../dto/execagent/event/ProcessStdErrEventDto.java | 4 ++-- .../dto/execagent/event/ProcessStdOutEventDto.java | 4 ++-- .../api/machine/shared/dto/recipe/MachineRecipe.java | 4 ++-- .../che/api/machine/shared/dto/recipe/NewRecipe.java | 4 ++-- .../machine/shared/dto/recipe/RecipeDescriptor.java | 4 ++-- .../api/machine/shared/dto/recipe/RecipeUpdate.java | 4 ++-- wsmaster/che-core-api-machine/pom.xml | 4 ++-- .../eclipse/che/api/machine/server/DtoConverter.java | 4 ++-- .../api/machine/server/MachineInstanceProviders.java | 4 ++-- .../che/api/machine/server/MachineModule.java | 4 ++-- .../server/event/BeforeRecipeRemovedEvent.java | 4 ++-- .../api/machine/server/event/InstanceStateEvent.java | 4 ++-- .../server/event/MachineProcessMessenger.java | 4 ++-- .../server/event/MachineStateJsonRpcMessenger.java | 4 ++-- .../machine/server/event/MachineStateMessenger.java | 4 ++-- .../machine/server/event/RecipePersistedEvent.java | 4 ++-- .../exception/InvalidInstanceSnapshotException.java | 4 ++-- .../server/exception/InvalidRecipeException.java | 4 ++-- .../machine/server/exception/MachineException.java | 4 ++-- .../machine/server/exception/SnapshotException.java | 4 ++-- .../server/exception/SourceNotFoundException.java | 4 ++-- .../server/exception/UnsupportedRecipeException.java | 4 ++-- .../che/api/machine/server/jpa/JpaRecipeDao.java | 4 ++-- .../che/api/machine/server/jpa/JpaSnapshotDao.java | 4 ++-- .../che/api/machine/server/jpa/MachineJpaModule.java | 4 ++-- .../api/machine/server/model/impl/CommandImpl.java | 4 ++-- .../machine/server/model/impl/MachineConfigImpl.java | 4 ++-- .../api/machine/server/model/impl/MachineImpl.java | 4 ++-- .../machine/server/model/impl/MachineLimitsImpl.java | 4 ++-- .../server/model/impl/MachineLogMessageImpl.java | 4 ++-- .../server/model/impl/MachineRuntimeInfoImpl.java | 4 ++-- .../machine/server/model/impl/MachineSourceImpl.java | 4 ++-- .../machine/server/model/impl/ServerConfImpl.java | 4 ++-- .../api/machine/server/model/impl/ServerImpl.java | 4 ++-- .../server/model/impl/ServerPropertiesImpl.java | 4 ++-- .../api/machine/server/model/impl/SnapshotImpl.java | 4 ++-- .../model/impl/adapter/MachineSourceAdapter.java | 4 ++-- .../che/api/machine/server/recipe/RecipeImpl.java | 4 ++-- .../che/api/machine/server/recipe/RecipeLoader.java | 4 ++-- .../che/api/machine/server/recipe/RecipeService.java | 4 ++-- .../server/recipe/adapters/RecipeTypeAdapter.java | 4 ++-- .../eclipse/che/api/machine/server/spi/Instance.java | 4 ++-- .../che/api/machine/server/spi/InstanceNode.java | 4 ++-- .../che/api/machine/server/spi/InstanceProcess.java | 4 ++-- .../che/api/machine/server/spi/InstanceProvider.java | 4 ++-- .../che/api/machine/server/spi/RecipeDao.java | 4 ++-- .../che/api/machine/server/spi/SnapshotDao.java | 4 ++-- .../machine/server/spi/impl/AbstractInstance.java | 4 ++-- .../server/spi/impl/AbstractMachineProcess.java | 4 ++-- .../api/machine/server/util/RecipeDownloader.java | 4 ++-- .../che/api/machine/server/util/RecipeRetriever.java | 4 ++-- .../che/api/machine/server/jpa/JpaTckModule.java | 4 ++-- .../api/machine/server/jpa/TestWorkspaceEntity.java | 4 ++-- .../model/impl/adapter/MachineSourceAdapterTest.java | 4 ++-- .../api/machine/server/recipe/RecipeLoaderTest.java | 4 ++-- .../api/machine/server/recipe/RecipeServiceTest.java | 4 ++-- .../api/machine/server/spi/tck/RecipeDaoTest.java | 4 ++-- .../api/machine/server/spi/tck/SnapshotDaoTest.java | 4 ++-- .../api/machine/server/util/RecipeRetrieverTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../che-core-api-project-templates-shared/pom.xml | 4 ++-- .../shared/dto/ProjectTemplateDescriptor.java | 4 ++-- wsmaster/che-core-api-project-templates/pom.xml | 4 ++-- .../template/ProjectTemplateDescriptionLoader.java | 4 ++-- .../server/template/ProjectTemplateRegistry.java | 4 ++-- .../server/template/ProjectTemplateService.java | 4 ++-- wsmaster/che-core-api-ssh-shared/pom.xml | 4 ++-- .../org/eclipse/che/api/ssh/shared/Constants.java | 4 ++-- .../api/ssh/shared/dto/GenerateSshPairRequest.java | 4 ++-- .../eclipse/che/api/ssh/shared/dto/SshPairDto.java | 4 ++-- .../eclipse/che/api/ssh/shared/model/SshPair.java | 4 ++-- wsmaster/che-core-api-ssh/pom.xml | 4 ++-- .../org/eclipse/che/api/ssh/server/SshManager.java | 4 ++-- .../org/eclipse/che/api/ssh/server/SshService.java | 4 ++-- .../eclipse/che/api/ssh/server/jpa/JpaSshDao.java | 4 ++-- .../eclipse/che/api/ssh/server/jpa/SshJpaModule.java | 4 ++-- .../che/api/ssh/server/jpa/SshPairPrimaryKey.java | 4 ++-- .../che/api/ssh/server/model/impl/SshPairImpl.java | 4 ++-- .../org/eclipse/che/api/ssh/server/spi/SshDao.java | 4 ++-- .../eclipse/che/api/ssh/server/jpa/SshTckModule.java | 4 ++-- .../che/api/ssh/server/spi/tck/SshDaoTest.java | 4 ++-- wsmaster/che-core-api-system-shared/pom.xml | 4 ++-- .../eclipse/che/api/system/shared/SystemStatus.java | 4 ++-- .../che/api/system/shared/dto/SystemEventDto.java | 4 ++-- .../api/system/shared/dto/SystemServiceEventDto.java | 4 ++-- .../shared/dto/SystemServiceItemStoppedEventDto.java | 4 ++-- .../che/api/system/shared/dto/SystemStateDto.java | 4 ++-- .../shared/dto/SystemStatusChangedEventDto.java | 4 ++-- .../che/api/system/shared/event/EventType.java | 4 ++-- .../che/api/system/shared/event/SystemEvent.java | 4 ++-- .../shared/event/SystemStatusChangedEvent.java | 4 ++-- .../event/service/StoppingSystemServiceEvent.java | 4 ++-- .../shared/event/service/SystemServiceEvent.java | 4 ++-- .../event/service/SystemServiceItemStoppedEvent.java | 4 ++-- .../event/service/SystemServiceStoppedEvent.java | 4 ++-- wsmaster/che-core-api-system/pom.xml | 4 ++-- .../eclipse/che/api/system/server/DtoConverter.java | 4 ++-- .../che/api/system/server/ServiceTermination.java | 4 ++-- .../che/api/system/server/ServiceTerminator.java | 4 ++-- .../server/SystemEventsWebsocketBroadcaster.java | 4 ++-- .../eclipse/che/api/system/server/SystemManager.java | 4 ++-- .../eclipse/che/api/system/server/SystemService.java | 4 ++-- .../system/server/WorkspaceServiceTermination.java | 4 ++-- .../che/api/system/server/DtoConverterTest.java | 4 ++-- .../server/SystemEventsWebsocketBroadcasterTest.java | 4 ++-- .../che/api/system/server/SystemManagerTest.java | 4 ++-- .../che/api/system/server/SystemTerminatorTest.java | 4 ++-- .../server/WorkspaceServiceTerminationTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- wsmaster/che-core-api-user-shared/pom.xml | 4 ++-- .../eclipse/che/api/user/shared/dto/ProfileDto.java | 4 ++-- .../org/eclipse/che/api/user/shared/dto/UserDto.java | 4 ++-- wsmaster/che-core-api-user/pom.xml | 4 ++-- .../eclipse/che/api/user/server/CheUserCreator.java | 4 ++-- .../org/eclipse/che/api/user/server/Constants.java | 4 ++-- .../eclipse/che/api/user/server/DtoConverter.java | 4 ++-- .../che/api/user/server/PreferenceManager.java | 4 ++-- .../che/api/user/server/PreferencesService.java | 4 ++-- .../che/api/user/server/ProfileLinksInjector.java | 4 ++-- .../eclipse/che/api/user/server/ProfileManager.java | 4 ++-- .../eclipse/che/api/user/server/ProfileService.java | 4 ++-- .../eclipse/che/api/user/server/TokenValidator.java | 4 ++-- .../che/api/user/server/UserLinksInjector.java | 4 ++-- .../org/eclipse/che/api/user/server/UserManager.java | 4 ++-- .../org/eclipse/che/api/user/server/UserService.java | 4 ++-- .../eclipse/che/api/user/server/UserValidator.java | 4 ++-- .../user/server/event/BeforeUserRemovedEvent.java | 4 ++-- .../user/server/event/PostUserPersistedEvent.java | 4 ++-- .../che/api/user/server/event/UserCreatedEvent.java | 4 ++-- .../che/api/user/server/event/UserRemovedEvent.java | 4 ++-- .../che/api/user/server/jpa/JpaPreferenceDao.java | 4 ++-- .../che/api/user/server/jpa/JpaProfileDao.java | 4 ++-- .../eclipse/che/api/user/server/jpa/JpaUserDao.java | 4 ++-- .../che/api/user/server/jpa/PreferenceEntity.java | 4 ++-- .../che/api/user/server/jpa/UserJpaModule.java | 4 ++-- .../che/api/user/server/model/impl/ProfileImpl.java | 4 ++-- .../che/api/user/server/model/impl/UserImpl.java | 4 ++-- .../che/api/user/server/spi/PreferenceDao.java | 4 ++-- .../eclipse/che/api/user/server/spi/ProfileDao.java | 4 ++-- .../org/eclipse/che/api/user/server/spi/UserDao.java | 4 ++-- .../che/api/user/server/PreferenceManagerTest.java | 4 ++-- .../che/api/user/server/PreferencesServiceTest.java | 4 ++-- .../api/user/server/ProfileLinksInjectorTest.java | 4 ++-- .../che/api/user/server/ProfileManagerTest.java | 4 ++-- .../che/api/user/server/ProfileServiceTest.java | 4 ++-- .../che/api/user/server/UserLinksInjectorTest.java | 4 ++-- .../eclipse/che/api/user/server/UserManagerTest.java | 4 ++-- .../eclipse/che/api/user/server/UserServiceTest.java | 4 ++-- .../che/api/user/server/UserValidatorTest.java | 4 ++-- .../che/api/user/server/jpa/JpaTckModule.java | 4 ++-- .../che/api/user/server/jpa/JpaUserDaoTest.java | 4 ++-- .../user/server/jpa/PreferenceJpaTckRepository.java | 4 ++-- .../api/user/server/jpa/UserJpaTckRepository.java | 4 ++-- .../api/user/server/model/impl/DataObjectsTest.java | 4 ++-- .../api/user/server/spi/tck/PreferenceDaoTest.java | 4 ++-- .../che/api/user/server/spi/tck/ProfileDaoTest.java | 4 ++-- .../che/api/user/server/spi/tck/UserDaoTest.java | 4 ++-- wsmaster/che-core-api-workspace-shared/pom.xml | 4 ++-- .../eclipse/che/api/workspace/shared/Constants.java | 4 ++-- .../org/eclipse/che/api/workspace/shared/Utils.java | 4 ++-- .../che/api/workspace/shared/dto/EnvironmentDto.java | 4 ++-- .../workspace/shared/dto/EnvironmentRecipeDto.java | 4 ++-- .../api/workspace/shared/dto/ExtendedMachineDto.java | 4 ++-- .../workspace/shared/dto/NewProjectConfigDto.java | 4 ++-- .../api/workspace/shared/dto/ProjectConfigDto.java | 4 ++-- .../api/workspace/shared/dto/ProjectProblemDto.java | 4 ++-- .../che/api/workspace/shared/dto/ServerConf2Dto.java | 4 ++-- .../api/workspace/shared/dto/SourceStorageDto.java | 4 ++-- .../api/workspace/shared/dto/WorkspaceConfigDto.java | 4 ++-- .../che/api/workspace/shared/dto/WorkspaceDto.java | 4 ++-- .../workspace/shared/dto/WorkspaceRuntimeDto.java | 4 ++-- .../workspace/shared/dto/WsAgentHealthStateDto.java | 4 ++-- .../shared/dto/event/WorkspaceStatusEvent.java | 4 ++-- .../shared/dto/stack/StackComponentDto.java | 4 ++-- .../che/api/workspace/shared/dto/stack/StackDto.java | 4 ++-- .../workspace/shared/dto/stack/StackSourceDto.java | 4 ++-- .../che/api/workspace/shared/stack/Stack.java | 4 ++-- .../api/workspace/shared/stack/StackComponent.java | 4 ++-- .../che/api/workspace/shared/stack/StackSource.java | 4 ++-- wsmaster/che-core-api-workspace/pom.xml | 4 ++-- .../che/api/agent/server/WsAgentHealthChecker.java | 4 ++-- .../api/agent/server/WsAgentHealthCheckerImpl.java | 4 ++-- .../api/agent/server/WsAgentPingRequestFactory.java | 4 ++-- .../filters/AddExecAgentInEnvironmentUtil.java | 4 ++-- .../server/filters/AddExecAgentInStackFilter.java | 4 ++-- .../filters/AddExecAgentInWorkspaceFilter.java | 4 ++-- .../terminal/WebsocketTerminalFilesPathProvider.java | 4 ++-- .../api/environment/server/AgentConfigApplier.java | 4 ++-- .../api/environment/server/CheEnvironmentEngine.java | 4 ++-- .../environment/server/CheEnvironmentValidator.java | 4 ++-- .../environment/server/ContainerNameGenerator.java | 4 ++-- .../server/DefaultInfrastructureProvisioner.java | 4 ++-- .../server/DefaultServicesStartStrategy.java | 4 ++-- .../api/environment/server/EnvironmentParser.java | 4 ++-- .../server/InfrastructureProvisioner.java | 4 ++-- .../environment/server/MachineInstanceProvider.java | 4 ++-- .../api/environment/server/MachineLinksInjector.java | 4 ++-- .../environment/server/MachineProcessManager.java | 4 ++-- .../environment/server/MachineStartedHandler.java | 4 ++-- .../api/environment/server/NoOpMachineInstance.java | 4 ++-- .../server/TypeSpecificEnvironmentParser.java | 4 ++-- .../server/exception/EnvironmentException.java | 4 ++-- .../exception/EnvironmentNotRunningException.java | 4 ++-- .../EnvironmentStartInterruptedException.java | 4 ++-- .../server/model/CheServiceBuildContextImpl.java | 4 ++-- .../api/environment/server/model/CheServiceImpl.java | 4 ++-- .../server/model/CheServicesEnvironmentImpl.java | 4 ++-- .../workspace/server/DefaultWorkspaceValidator.java | 4 ++-- .../che/api/workspace/server/DtoConverter.java | 4 ++-- .../server/RecipeScriptDownloadService.java | 4 ++-- .../workspace/server/TemporaryWorkspaceRemover.java | 4 ++-- .../workspace/server/WorkspaceConfigJsonAdapter.java | 4 ++-- .../server/WorkspaceConfigMessageBodyAdapter.java | 4 ++-- .../api/workspace/server/WorkspaceFilesCleaner.java | 4 ++-- .../che/api/workspace/server/WorkspaceManager.java | 4 ++-- .../server/WorkspaceMessageBodyAdapter.java | 4 ++-- .../che/api/workspace/server/WorkspaceRuntimes.java | 4 ++-- .../che/api/workspace/server/WorkspaceService.java | 4 ++-- .../server/WorkspaceServiceLinksInjector.java | 4 ++-- .../api/workspace/server/WorkspaceSharedPool.java | 4 ++-- .../che/api/workspace/server/WorkspaceValidator.java | 4 ++-- .../server/activity/WorkspaceActivityManager.java | 4 ++-- .../server/activity/WorkspaceActivityService.java | 4 ++-- .../activity/inject/WorkspaceActivityModule.java | 4 ++-- .../server/event/BeforeStackRemovedEvent.java | 4 ++-- .../server/event/BeforeWorkspaceRemovedEvent.java | 4 ++-- .../workspace/server/event/MachineStateListener.java | 4 ++-- .../workspace/server/event/StackPersistedEvent.java | 4 ++-- .../server/event/WorkspaceCreatedEvent.java | 4 ++-- .../server/event/WorkspaceJsonRpcMessenger.java | 4 ++-- .../workspace/server/event/WorkspaceMessenger.java | 4 ++-- .../server/event/WorkspaceRemovedEvent.java | 4 ++-- .../che/api/workspace/server/jpa/JpaStackDao.java | 4 ++-- .../api/workspace/server/jpa/JpaWorkspaceDao.java | 4 ++-- .../api/workspace/server/jpa/WorkspaceJpaModule.java | 4 ++-- .../workspace/server/model/impl/EnvironmentImpl.java | 4 ++-- .../server/model/impl/EnvironmentRecipeImpl.java | 4 ++-- .../server/model/impl/ExtendedMachineImpl.java | 4 ++-- .../server/model/impl/ProjectConfigImpl.java | 4 ++-- .../workspace/server/model/impl/ServerConf2Impl.java | 4 ++-- .../server/model/impl/SourceStorageImpl.java | 4 ++-- .../server/model/impl/WorkspaceConfigImpl.java | 4 ++-- .../workspace/server/model/impl/WorkspaceImpl.java | 4 ++-- .../server/model/impl/WorkspaceRuntimeImpl.java | 4 ++-- .../server/model/impl/stack/StackComponentImpl.java | 4 ++-- .../workspace/server/model/impl/stack/StackImpl.java | 4 ++-- .../server/model/impl/stack/StackSourceImpl.java | 4 ++-- .../che/api/workspace/server/spi/StackDao.java | 4 ++-- .../che/api/workspace/server/spi/WorkspaceDao.java | 4 ++-- .../api/workspace/server/stack/StackJsonAdapter.java | 4 ++-- .../che/api/workspace/server/stack/StackLoader.java | 4 ++-- .../server/stack/StackMessageBodyAdapter.java | 4 ++-- .../che/api/workspace/server/stack/StackService.java | 4 ++-- .../api/workspace/server/stack/StackValidator.java | 4 ++-- .../api/workspace/server/stack/image/StackIcon.java | 4 ++-- .../api/agent/server/WsAgentHealthCheckerTest.java | 4 ++-- .../agent/server/WsAgentPingRequestFactoryTest.java | 4 ++-- .../filters/AddExecAgentInStackFilterTest.java | 4 ++-- .../filters/AddExecAgentInWorkspaceFilterTest.java | 4 ++-- .../environment/server/AgentConfigApplierTest.java | 4 ++-- .../environment/server/CheEnvironmentEngineTest.java | 4 ++-- .../server/CheEnvironmentValidatorTest.java | 4 ++-- .../environment/server/EnvironmentParserTest.java | 4 ++-- .../server/MachineProcessManagerTest.java | 4 ++-- .../server/MachineServiceLinksInjectorTest.java | 4 ++-- .../compose/DefaultServicesStartStrategyTest.java | 4 ++-- .../server/DefaultWorkspaceValidatorTest.java | 4 ++-- .../server/TemporaryWorkspaceRemoverTest.java | 4 ++-- .../server/WorkspaceConfigJsonAdapterTest.java | 4 ++-- .../api/workspace/server/WorkspaceManagerTest.java | 4 ++-- .../server/WorkspaceRuntimeIntegrationTest.java | 4 ++-- .../api/workspace/server/WorkspaceRuntimesTest.java | 4 ++-- .../api/workspace/server/WorkspaceServiceTest.java | 4 ++-- .../activity/WorkspaceActivityManagerTest.java | 4 ++-- .../activity/WorkspaceActivityServiceTest.java | 4 ++-- .../server/event/MachineStateListenerTest.java | 4 ++-- .../workspace/server/jpa/JpaWorkspaceDaoTest.java | 4 ++-- .../api/workspace/server/jpa/WorkspaceTckModule.java | 4 ++-- .../api/workspace/server/spi/tck/StackDaoTest.java | 4 ++-- .../workspace/server/spi/tck/WorkspaceDaoTest.java | 4 ++-- .../api/workspace/server/stack/StackLoaderTest.java | 4 ++-- .../api/workspace/server/stack/StackServiceTest.java | 4 ++-- .../workspace/server/stack/StackValidatorTest.java | 4 ++-- .../src/test/resources/logback-test.xml | 4 ++-- .../src/test/resources/stack_img/type-java.svg | 4 ++-- wsmaster/che-core-sql-schema/pom.xml | 4 ++-- wsmaster/integration-tests/cascade-removal/pom.xml | 4 ++-- .../eclipse/che/core/db/jpa/CascadeRemovalTest.java | 4 ++-- .../eclipse/che/core/db/jpa/TestObjectsFactory.java | 4 ++-- wsmaster/integration-tests/pom.xml | 4 ++-- wsmaster/integration-tests/postgresql-tck/pom.xml | 4 ++-- .../src/test/java/PostgreSqlTckModule.java | 5 ++--- .../src/test/resources/logback-test.xml | 4 ++-- wsmaster/pom.xml | 4 ++-- wsmaster/wsmaster-local/pom.xml | 4 ++-- .../eclipse/che/api/local/DummyTokenValidator.java | 4 ++-- .../filters/EnvironmentInitializationFilter.java | 4 ++-- 6269 files changed, 12573 insertions(+), 12540 deletions(-) diff --git a/agents/che-core-api-agent-shared/pom.xml b/agents/che-core-api-agent-shared/pom.xml index abc8408d3bd..aa72d063f89 100644 --- a/agents/che-core-api-agent-shared/pom.xml +++ b/agents/che-core-api-agent-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/dto/AgentDto.java b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/dto/AgentDto.java index 74c88b23ef8..05b5e4e64c3 100644 --- a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/dto/AgentDto.java +++ b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/dto/AgentDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.shared.dto; diff --git a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/dto/AgentKeyDto.java b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/dto/AgentKeyDto.java index fdf997579c2..9928f3da7d2 100644 --- a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/dto/AgentKeyDto.java +++ b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/dto/AgentKeyDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.shared.dto; diff --git a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/Agent.java b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/Agent.java index 529183a9caf..1d85fb425d2 100644 --- a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/Agent.java +++ b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/Agent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.shared.model; diff --git a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/AgentKey.java b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/AgentKey.java index 513bf053e08..9f153cecdd3 100644 --- a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/AgentKey.java +++ b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/AgentKey.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.shared.model; diff --git a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/AgentImpl.java b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/AgentImpl.java index 960fee2757a..d15e0a50dac 100644 --- a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/AgentImpl.java +++ b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/AgentImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.shared.model.impl; diff --git a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/AgentKeyImpl.java b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/AgentKeyImpl.java index 51bb544815d..3e9e047df92 100644 --- a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/AgentKeyImpl.java +++ b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/AgentKeyImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.shared.model.impl; diff --git a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/BasicAgent.java b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/BasicAgent.java index 413b944490d..e2c2de35085 100644 --- a/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/BasicAgent.java +++ b/agents/che-core-api-agent-shared/src/main/java/org/eclipse/che/api/agent/shared/model/impl/BasicAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.shared.model.impl; diff --git a/agents/che-core-api-agent/pom.xml b/agents/che-core-api-agent/pom.xml index f78759d99d0..f50c6c7301f 100644 --- a/agents/che-core-api-agent/pom.xml +++ b/agents/che-core-api-agent/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/AgentRegistry.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/AgentRegistry.java index f1a77055ce7..07722046ff4 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/AgentRegistry.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/AgentRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/AgentRegistryService.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/AgentRegistryService.java index f1f0c1bfb36..69999ec0018 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/AgentRegistryService.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/AgentRegistryService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/DtoConverter.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/DtoConverter.java index f8c6590af31..37674562df5 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/DtoConverter.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentException.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentException.java index 0bb07f8335c..f02fd0239bb 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentException.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.exception; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentNotFoundException.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentNotFoundException.java index 2a4543b897b..682768d49b6 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentNotFoundException.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.exception; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentStartException.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentStartException.java index bf523c9ead3..045df002a07 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentStartException.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/exception/AgentStartException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.exception; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/impl/AgentRegistryImpl.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/impl/AgentRegistryImpl.java index 31b6f5716e0..926023ced1e 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/impl/AgentRegistryImpl.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/impl/AgentRegistryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.impl; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/impl/AgentSorter.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/impl/AgentSorter.java index 8e1dc15efba..f2ec024c04f 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/impl/AgentSorter.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/impl/AgentSorter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.impl; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AbstractAgentLauncher.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AbstractAgentLauncher.java index 67c15f8d3db..a7249ecdaf3 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AbstractAgentLauncher.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AbstractAgentLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLauncher.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLauncher.java index ab1d7584fcc..d2cde56d803 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLauncher.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLauncherFactory.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLauncherFactory.java index f038e8087af..4b3682626b5 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLauncherFactory.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLauncherFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLaunchingChecker.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLaunchingChecker.java index 78a0113734b..0b4d232fdb8 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLaunchingChecker.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/AgentLaunchingChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/CommandExistsAgentChecker.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/CommandExistsAgentChecker.java index d7fb8df9c7c..d4fbfebc799 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/CommandExistsAgentChecker.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/CommandExistsAgentChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/CompositeAgentLaunchingChecker.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/CompositeAgentLaunchingChecker.java index 8d85663dda6..2119e67d56a 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/CompositeAgentLaunchingChecker.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/CompositeAgentLaunchingChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/DefaultAgentLauncher.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/DefaultAgentLauncher.java index ba4bffbc107..35f3d97beb3 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/DefaultAgentLauncher.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/DefaultAgentLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/MappedPortIsListeningAgentChecker.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/MappedPortIsListeningAgentChecker.java index 42866eb517f..742879d33d8 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/MappedPortIsListeningAgentChecker.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/MappedPortIsListeningAgentChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/NoOpAgentLaunchingChecker.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/NoOpAgentLaunchingChecker.java index 0e680065356..0d6f194323f 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/NoOpAgentLaunchingChecker.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/NoOpAgentLaunchingChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/ProcessIsLaunchedChecker.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/ProcessIsLaunchedChecker.java index 86bddfe28fa..29a9fd00dc6 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/ProcessIsLaunchedChecker.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/ProcessIsLaunchedChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/SshAgentLaunchingChecker.java b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/SshAgentLaunchingChecker.java index f9d9a8bca53..130fe9cc664 100644 --- a/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/SshAgentLaunchingChecker.java +++ b/agents/che-core-api-agent/src/main/java/org/eclipse/che/api/agent/server/launcher/SshAgentLaunchingChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentKeyImplTest.java b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentKeyImplTest.java index 1d339c05889..5e24aeafda7 100644 --- a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentKeyImplTest.java +++ b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentKeyImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.impl; diff --git a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentRegistryImplTest.java b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentRegistryImplTest.java index f6733805387..b9f974787d3 100644 --- a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentRegistryImplTest.java +++ b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentRegistryImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.impl; diff --git a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentSorterTest.java b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentSorterTest.java index 80ac3a9290d..0571e320662 100644 --- a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentSorterTest.java +++ b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/impl/AgentSorterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.impl; diff --git a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/launcher/AbstractAgentLauncherTest.java b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/launcher/AbstractAgentLauncherTest.java index f9b762605d3..b80e3ce1d7f 100644 --- a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/launcher/AbstractAgentLauncherTest.java +++ b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/launcher/AbstractAgentLauncherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/launcher/DefaultAgentLauncherTest.java b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/launcher/DefaultAgentLauncherTest.java index 0f9bbc05d04..8f7212f1d0f 100644 --- a/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/launcher/DefaultAgentLauncherTest.java +++ b/agents/che-core-api-agent/src/test/java/org/eclipse/che/api/agent/server/launcher/DefaultAgentLauncherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.launcher; diff --git a/agents/che-core-api-agent/src/test/resources/logback-test.xml b/agents/che-core-api-agent/src/test/resources/logback-test.xml index 0cfd2d60075..0a30d3b48ce 100644 --- a/agents/che-core-api-agent/src/test/resources/logback-test.xml +++ b/agents/che-core-api-agent/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/agents/che-core-api-agent/src/test/resources/run_launcher_bats_tests.sh b/agents/che-core-api-agent/src/test/resources/run_launcher_bats_tests.sh index 9d075626eb1..571feaff15c 100755 --- a/agents/che-core-api-agent/src/test/resources/run_launcher_bats_tests.sh +++ b/agents/che-core-api-agent/src/test/resources/run_launcher_bats_tests.sh @@ -1,13 +1,13 @@ #!/bin/bash # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # #images=(bitnami/che-codeigniter:3.1.3-r6 bitnami/che-express:4.15.3-r2 bitnami/che-java-play:1.3.12-r3 bitnami/che-laravel:5.4.23-r1 bitnami/che-rails:5.1.2-r0 bitnami/che-swift:3.1.1-r0 bitnami/che-symfony:3.3.2-r0 eclipse/centos_jdk8 eclipse/cpp_gcc eclipse/debian_jdk8 eclipse/debian_jre eclipse/dotnet_core eclipse/hadoop-dev eclipse/kotlin eclipse/node eclipse/php eclipse/php:5.6 eclipse/php:gae eclipse/selenium eclipse/ubuntu_android eclipse/ubuntu_go eclipse/ubuntu_jdk8 eclipse/ubuntu_jre eclipse/ubuntu_python:2.7 eclipse/ubuntu_python:gae_python2.7 eclipse/ubuntu_python:latest eclipse/ubuntu_rails kaloyanraev/che-zendserver registry.centos.org/che-stacks/centos-go registry.centos.org/che-stacks/centos-nodejs registry.centos.org/che-stacks/spring-boot registry.centos.org/che-stacks/vertx registry.centos.org/che-stacks/wildfly-swarm tomitribe/ubuntu_tomee_173_jdk8 registry.centos.org/che-stacks/centos-git) diff --git a/agents/exec/pom.xml b/agents/exec/pom.xml index 87dcfc2595e..e746aaf4375 100644 --- a/agents/exec/pom.xml +++ b/agents/exec/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/exec/src/assembly/assembly.xml b/agents/exec/src/assembly/assembly.xml index 6d31c94e686..cf2a3d1f885 100644 --- a/agents/exec/src/assembly/assembly.xml +++ b/agents/exec/src/assembly/assembly.xml @@ -1,13 +1,13 @@ diff --git a/agents/git-credentials/src/main/java/org/eclipse/che/api/agent/GitCredentialsAgent.java b/agents/git-credentials/src/main/java/org/eclipse/che/api/agent/GitCredentialsAgent.java index 8cdc4d6b9ec..f842156c406 100644 --- a/agents/git-credentials/src/main/java/org/eclipse/che/api/agent/GitCredentialsAgent.java +++ b/agents/git-credentials/src/main/java/org/eclipse/che/api/agent/GitCredentialsAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/git-credentials/src/main/resources/org.eclipse.che.git.script.sh b/agents/git-credentials/src/main/resources/org.eclipse.che.git.script.sh index 36e13089bb6..906de089fb6 100644 --- a/agents/git-credentials/src/main/resources/org.eclipse.che.git.script.sh +++ b/agents/git-credentials/src/main/resources/org.eclipse.che.git.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # SCRIPT_FILE=~/.ssh/git.sh diff --git a/agents/go-agents/core/activity/activity.go b/agents/go-agents/core/activity/activity.go index c9464d1ac16..9096e761100 100644 --- a/agents/go-agents/core/activity/activity.go +++ b/agents/go-agents/core/activity/activity.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package activity diff --git a/agents/go-agents/core/activity/noop.go b/agents/go-agents/core/activity/noop.go index 9a044a74a22..8bfaac880b5 100644 --- a/agents/go-agents/core/activity/noop.go +++ b/agents/go-agents/core/activity/noop.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package activity diff --git a/agents/go-agents/core/auth/auth.go b/agents/go-agents/core/auth/auth.go index c43c6f1bb0b..b8b63a9a1e0 100644 --- a/agents/go-agents/core/auth/auth.go +++ b/agents/go-agents/core/auth/auth.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // // Package auth provides simple way of authentication of http requests on workspace master diff --git a/agents/go-agents/core/auth/default_cache.go b/agents/go-agents/core/auth/default_cache.go index c5f165f2687..8c74b8276ef 100644 --- a/agents/go-agents/core/auth/default_cache.go +++ b/agents/go-agents/core/auth/default_cache.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package auth diff --git a/agents/go-agents/core/auth/default_cache_test.go b/agents/go-agents/core/auth/default_cache_test.go index c662fcf6351..c0dd9aae98f 100644 --- a/agents/go-agents/core/auth/default_cache_test.go +++ b/agents/go-agents/core/auth/default_cache_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package auth diff --git a/agents/go-agents/core/common/error.go b/agents/go-agents/core/common/error.go index 7b36795e557..1803ce5234c 100644 --- a/agents/go-agents/core/common/error.go +++ b/agents/go-agents/core/common/error.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package common diff --git a/agents/go-agents/core/jsonrpc/internals_test.go b/agents/go-agents/core/jsonrpc/internals_test.go index ef02690c50e..a957c48e16b 100644 --- a/agents/go-agents/core/jsonrpc/internals_test.go +++ b/agents/go-agents/core/jsonrpc/internals_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package jsonrpc diff --git a/agents/go-agents/core/jsonrpc/jsonrpctest/native_conn_recorder.go b/agents/go-agents/core/jsonrpc/jsonrpctest/native_conn_recorder.go index 492e8b4dc1e..4deb2a9d4af 100644 --- a/agents/go-agents/core/jsonrpc/jsonrpctest/native_conn_recorder.go +++ b/agents/go-agents/core/jsonrpc/jsonrpctest/native_conn_recorder.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package jsonrpctest diff --git a/agents/go-agents/core/jsonrpc/jsonrpctest/recording_request_dispatcher.go b/agents/go-agents/core/jsonrpc/jsonrpctest/recording_request_dispatcher.go index 0eb95a1c7d3..82100038821 100644 --- a/agents/go-agents/core/jsonrpc/jsonrpctest/recording_request_dispatcher.go +++ b/agents/go-agents/core/jsonrpc/jsonrpctest/recording_request_dispatcher.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package jsonrpctest diff --git a/agents/go-agents/core/jsonrpc/jsonrpcws/jsonrpc_impl.go b/agents/go-agents/core/jsonrpc/jsonrpcws/jsonrpc_impl.go index d3b99a81581..d9da6e34fe9 100644 --- a/agents/go-agents/core/jsonrpc/jsonrpcws/jsonrpc_impl.go +++ b/agents/go-agents/core/jsonrpc/jsonrpcws/jsonrpc_impl.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // // Package jsonrpcws provides implementation of jsonrpc.NativeConn based on websocket. diff --git a/agents/go-agents/core/jsonrpc/model.go b/agents/go-agents/core/jsonrpc/model.go index 4f3a5ed2e1d..e6d4f7f4ce7 100644 --- a/agents/go-agents/core/jsonrpc/model.go +++ b/agents/go-agents/core/jsonrpc/model.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // // Package jsonrpc provides lightweight implementation of JSONRPC 2.0 protocol. diff --git a/agents/go-agents/core/jsonrpc/registry.go b/agents/go-agents/core/jsonrpc/registry.go index 589a4ec2b4f..5402e35d418 100644 --- a/agents/go-agents/core/jsonrpc/registry.go +++ b/agents/go-agents/core/jsonrpc/registry.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package jsonrpc diff --git a/agents/go-agents/core/jsonrpc/route.go b/agents/go-agents/core/jsonrpc/route.go index c2ed44c9708..bac1d329eec 100644 --- a/agents/go-agents/core/jsonrpc/route.go +++ b/agents/go-agents/core/jsonrpc/route.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package jsonrpc diff --git a/agents/go-agents/core/jsonrpc/transport_specific.go b/agents/go-agents/core/jsonrpc/transport_specific.go index 294a3cfdda9..96497d5d6b2 100644 --- a/agents/go-agents/core/jsonrpc/transport_specific.go +++ b/agents/go-agents/core/jsonrpc/transport_specific.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package jsonrpc diff --git a/agents/go-agents/core/jsonrpc/tunnel.go b/agents/go-agents/core/jsonrpc/tunnel.go index 43bbec30fcc..bc40ae0b8ac 100644 --- a/agents/go-agents/core/jsonrpc/tunnel.go +++ b/agents/go-agents/core/jsonrpc/tunnel.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package jsonrpc diff --git a/agents/go-agents/core/jsonrpc/tunnel_test.go b/agents/go-agents/core/jsonrpc/tunnel_test.go index bb306951aa8..7662d4c6c2f 100644 --- a/agents/go-agents/core/jsonrpc/tunnel_test.go +++ b/agents/go-agents/core/jsonrpc/tunnel_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package jsonrpc_test diff --git a/agents/go-agents/core/process/common.go b/agents/go-agents/core/process/common.go index f2419b9f0c0..661fbdb4c4b 100644 --- a/agents/go-agents/core/process/common.go +++ b/agents/go-agents/core/process/common.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // // Package process provides common utilities for native process execution diff --git a/agents/go-agents/core/process/events.go b/agents/go-agents/core/process/events.go index 16bc0c715a3..f60a9f8f0a9 100644 --- a/agents/go-agents/core/process/events.go +++ b/agents/go-agents/core/process/events.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/process/file_logger.go b/agents/go-agents/core/process/file_logger.go index e9eb874c691..4310f9db84f 100644 --- a/agents/go-agents/core/process/file_logger.go +++ b/agents/go-agents/core/process/file_logger.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/process/file_logger_test.go b/agents/go-agents/core/process/file_logger_test.go index db46df39bb6..abaa5efc77b 100644 --- a/agents/go-agents/core/process/file_logger_test.go +++ b/agents/go-agents/core/process/file_logger_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process_test diff --git a/agents/go-agents/core/process/logs_distributor.go b/agents/go-agents/core/process/logs_distributor.go index f3c195ce0c3..d3d0ea1f74c 100644 --- a/agents/go-agents/core/process/logs_distributor.go +++ b/agents/go-agents/core/process/logs_distributor.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/process/logs_distributor_test.go b/agents/go-agents/core/process/logs_distributor_test.go index 9e75d368859..ff0415528e2 100644 --- a/agents/go-agents/core/process/logs_distributor_test.go +++ b/agents/go-agents/core/process/logs_distributor_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process_test diff --git a/agents/go-agents/core/process/logs_reader.go b/agents/go-agents/core/process/logs_reader.go index 5712ad70db2..9a887e91b6e 100644 --- a/agents/go-agents/core/process/logs_reader.go +++ b/agents/go-agents/core/process/logs_reader.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/process/logs_reader_test.go b/agents/go-agents/core/process/logs_reader_test.go index 6838ed1589d..b5fc022c640 100644 --- a/agents/go-agents/core/process/logs_reader_test.go +++ b/agents/go-agents/core/process/logs_reader_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process_test diff --git a/agents/go-agents/core/process/process.go b/agents/go-agents/core/process/process.go index 38cc7f08c1a..68a407e3ee5 100644 --- a/agents/go-agents/core/process/process.go +++ b/agents/go-agents/core/process/process.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/process/process_builder.go b/agents/go-agents/core/process/process_builder.go index 803324b7b7c..2868e7f6867 100644 --- a/agents/go-agents/core/process/process_builder.go +++ b/agents/go-agents/core/process/process_builder.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/process/process_cleaner.go b/agents/go-agents/core/process/process_cleaner.go index 932dfc5b7bf..f119e161743 100644 --- a/agents/go-agents/core/process/process_cleaner.go +++ b/agents/go-agents/core/process/process_cleaner.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/process/process_cleaner_test.go b/agents/go-agents/core/process/process_cleaner_test.go index 843866cd98b..24a9f58d21e 100644 --- a/agents/go-agents/core/process/process_cleaner_test.go +++ b/agents/go-agents/core/process/process_cleaner_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/process/process_test.go b/agents/go-agents/core/process/process_test.go index 78423eae014..bb74ff9dbaa 100644 --- a/agents/go-agents/core/process/process_test.go +++ b/agents/go-agents/core/process/process_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process_test diff --git a/agents/go-agents/core/process/processtest/test_utils.go b/agents/go-agents/core/process/processtest/test_utils.go index 2c6b4a57946..cb53ffae17d 100644 --- a/agents/go-agents/core/process/processtest/test_utils.go +++ b/agents/go-agents/core/process/processtest/test_utils.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // // Package processtest provides utils for process testing. diff --git a/agents/go-agents/core/process/pumper.go b/agents/go-agents/core/process/pumper.go index 08d6b5d70f6..d1a1b43bd51 100644 --- a/agents/go-agents/core/process/pumper.go +++ b/agents/go-agents/core/process/pumper.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package process diff --git a/agents/go-agents/core/rest/default_router.go b/agents/go-agents/core/rest/default_router.go index 08abd0effe0..e830b234e2d 100644 --- a/agents/go-agents/core/rest/default_router.go +++ b/agents/go-agents/core/rest/default_router.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package rest diff --git a/agents/go-agents/core/rest/errors.go b/agents/go-agents/core/rest/errors.go index 584eaab5882..ebfa5647ad1 100644 --- a/agents/go-agents/core/rest/errors.go +++ b/agents/go-agents/core/rest/errors.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package rest diff --git a/agents/go-agents/core/rest/restutil/util.go b/agents/go-agents/core/rest/restutil/util.go index 0b3dc661cd8..2468ddc2c48 100644 --- a/agents/go-agents/core/rest/restutil/util.go +++ b/agents/go-agents/core/rest/restutil/util.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package restutil diff --git a/agents/go-agents/core/rest/route.go b/agents/go-agents/core/rest/route.go index ffbc37a47ce..f46ee61c6af 100644 --- a/agents/go-agents/core/rest/route.go +++ b/agents/go-agents/core/rest/route.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package rest diff --git a/agents/go-agents/core/rest/router.go b/agents/go-agents/core/rest/router.go index 777f95e7e6d..0901d6f2ab8 100644 --- a/agents/go-agents/core/rest/router.go +++ b/agents/go-agents/core/rest/router.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package rest diff --git a/agents/go-agents/exec-agent/exec/common.go b/agents/go-agents/exec-agent/exec/common.go index c4e2493525e..72b681138d1 100644 --- a/agents/go-agents/exec-agent/exec/common.go +++ b/agents/go-agents/exec-agent/exec/common.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package exec diff --git a/agents/go-agents/exec-agent/exec/rest_service.go b/agents/go-agents/exec-agent/exec/rest_service.go index 3039e51aa73..baf95ea28e8 100644 --- a/agents/go-agents/exec-agent/exec/rest_service.go +++ b/agents/go-agents/exec-agent/exec/rest_service.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package exec diff --git a/agents/go-agents/exec-agent/exec/rest_service_test.go b/agents/go-agents/exec-agent/exec/rest_service_test.go index 726c6cb369f..809e82b197a 100644 --- a/agents/go-agents/exec-agent/exec/rest_service_test.go +++ b/agents/go-agents/exec-agent/exec/rest_service_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package exec diff --git a/agents/go-agents/exec-agent/exec/ws_service.go b/agents/go-agents/exec-agent/exec/ws_service.go index c08a6f9b8ae..34b50b00493 100644 --- a/agents/go-agents/exec-agent/exec/ws_service.go +++ b/agents/go-agents/exec-agent/exec/ws_service.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package exec diff --git a/agents/go-agents/exec-agent/exec/ws_service_test.go b/agents/go-agents/exec-agent/exec/ws_service_test.go index ef47cba29d2..8a0da21704b 100644 --- a/agents/go-agents/exec-agent/exec/ws_service_test.go +++ b/agents/go-agents/exec-agent/exec/ws_service_test.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package exec diff --git a/agents/go-agents/exec-agent/main.go b/agents/go-agents/exec-agent/main.go index b8071c1c1cb..d4433add2c6 100644 --- a/agents/go-agents/exec-agent/main.go +++ b/agents/go-agents/exec-agent/main.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package main diff --git a/agents/go-agents/pom.xml b/agents/go-agents/pom.xml index 4de36fb1754..76385faafee 100644 --- a/agents/go-agents/pom.xml +++ b/agents/go-agents/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/go-agents/terminal-agent/main.go b/agents/go-agents/terminal-agent/main.go index 7ee1ef83995..b9fe3253f2b 100644 --- a/agents/go-agents/terminal-agent/main.go +++ b/agents/go-agents/terminal-agent/main.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // // websocket/pty proxy server: diff --git a/agents/go-agents/terminal-agent/term/finalizer.go b/agents/go-agents/terminal-agent/term/finalizer.go index 85d0b05b60f..3cbaee662eb 100644 --- a/agents/go-agents/terminal-agent/term/finalizer.go +++ b/agents/go-agents/terminal-agent/term/finalizer.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package term diff --git a/agents/go-agents/terminal-agent/term/pty.go b/agents/go-agents/terminal-agent/term/pty.go index b2c5639f1a0..b59492b8825 100644 --- a/agents/go-agents/terminal-agent/term/pty.go +++ b/agents/go-agents/terminal-agent/term/pty.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package term diff --git a/agents/go-agents/terminal-agent/term/websocket.go b/agents/go-agents/terminal-agent/term/websocket.go index 28e71cb80f8..1fcb2da3756 100644 --- a/agents/go-agents/terminal-agent/term/websocket.go +++ b/agents/go-agents/terminal-agent/term/websocket.go @@ -1,12 +1,12 @@ // -// Copyright (c) 2012-2017 Codenvy, S.A. +// Copyright (c) 2012-2017 Red Hat, 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: -// Codenvy, S.A. - initial API and implementation +// Red Hat, Inc. - initial API and implementation // package term diff --git a/agents/ls-csharp/pom.xml b/agents/ls-csharp/pom.xml index f8a5977e100..ffc363d4879 100644 --- a/agents/ls-csharp/pom.xml +++ b/agents/ls-csharp/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/ls-csharp/src/main/java/org/eclipse/che/api/agent/LSCSharpAgent.java b/agents/ls-csharp/src/main/java/org/eclipse/che/api/agent/LSCSharpAgent.java index 23391001c3d..73ed4e712ed 100644 --- a/agents/ls-csharp/src/main/java/org/eclipse/che/api/agent/LSCSharpAgent.java +++ b/agents/ls-csharp/src/main/java/org/eclipse/che/api/agent/LSCSharpAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/ls-csharp/src/main/resources/org.eclipse.che.ls.csharp.script.sh b/agents/ls-csharp/src/main/resources/org.eclipse.che.ls.csharp.script.sh index 65b957fec62..b840acff3b5 100644 --- a/agents/ls-csharp/src/main/resources/org.eclipse.che.ls.csharp.script.sh +++ b/agents/ls-csharp/src/main/resources/org.eclipse.che.ls.csharp.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # is_current_user_root() { diff --git a/agents/ls-json/pom.xml b/agents/ls-json/pom.xml index 195b2ea613c..b37f94306fc 100644 --- a/agents/ls-json/pom.xml +++ b/agents/ls-json/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/ls-json/src/main/java/org/eclipse/che/api/agent/LSJsonAgent.java b/agents/ls-json/src/main/java/org/eclipse/che/api/agent/LSJsonAgent.java index b7ce7efcafb..8e7874105e2 100644 --- a/agents/ls-json/src/main/java/org/eclipse/che/api/agent/LSJsonAgent.java +++ b/agents/ls-json/src/main/java/org/eclipse/che/api/agent/LSJsonAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/ls-json/src/main/resources/org.eclipse.che.ls.json.script.sh b/agents/ls-json/src/main/resources/org.eclipse.che.ls.json.script.sh index 04d1b25e920..010a2165626 100644 --- a/agents/ls-json/src/main/resources/org.eclipse.che.ls.json.script.sh +++ b/agents/ls-json/src/main/resources/org.eclipse.che.ls.json.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # is_current_user_root() { diff --git a/agents/ls-php/pom.xml b/agents/ls-php/pom.xml index e7eb5a8fb1a..f6d5dd0312c 100644 --- a/agents/ls-php/pom.xml +++ b/agents/ls-php/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/ls-php/src/main/java/org/eclipse/che/api/agent/LSPhpAgent.java b/agents/ls-php/src/main/java/org/eclipse/che/api/agent/LSPhpAgent.java index c98a02d318a..a58827eb028 100644 --- a/agents/ls-php/src/main/java/org/eclipse/che/api/agent/LSPhpAgent.java +++ b/agents/ls-php/src/main/java/org/eclipse/che/api/agent/LSPhpAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/ls-php/src/main/resources/org.eclipse.che.ls.php.script.sh b/agents/ls-php/src/main/resources/org.eclipse.che.ls.php.script.sh index 700b993d583..7e6e2848a19 100644 --- a/agents/ls-php/src/main/resources/org.eclipse.che.ls.php.script.sh +++ b/agents/ls-php/src/main/resources/org.eclipse.che.ls.php.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # is_current_user_root() { diff --git a/agents/ls-python/pom.xml b/agents/ls-python/pom.xml index a30118da73d..3f8a0c7511a 100644 --- a/agents/ls-python/pom.xml +++ b/agents/ls-python/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/ls-python/src/main/java/org/eclipse/che/api/agent/LSPythonAgent.java b/agents/ls-python/src/main/java/org/eclipse/che/api/agent/LSPythonAgent.java index 48f701b5b93..932433f632c 100644 --- a/agents/ls-python/src/main/java/org/eclipse/che/api/agent/LSPythonAgent.java +++ b/agents/ls-python/src/main/java/org/eclipse/che/api/agent/LSPythonAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/ls-python/src/main/resources/org.eclipse.che.ls.python.script.sh b/agents/ls-python/src/main/resources/org.eclipse.che.ls.python.script.sh index 532f3d4152e..1146d151e78 100644 --- a/agents/ls-python/src/main/resources/org.eclipse.che.ls.python.script.sh +++ b/agents/ls-python/src/main/resources/org.eclipse.che.ls.python.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # is_current_user_root() { diff --git a/agents/ls-typescript/pom.xml b/agents/ls-typescript/pom.xml index ff561ca5b4f..88bdb1baafd 100644 --- a/agents/ls-typescript/pom.xml +++ b/agents/ls-typescript/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/ls-typescript/src/main/java/org/eclipse/che/api/agent/LSTypeScriptAgent.java b/agents/ls-typescript/src/main/java/org/eclipse/che/api/agent/LSTypeScriptAgent.java index fa1aeb0fb4e..2d68a3748b5 100644 --- a/agents/ls-typescript/src/main/java/org/eclipse/che/api/agent/LSTypeScriptAgent.java +++ b/agents/ls-typescript/src/main/java/org/eclipse/che/api/agent/LSTypeScriptAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/ls-typescript/src/main/resources/org.eclipse.che.ls.typescript.script.sh b/agents/ls-typescript/src/main/resources/org.eclipse.che.ls.typescript.script.sh index 6b390498f87..53273a1baf8 100644 --- a/agents/ls-typescript/src/main/resources/org.eclipse.che.ls.typescript.script.sh +++ b/agents/ls-typescript/src/main/resources/org.eclipse.che.ls.typescript.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # is_current_user_root() { diff --git a/agents/pom.xml b/agents/pom.xml index e8fd0ba3831..63f41d116c8 100644 --- a/agents/pom.xml +++ b/agents/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/ssh/pom.xml b/agents/ssh/pom.xml index 232cc36df79..aa0a2f9201c 100644 --- a/agents/ssh/pom.xml +++ b/agents/ssh/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/ssh/src/main/java/org/eclipse/che/api/agent/SshAgent.java b/agents/ssh/src/main/java/org/eclipse/che/api/agent/SshAgent.java index 6f2271a75fc..aecd092b76f 100644 --- a/agents/ssh/src/main/java/org/eclipse/che/api/agent/SshAgent.java +++ b/agents/ssh/src/main/java/org/eclipse/che/api/agent/SshAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/ssh/src/main/java/org/eclipse/che/api/agent/SshAgentLauncher.java b/agents/ssh/src/main/java/org/eclipse/che/api/agent/SshAgentLauncher.java index d26298f0b02..9aa5c88361d 100644 --- a/agents/ssh/src/main/java/org/eclipse/che/api/agent/SshAgentLauncher.java +++ b/agents/ssh/src/main/java/org/eclipse/che/api/agent/SshAgentLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/ssh/src/main/resources/org.eclipse.che.ssh.script.sh b/agents/ssh/src/main/resources/org.eclipse.che.ssh.script.sh index d6605c22daf..7de8b336672 100644 --- a/agents/ssh/src/main/resources/org.eclipse.che.ssh.script.sh +++ b/agents/ssh/src/main/resources/org.eclipse.che.ssh.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # is_current_user_root() { diff --git a/agents/terminal/pom.xml b/agents/terminal/pom.xml index f43d70e1cfb..10fb09752f7 100644 --- a/agents/terminal/pom.xml +++ b/agents/terminal/pom.xml @@ -1,14 +1,14 @@ diff --git a/agents/terminal/src/assembly/assembly.xml b/agents/terminal/src/assembly/assembly.xml index 5ae42b1d49b..f2197ed898f 100644 --- a/agents/terminal/src/assembly/assembly.xml +++ b/agents/terminal/src/assembly/assembly.xml @@ -1,13 +1,13 @@ diff --git a/agents/unison/src/main/java/org/eclipse/che/api/agent/UnisonAgent.java b/agents/unison/src/main/java/org/eclipse/che/api/agent/UnisonAgent.java index 217432c16fc..891c9a8b1af 100644 --- a/agents/unison/src/main/java/org/eclipse/che/api/agent/UnisonAgent.java +++ b/agents/unison/src/main/java/org/eclipse/che/api/agent/UnisonAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/agents/unison/src/main/resources/org.eclipse.che.unison.script.sh b/agents/unison/src/main/resources/org.eclipse.che.unison.script.sh index bebdc2e6373..9394bc1f98f 100644 --- a/agents/unison/src/main/resources/org.eclipse.che.unison.script.sh +++ b/agents/unison/src/main/resources/org.eclipse.che.unison.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # is_current_user_root() { diff --git a/assembly/assembly-ide-war/pom.xml b/assembly/assembly-ide-war/pom.xml index a9e7205c540..28e3f1e30ba 100644 --- a/assembly/assembly-ide-war/pom.xml +++ b/assembly/assembly-ide-war/pom.xml @@ -1,14 +1,14 @@ diff --git a/assembly/assembly-ide-war/src/main/java/org/eclipse/che/DashboardRedirectionFilter.java b/assembly/assembly-ide-war/src/main/java/org/eclipse/che/DashboardRedirectionFilter.java index 83086bb5eaa..b9c42c8f463 100644 --- a/assembly/assembly-ide-war/src/main/java/org/eclipse/che/DashboardRedirectionFilter.java +++ b/assembly/assembly-ide-war/src/main/java/org/eclipse/che/DashboardRedirectionFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che; diff --git a/assembly/assembly-ide-war/src/main/resources/org/eclipse/che/ide/public/IDE.css b/assembly/assembly-ide-war/src/main/resources/org/eclipse/che/ide/public/IDE.css index ffcc5d1e427..ce0bfadba88 100644 --- a/assembly/assembly-ide-war/src/main/resources/org/eclipse/che/ide/public/IDE.css +++ b/assembly/assembly-ide-war/src/main/resources/org/eclipse/che/ide/public/IDE.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /** Add css rules here for your application. */ body { diff --git a/assembly/assembly-ide-war/src/main/webapp/IDE.jsp b/assembly/assembly-ide-war/src/main/webapp/IDE.jsp index 92d1dba2b04..320e6d9483d 100644 --- a/assembly/assembly-ide-war/src/main/webapp/IDE.jsp +++ b/assembly/assembly-ide-war/src/main/webapp/IDE.jsp @@ -1,13 +1,13 @@ <%-- - Copyright (c) 2012-2017 Codenvy, S.A. + Copyright (c) 2012-2017 Red Hat, 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: - Codenvy, S.A. - initial API and implementation + Red Hat, Inc. - initial API and implementation --%> diff --git a/assembly/assembly-ide-war/src/main/webapp/META-INF/context.xml b/assembly/assembly-ide-war/src/main/webapp/META-INF/context.xml index 280433c5428..a575e411769 100644 --- a/assembly/assembly-ide-war/src/main/webapp/META-INF/context.xml +++ b/assembly/assembly-ide-war/src/main/webapp/META-INF/context.xml @@ -1,14 +1,14 @@ diff --git a/assembly/assembly-ide-war/src/main/webapp/WEB-INF/web.xml b/assembly/assembly-ide-war/src/main/webapp/WEB-INF/web.xml index 50758b280b8..9ad10dd3c8d 100644 --- a/assembly/assembly-ide-war/src/main/webapp/WEB-INF/web.xml +++ b/assembly/assembly-ide-war/src/main/webapp/WEB-INF/web.xml @@ -1,14 +1,14 @@ diff --git a/assembly/assembly-ide-war/src/main/webapp/_app/factory-review.svg b/assembly/assembly-ide-war/src/main/webapp/_app/factory-review.svg index ef2c9ac2474..79afa02d08a 100644 --- a/assembly/assembly-ide-war/src/main/webapp/_app/factory-review.svg +++ b/assembly/assembly-ide-war/src/main/webapp/_app/factory-review.svg @@ -1,14 +1,14 @@ diff --git a/assembly/assembly-ide-war/src/test/java/org/eclipse/che/DashboardRedirectionFilterTest.java b/assembly/assembly-ide-war/src/test/java/org/eclipse/che/DashboardRedirectionFilterTest.java index 548c85b8774..aa5ca053511 100644 --- a/assembly/assembly-ide-war/src/test/java/org/eclipse/che/DashboardRedirectionFilterTest.java +++ b/assembly/assembly-ide-war/src/test/java/org/eclipse/che/DashboardRedirectionFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che; diff --git a/assembly/assembly-main/pom.xml b/assembly/assembly-main/pom.xml index 1b6a3ca706b..32cde7ac1ca 100644 --- a/assembly/assembly-main/pom.xml +++ b/assembly/assembly-main/pom.xml @@ -1,14 +1,14 @@ diff --git a/assembly/assembly-main/src/assembly/assembly.xml b/assembly/assembly-main/src/assembly/assembly.xml index ce0ffe07d75..ef0a716e9cf 100644 --- a/assembly/assembly-main/src/assembly/assembly.xml +++ b/assembly/assembly-main/src/assembly/assembly.xml @@ -1,13 +1,13 @@ diff --git a/assembly/assembly-wsagent-server/src/assembly/assembly.xml b/assembly/assembly-wsagent-server/src/assembly/assembly.xml index 176cd3b9cdd..e8887728d0b 100644 --- a/assembly/assembly-wsagent-server/src/assembly/assembly.xml +++ b/assembly/assembly-wsagent-server/src/assembly/assembly.xml @@ -1,13 +1,13 @@ diff --git a/assembly/assembly-wsagent-war/src/main/java/org/eclipse/che/wsagent/server/SwaggerServletModule.java b/assembly/assembly-wsagent-war/src/main/java/org/eclipse/che/wsagent/server/SwaggerServletModule.java index 5f70fdb9f4c..1ff3b5c5665 100644 --- a/assembly/assembly-wsagent-war/src/main/java/org/eclipse/che/wsagent/server/SwaggerServletModule.java +++ b/assembly/assembly-wsagent-war/src/main/java/org/eclipse/che/wsagent/server/SwaggerServletModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.wsagent.server; diff --git a/assembly/assembly-wsmaster-war/pom.xml b/assembly/assembly-wsmaster-war/pom.xml index 562dc354d81..acbbbb07166 100644 --- a/assembly/assembly-wsmaster-war/pom.xml +++ b/assembly/assembly-wsmaster-war/pom.xml @@ -1,14 +1,14 @@ diff --git a/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/CheWebSocketEndpoint.java b/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/CheWebSocketEndpoint.java index 04b3de612bb..98c987ba714 100644 --- a/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/CheWebSocketEndpoint.java +++ b/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/CheWebSocketEndpoint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.deploy; diff --git a/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterAnalyticsAddresser.java b/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterAnalyticsAddresser.java index c5057b4fd34..23c44149eea 100644 --- a/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterAnalyticsAddresser.java +++ b/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterAnalyticsAddresser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.deploy; diff --git a/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterModule.java b/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterModule.java index e6bd8fa1d59..20d41e73bc9 100644 --- a/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterModule.java +++ b/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.deploy; diff --git a/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterServletModule.java b/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterServletModule.java index 8a6e3d9892f..f066da8f706 100644 --- a/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterServletModule.java +++ b/assembly/assembly-wsmaster-war/src/main/java/org/eclipse/che/api/deploy/WsMasterServletModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.deploy; diff --git a/assembly/assembly-wsmaster-war/src/main/resources/META-INF/persistence.xml b/assembly/assembly-wsmaster-war/src/main/resources/META-INF/persistence.xml index c9aeb18f8dd..ee240bfb57d 100644 --- a/assembly/assembly-wsmaster-war/src/main/resources/META-INF/persistence.xml +++ b/assembly/assembly-wsmaster-war/src/main/resources/META-INF/persistence.xml @@ -1,13 +1,13 @@ diff --git a/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che_aliases.properties b/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che_aliases.properties index 396ed6d048a..c78b41c7162 100644 --- a/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che_aliases.properties +++ b/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/che_aliases.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # che.database=che.conf.storage diff --git a/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/codenvy/che.properties b/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/codenvy/che.properties index 15bb4ee080e..e19283888f1 100644 --- a/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/codenvy/che.properties +++ b/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/classes/codenvy/che.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ### CHE SERVER diff --git a/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/web.xml b/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/web.xml index 2953bf8a580..0e454ecb7cd 100644 --- a/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/web.xml +++ b/assembly/assembly-wsmaster-war/src/main/webapp/WEB-INF/web.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-api-core/pom.xml b/core/che-core-api-core/pom.xml index cd0749b7044..98ec1691f71 100644 --- a/core/che-core-api-core/pom.xml +++ b/core/che-core-api-core/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ApiException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ApiException.java index 0e3d6b0864a..ea03c286793 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ApiException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ApiException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/BadRequestException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/BadRequestException.java index b6ce2edb817..73a547c796d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/BadRequestException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/BadRequestException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ConflictException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ConflictException.java index 0c330e8cf46..c414b2ea53d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ConflictException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ConflictException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ErrorCodes.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ErrorCodes.java index 3af84545106..bfed6d2a7bf 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ErrorCodes.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ErrorCodes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ForbiddenException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ForbiddenException.java index 8d2e54658f3..9856906179b 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ForbiddenException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ForbiddenException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/NotFoundException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/NotFoundException.java index 68e1ac67c77..af4fe27e8bb 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/NotFoundException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/NotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/Page.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/Page.java index 88efa4ef93c..6345126a29f 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/Page.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/Page.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/Pages.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/Pages.java index d1147958a16..bf698984434 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/Pages.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/Pages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ServerException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ServerException.java index 02c8d056e4b..6e7b1ae2b55 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ServerException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/ServerException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/UnauthorizedException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/UnauthorizedException.java index 265d4a8413b..f9630ed00a6 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/UnauthorizedException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/UnauthorizedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/cors/CheCorsFilter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/cors/CheCorsFilter.java index 751e6689270..8f0429f4e40 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/cors/CheCorsFilter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/cors/CheCorsFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.cors; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/factory/FactoryParameter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/factory/FactoryParameter.java index 5ce3faaaa24..cba53f57aa3 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/factory/FactoryParameter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/factory/FactoryParameter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.factory; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcComposer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcComposer.java index e063b0be877..b70d119adbb 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcComposer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcComposer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcError.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcError.java index 1e045182ada..488baeb2867 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcError.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcError.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcErrorTransmitter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcErrorTransmitter.java index 3d03e846c4e..b12ff171ebf 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcErrorTransmitter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcErrorTransmitter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcException.java index 7c71fb9ba98..d129a5ffddb 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMarshaller.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMarshaller.java index d7445eb9cd9..8f6fde8bdac 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMarshaller.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMessageReceiver.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMessageReceiver.java index 68f426c9748..a17e5a3b31d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMessageReceiver.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMessageReceiver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcParams.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcParams.java index 16edfc4da57..b99b3a1de0d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcParams.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcPromise.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcPromise.java index 4da39369cbd..95e3c1d8535 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcPromise.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcPromise.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcQualifier.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcQualifier.java index d832617b6c4..7975be0fd56 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcQualifier.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcQualifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcRequest.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcRequest.java index bf80674300a..e677847c14d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcRequest.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcResponse.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcResponse.java index 83ab15dc2a2..c6604e4c4ec 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcResponse.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcResult.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcResult.java index 7f617252083..c23238cfef0 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcResult.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcUnmarshaller.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcUnmarshaller.java index 29f91c612fc..6d25e22d94c 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcUnmarshaller.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcUtils.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcUtils.java index 1781c370815..271390af44b 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcUtils.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/NotificationHandler.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/NotificationHandler.java index 871a7d0ed6d..829eadb38a4 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/NotificationHandler.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/NotificationHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestDispatcher.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestDispatcher.java index 7a0c71092a1..f388f0d098d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestDispatcher.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestDispatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandler.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandler.java index 12ca3922706..5c0c0cc34c4 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandler.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandlerConfigurator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandlerConfigurator.java index e76e176f343..3373e878aba 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandlerConfigurator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandlerConfigurator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandlerManager.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandlerManager.java index 566a4c4f3cd..26dc8d04288 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandlerManager.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestHandlerManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestProcessor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestProcessor.java index f7228db820e..738c613ac3d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestProcessor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestTransmitter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestTransmitter.java index b78b03113b8..3fbdb726497 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestTransmitter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/RequestTransmitter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/ResponseDispatcher.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/ResponseDispatcher.java index 36a2789875a..71b7fbd955b 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/ResponseDispatcher.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/ResponseDispatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/TimeoutActionRunner.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/TimeoutActionRunner.java index 38087a921ed..27aab60ebd6 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/TimeoutActionRunner.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/TimeoutActionRunner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorManyToNone.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorManyToNone.java index 1ad2e648efb..bb97ade227b 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorManyToNone.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorManyToNone.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorNoneToNone.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorNoneToNone.java index 0f6cc257b42..551c359727d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorNoneToNone.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorNoneToNone.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorOneToNone.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorOneToNone.java index 11296cb6b38..97ad75a6c45 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorOneToNone.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ConsumerConfiguratorOneToNone.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorManyToMany.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorManyToMany.java index 290cded772c..d046a7a1161 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorManyToMany.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorManyToMany.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorManyToOne.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorManyToOne.java index f432ce0d12e..22246b6a55a 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorManyToOne.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorManyToOne.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorNoneToMany.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorNoneToMany.java index d84abb980a9..a899efe34d0 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorNoneToMany.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorNoneToMany.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorNoneToOne.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorNoneToOne.java index 01c0a490074..8d0a657d0b3 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorNoneToOne.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorNoneToOne.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorOneToMany.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorOneToMany.java index d4e3dc2288d..c0f4096130d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorOneToMany.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorOneToMany.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorOneToOne.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorOneToOne.java index 74cf1b8d427..9d24411afe0 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorOneToOne.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/FunctionConfiguratorOneToOne.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/MethodNameConfigurator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/MethodNameConfigurator.java index b1379b811dd..2a3dd06d4ad 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/MethodNameConfigurator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/MethodNameConfigurator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ParamsConfigurator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ParamsConfigurator.java index 5499caf618c..b049be0a79f 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ParamsConfigurator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ParamsConfigurator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromMany.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromMany.java index 39516162d43..99c9f024ed7 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromMany.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromMany.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromNone.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromNone.java index 9b3df539e9a..82a6aa7e625 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromNone.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromNone.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromOne.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromOne.java index 1032b6ac723..ea40702af0f 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromOne.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/reception/ResultConfiguratorFromOne.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.reception; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/EndpointIdConfigurator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/EndpointIdConfigurator.java index 2d35b8c6370..21e550b85d7 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/EndpointIdConfigurator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/EndpointIdConfigurator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.transmission; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/MethodNameConfigurator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/MethodNameConfigurator.java index 119048e4185..c3863817f14 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/MethodNameConfigurator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/MethodNameConfigurator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.transmission; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/ParamsConfigurator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/ParamsConfigurator.java index c51fe1e7fb0..f04d7e87e99 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/ParamsConfigurator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/ParamsConfigurator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.transmission; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromMany.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromMany.java index c36555a170f..a733cc32eb9 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromMany.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromMany.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.transmission; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromNone.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromNone.java index b3e28f3671c..eb2900403de 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromNone.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromNone.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.transmission; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromOne.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromOne.java index 75f79dced6d..48a7df91be5 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromOne.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/commons/transmission/SendConfiguratorFromOne.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons.transmission; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcComposer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcComposer.java index fe43a77d1e7..7a0b5c993a8 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcComposer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcComposer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcMarshaller.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcMarshaller.java index 3660f8c9d5e..2976967aa12 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcMarshaller.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcMarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcQualifier.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcQualifier.java index 6eb3dce7146..381163d06a8 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcQualifier.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcQualifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcUnmarshaller.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcUnmarshaller.java index 91b4a488095..aef168b91cb 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcUnmarshaller.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/GsonJsonRpcUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/JsonRpcModule.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/JsonRpcModule.java index 9e382f68b60..4d3fddc23c4 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/JsonRpcModule.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/JsonRpcModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/ServerSideRequestProcessor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/ServerSideRequestProcessor.java index b440e8e706f..7ebe0ada41b 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/ServerSideRequestProcessor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/ServerSideRequestProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/ServerSideTimeoutActionRunner.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/ServerSideTimeoutActionRunner.java index 5a048e93e04..9c7059d43ce 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/ServerSideTimeoutActionRunner.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/jsonrpc/impl/ServerSideTimeoutActionRunner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/ClientEventPropagationPolicy.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/ClientEventPropagationPolicy.java index 85b5f304741..56c15394ef2 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/ClientEventPropagationPolicy.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/ClientEventPropagationPolicy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOrigin.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOrigin.java index f985a103964..4f6377e9a44 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOrigin.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOrigin.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOriginClientPropagationPolicy.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOriginClientPropagationPolicy.java index c6ec54fd7eb..20cbc97406a 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOriginClientPropagationPolicy.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOriginClientPropagationPolicy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOriginServerPropagationPolicy.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOriginServerPropagationPolicy.java index dee097114e5..6d7c212589d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOriginServerPropagationPolicy.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventOriginServerPropagationPolicy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventService.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventService.java index 7ce7e184eb7..0092e7b3992 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventService.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventSubscriber.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventSubscriber.java index 02cb0be7c0d..14a5ab5fce3 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventSubscriber.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/EventSubscriber.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/Messages.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/Messages.java index 9842eb54324..44d635db190 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/Messages.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/Messages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/ServerEventPropagationPolicy.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/ServerEventPropagationPolicy.java index ffb37b612ad..aa329691703 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/ServerEventPropagationPolicy.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/ServerEventPropagationPolicy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/WSocketEventBusClient.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/WSocketEventBusClient.java index 6ffe0145d17..80729441f11 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/WSocketEventBusClient.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/WSocketEventBusClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/WSocketEventBusServer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/WSocketEventBusServer.java index 99c46e70fd8..97a87966037 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/WSocketEventBusServer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/notification/WSocketEventBusServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ApiExceptionMapper.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ApiExceptionMapper.java index b6e8b0e5ca1..cf89e3b2317 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ApiExceptionMapper.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ApiExceptionMapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ApiInfoService.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ApiInfoService.java index 9bcfcbbe57e..97ade65d57d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ApiInfoService.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ApiInfoService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/CheJsonProvider.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/CheJsonProvider.java index b9fce922c52..e6559bb851a 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/CheJsonProvider.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/CheJsonProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/Constants.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/Constants.java index 27208ec2087..e7805b23f7d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/Constants.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/CoreRestModule.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/CoreRestModule.java index ad208b211f4..684f34b3303 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/CoreRestModule.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/CoreRestModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequest.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequest.java index b3e99f9897a..27925f26f9a 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequest.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequestFactory.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequestFactory.java index 283f8756d50..3abd2fa8d44 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequestFactory.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequestFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonResponse.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonResponse.java index 22a7a1c89d3..6e543f2f5ec 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonResponse.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DefaultHttpJsonResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DownloadFileResponseFilter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DownloadFileResponseFilter.java index b9c557115e5..c5a06f8ecba 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DownloadFileResponseFilter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/DownloadFileResponseFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonHelper.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonHelper.java index 09c509095a0..c25fe2f1634 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonHelper.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonRequest.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonRequest.java index a3004be7d04..f47b225fd1d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonRequest.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonRequestFactory.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonRequestFactory.java index e72b08919a1..53b943fd0e4 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonRequestFactory.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonRequestFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonResponse.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonResponse.java index 06bca2accb1..94a30e99a27 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonResponse.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpJsonResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpOutputMessage.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpOutputMessage.java index 3050371b071..95442a15070 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpOutputMessage.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpOutputMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpServletProxyResponse.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpServletProxyResponse.java index 5d82eb63dfb..a6ccef3c27d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpServletProxyResponse.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/HttpServletProxyResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/JAXRSDownloadFileResponseFilter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/JAXRSDownloadFileResponseFilter.java index 1ca627a366a..9fbd94c4a8a 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/JAXRSDownloadFileResponseFilter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/JAXRSDownloadFileResponseFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/MessageBodyAdapter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/MessageBodyAdapter.java index 72ce5b451c1..e52b2a16ba6 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/MessageBodyAdapter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/MessageBodyAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/MessageBodyAdapterInterceptor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/MessageBodyAdapterInterceptor.java index f73162a7af2..79855faf4ef 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/MessageBodyAdapterInterceptor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/MessageBodyAdapterInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/OutputProvider.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/OutputProvider.java index b09b1c84fc1..13e14df2fef 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/OutputProvider.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/OutputProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/RemoteServiceDescriptor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/RemoteServiceDescriptor.java index 842079e7f5e..3dbff8e5627 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/RemoteServiceDescriptor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/RemoteServiceDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/RuntimeExceptionMapper.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/RuntimeExceptionMapper.java index a7d9d35f4c3..b4078a094f6 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/RuntimeExceptionMapper.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/RuntimeExceptionMapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/Service.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/Service.java index f6cf0b24540..83cd4354e23 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/Service.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/Service.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ServiceContext.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ServiceContext.java index c98dd6a16d1..fa121b822bc 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ServiceContext.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/ServiceContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Description.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Description.java index 0f063d79589..af54268d536 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Description.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Description.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.annotations; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/GenerateLink.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/GenerateLink.java index 4d8619e7730..c23ebf49dc4 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/GenerateLink.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/GenerateLink.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.annotations; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/OPTIONS.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/OPTIONS.java index 40ef9bcb5ba..c6d421c2348 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/OPTIONS.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/OPTIONS.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.annotations; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Required.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Required.java index 7f4b3faaddb..98572fcba83 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Required.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Required.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.annotations; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Valid.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Valid.java index 5971eac43e1..af73bba8ef0 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Valid.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/annotations/Valid.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.annotations; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/Links.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/Links.java index 62a668c7ab3..abdf5ff69f6 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/Links.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/Links.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/ParameterType.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/ParameterType.java index 6963334555f..c5822c422bb 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/ParameterType.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/ParameterType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ApiInfo.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ApiInfo.java index 888ff4ea9ba..4bd9cd3b7ae 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ApiInfo.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ApiInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared.dto; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ExtendedError.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ExtendedError.java index 25d7303191f..8e7b7566e11 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ExtendedError.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ExtendedError.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared.dto; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/Hyperlinks.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/Hyperlinks.java index d27df6f95b6..070449c6738 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/Hyperlinks.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/Hyperlinks.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared.dto; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/Link.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/Link.java index e8a842ca466..4d63d5b35ca 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/Link.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/Link.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared.dto; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/LinkParameter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/LinkParameter.java index 9ee6122b7bc..0f45fc39ecf 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/LinkParameter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/LinkParameter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared.dto; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/RequestBodyDescriptor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/RequestBodyDescriptor.java index f7c1b704443..b3121f19273 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/RequestBodyDescriptor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/RequestBodyDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared.dto; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ServiceDescriptor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ServiceDescriptor.java index 6865f51de47..59df75947b3 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ServiceDescriptor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ServiceDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared.dto; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ServiceError.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ServiceError.java index f6deb05f3c5..8ea3b4c5ff5 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ServiceError.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/rest/shared/dto/ServiceError.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest.shared.dto; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/AbstractLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/AbstractLineConsumer.java index 7b485b131d0..ed0d7d2d915 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/AbstractLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/AbstractLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/AbstractMessageConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/AbstractMessageConsumer.java index bf4c5672ac9..fda5616e94e 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/AbstractMessageConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/AbstractMessageConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/Cancellable.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/Cancellable.java index 72807a8d335..fbc3414c778 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/Cancellable.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/Cancellable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CancellableProcessWrapper.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CancellableProcessWrapper.java index 2426ba16aa2..6e18f4a7b36 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CancellableProcessWrapper.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CancellableProcessWrapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CommandLine.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CommandLine.java index 246eac1b4f7..fbbb026b7bb 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CommandLine.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CommandLine.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CompositeLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CompositeLineConsumer.java index cf2439e5d8e..4cee7989205 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CompositeLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CompositeLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ContentTypeGuesser.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ContentTypeGuesser.java index d3f37d63243..a79cf01e614 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ContentTypeGuesser.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ContentTypeGuesser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CustomPortService.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CustomPortService.java index 0bb2d77864d..c2aa22640fe 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CustomPortService.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/CustomPortService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/DefaultProcessManager.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/DefaultProcessManager.java index caddf1cbd63..9b2d622edd4 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/DefaultProcessManager.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/DefaultProcessManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/DownloadPlugin.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/DownloadPlugin.java index 9bf703f82eb..c6b7558e889 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/DownloadPlugin.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/DownloadPlugin.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ErrorFilteredConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ErrorFilteredConsumer.java index a5d7ce4924c..50583512bb7 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ErrorFilteredConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ErrorFilteredConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/FileCleaner.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/FileCleaner.java index 164d88f58bf..4a766e3eb15 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/FileCleaner.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/FileCleaner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/FileLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/FileLineConsumer.java index 57205f0255a..7ff646c4bca 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/FileLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/FileLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/HttpDownloadPlugin.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/HttpDownloadPlugin.java index f051eac98d9..e610ffb4229 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/HttpDownloadPlugin.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/HttpDownloadPlugin.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/IndentWrapperLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/IndentWrapperLineConsumer.java index 9c671e4c014..f981e346783 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/IndentWrapperLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/IndentWrapperLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointIdProvider.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointIdProvider.java index 1d7033ed941..44c66b57231 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointIdProvider.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointIdProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointIdsHolder.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointIdsHolder.java index 3a87ebde3f2..4528bd3d478 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointIdsHolder.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointIdsHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointToMachineNameHolder.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointToMachineNameHolder.java index 37a30cfc74e..7341cbfeced 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointToMachineNameHolder.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcEndpointToMachineNameHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcLineConsumer.java index e6af12f3a0c..e87809df673 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcMessageConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcMessageConsumer.java index 87d832b2685..4cfe0fe452a 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcMessageConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/JsonRpcMessageConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LineConsumer.java index acb176858a0..c62c4e75dac 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LineConsumerFactory.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LineConsumerFactory.java index 8b2a8991b6b..162c8a20a1a 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LineConsumerFactory.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LineConsumerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LinksHelper.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LinksHelper.java index 1aef71922a5..2f6a1e2613c 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LinksHelper.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/LinksHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ListLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ListLineConsumer.java index 4e324e2879d..dee72ca8c31 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ListLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ListLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/MessageConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/MessageConsumer.java index a3ed6e8b754..0be58f30c64 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/MessageConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/MessageConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/PagingUtil.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/PagingUtil.java index a403ab56e90..9a4f2aef228 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/PagingUtil.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/PagingUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ProcessManager.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ProcessManager.java index c1b84f69c06..de3a89a8de3 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ProcessManager.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ProcessManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ProcessUtil.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ProcessUtil.java index bf6f1a87a83..6f9a692f410 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ProcessUtil.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ProcessUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/RateExceedDetector.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/RateExceedDetector.java index 0378e761036..cf1f355b654 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/RateExceedDetector.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/RateExceedDetector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ShellFactory.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ShellFactory.java index 39f2188cdce..133c81161c0 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ShellFactory.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ShellFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/StreamPump.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/StreamPump.java index 7a50b986f27..1cacf1cb981 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/StreamPump.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/StreamPump.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/SystemInfo.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/SystemInfo.java index e4bb41e5c63..bd4d8e9d1e3 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/SystemInfo.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/SystemInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/UnixProcessManager.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/UnixProcessManager.java index ba9179d91a8..a4090dac357 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/UnixProcessManager.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/UnixProcessManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ValueHolder.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ValueHolder.java index 23f211dcd16..fae5077f007 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ValueHolder.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/ValueHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/Watchdog.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/Watchdog.java index f8b02ba05c9..619cfbf1410 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/Watchdog.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/Watchdog.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WebsocketLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WebsocketLineConsumer.java index 0ebc709e5d2..735a62bc973 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WebsocketLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WebsocketLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WebsocketMessageConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WebsocketMessageConsumer.java index 80f3458c9f1..67c34b5fbaf 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WebsocketMessageConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WebsocketMessageConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WritableLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WritableLineConsumer.java index 167555e00ba..29d4c46b4a1 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WritableLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/WritableLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentCompositeLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentCompositeLineConsumer.java index 4be2c3f89b5..2d020a0b940 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentCompositeLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentCompositeLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util.lineconsumer; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentFileLineConsumer.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentFileLineConsumer.java index 3d0256c18b6..a9f1e306c42 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentFileLineConsumer.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentFileLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util.lineconsumer; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConsumerAlreadyClosedException.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConsumerAlreadyClosedException.java index 3e672dec144..75e39a0ac49 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConsumerAlreadyClosedException.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/util/lineconsumer/ConsumerAlreadyClosedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util.lineconsumer; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/commons/WebSocketMessageReceiver.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/commons/WebSocketMessageReceiver.java index d99a7192d7c..d19a0a9dade 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/commons/WebSocketMessageReceiver.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/commons/WebSocketMessageReceiver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/commons/WebSocketMessageTransmitter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/commons/WebSocketMessageTransmitter.java index 64dc33d28aa..8eac11207a2 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/commons/WebSocketMessageTransmitter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/commons/WebSocketMessageTransmitter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.commons; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketEndpoint.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketEndpoint.java index 30bac844e8f..4d2dda7bc16 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketEndpoint.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketEndpoint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketMessageTransmitter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketMessageTransmitter.java index 77451f6bedc..85c5cf80223 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketMessageTransmitter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketMessageTransmitter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/GuiceInjectorEndpointConfigurator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/GuiceInjectorEndpointConfigurator.java index b634d28fd2a..6aaab2bbc29 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/GuiceInjectorEndpointConfigurator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/GuiceInjectorEndpointConfigurator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/MessagesReSender.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/MessagesReSender.java index 78ac55c1a0c..f49e0dfdbea 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/MessagesReSender.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/MessagesReSender.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebSocketModule.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebSocketModule.java index 778dadf7641..d7b06419b27 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebSocketModule.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebSocketModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebSocketSessionRegistry.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebSocketSessionRegistry.java index c006f575489..976807a8b17 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebSocketSessionRegistry.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebSocketSessionRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebsocketIdService.java b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebsocketIdService.java index 8403f0d7385..616e87978a7 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebsocketIdService.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/api/core/websocket/impl/WebsocketIdService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/commons/env/EnvironmentContext.java b/core/che-core-api-core/src/main/java/org/eclipse/che/commons/env/EnvironmentContext.java index 667c02863da..f2303246ce4 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/commons/env/EnvironmentContext.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/commons/env/EnvironmentContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.env; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/commons/proxy/ProxyAuthenticator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/commons/proxy/ProxyAuthenticator.java index caa6af56781..84d7b31ce57 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/commons/proxy/ProxyAuthenticator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/commons/proxy/ProxyAuthenticator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.proxy; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/commons/subject/Subject.java b/core/che-core-api-core/src/main/java/org/eclipse/che/commons/subject/Subject.java index 2225aafb89d..b26f1330c31 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/commons/subject/Subject.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/commons/subject/Subject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.subject; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/commons/subject/SubjectImpl.java b/core/che-core-api-core/src/main/java/org/eclipse/che/commons/subject/SubjectImpl.java index 0e26aef53a9..6d8daf34e7f 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/commons/subject/SubjectImpl.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/commons/subject/SubjectImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.subject; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheAsynchronousJobPool.java b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheAsynchronousJobPool.java index 0e89cee1f49..0f168e03bac 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheAsynchronousJobPool.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheAsynchronousJobPool.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheMethodInvokerFilter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheMethodInvokerFilter.java index e6e54e614f4..b54bcbe4b4d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheMethodInvokerFilter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheMethodInvokerFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheWSConnection.java b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheWSConnection.java index 99cb822958f..50dbd190ddb 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheWSConnection.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/CheWSConnection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/ETagResponseFilter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/ETagResponseFilter.java index e9d750d314e..2bccbccdf33 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/ETagResponseFilter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/ETagResponseFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/EverrestDownloadFileResponseFilter.java b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/EverrestDownloadFileResponseFilter.java index 76cd0d6c364..9817e5639b3 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/EverrestDownloadFileResponseFilter.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/EverrestDownloadFileResponseFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/ServerContainerInitializeListener.java b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/ServerContainerInitializeListener.java index eca16312bed..ee723852ade 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/ServerContainerInitializeListener.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/ServerContainerInitializeListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/WebSocketMethodInvokerDecorator.java b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/WebSocketMethodInvokerDecorator.java index 1c21abaddf8..d424cb3bbc4 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/WebSocketMethodInvokerDecorator.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/WebSocketMethodInvokerDecorator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/WebSocketMethodInvokerDecoratorFactory.java b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/WebSocketMethodInvokerDecoratorFactory.java index f9f3b7b7355..36b9106103d 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/WebSocketMethodInvokerDecoratorFactory.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/everrest/WebSocketMethodInvokerDecoratorFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/security/PBKDF2PasswordEncryptor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/security/PBKDF2PasswordEncryptor.java index 16aaf2746cd..13c2757c129 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/security/PBKDF2PasswordEncryptor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/security/PBKDF2PasswordEncryptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/security/PasswordEncryptor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/security/PasswordEncryptor.java index 1709a4804ca..ba129cfedd5 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/security/PasswordEncryptor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/security/PasswordEncryptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security; diff --git a/core/che-core-api-core/src/main/java/org/eclipse/che/security/SHA512PasswordEncryptor.java b/core/che-core-api-core/src/main/java/org/eclipse/che/security/SHA512PasswordEncryptor.java index 3b455944728..5e88651ddc3 100644 --- a/core/che-core-api-core/src/main/java/org/eclipse/che/security/SHA512PasswordEncryptor.java +++ b/core/che-core-api-core/src/main/java/org/eclipse/che/security/SHA512PasswordEncryptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security; diff --git a/core/che-core-api-core/src/main/resources/content-types.properties b/core/che-core-api-core/src/main/resources/content-types.properties index 5ae018d00d7..6c991b693b7 100644 --- a/core/che-core-api-core/src/main/resources/content-types.properties +++ b/core/che-core-api-core/src/main/resources/content-types.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ai=application/postscript diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/PageTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/PageTest.java index 24e8ee8487d..be627f50797 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/PageTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/PageTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/PagesTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/PagesTest.java index 55888299276..364365e32ed 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/PagesTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/PagesTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMessageReceiverTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMessageReceiverTest.java index 4b85763aa31..e93e7ab3d6f 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMessageReceiverTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/jsonrpc/commons/JsonRpcMessageReceiverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/jsonrpc/commons/RequestDispatcherTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/jsonrpc/commons/RequestDispatcherTest.java index c5977f37f0b..e3151406f02 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/jsonrpc/commons/RequestDispatcherTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/jsonrpc/commons/RequestDispatcherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.jsonrpc.commons; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/notification/EventServiceTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/notification/EventServiceTest.java index 32e595237ac..9f8aa201fcd 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/notification/EventServiceTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/notification/EventServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.notification; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequestTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequestTest.java index f3eb24bdcb7..c2638fdd242 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequestTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/DefaultHttpJsonRequestTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/DefaultHttpJsonResponseTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/DefaultHttpJsonResponseTest.java index 2f159569d52..95d8cacaa15 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/DefaultHttpJsonResponseTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/DefaultHttpJsonResponseTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/LinkHeaderGenerationTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/LinkHeaderGenerationTest.java index 7308cf25aec..aced10e5db5 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/LinkHeaderGenerationTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/LinkHeaderGenerationTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/RemoteServiceDescriptorTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/RemoteServiceDescriptorTest.java index 33c4faa1f6f..37552500181 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/RemoteServiceDescriptorTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/RemoteServiceDescriptorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/RuntimeExceptionMapperTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/RuntimeExceptionMapperTest.java index cacbd78a7c8..f34f4e078d4 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/RuntimeExceptionMapperTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/RuntimeExceptionMapperTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/ServiceDescriptorTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/ServiceDescriptorTest.java index b7dc624e037..f567ffb6d67 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/ServiceDescriptorTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/ServiceDescriptorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/TestService.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/TestService.java index 5fbaa099e62..9c43d4eddff 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/TestService.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/rest/TestService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.rest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/CompositeLineConsumerTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/CompositeLineConsumerTest.java index 94998fae0cb..3ff94a4d706 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/CompositeLineConsumerTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/CompositeLineConsumerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/ErrorFilteredConsumerTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/ErrorFilteredConsumerTest.java index 3cdca430506..b10eb63a934 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/ErrorFilteredConsumerTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/ErrorFilteredConsumerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/FileLineConsumerTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/FileLineConsumerTest.java index 1a67279d4b5..b473b8b6c40 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/FileLineConsumerTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/FileLineConsumerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/PagingUtilTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/PagingUtilTest.java index f6dde4ecf40..663a6b72730 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/PagingUtilTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/PagingUtilTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/ProcessUtilTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/ProcessUtilTest.java index 6f96fe6f156..b610b07f996 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/ProcessUtilTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/ProcessUtilTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/RateExceedDetectorTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/RateExceedDetectorTest.java index 82f7962fe5b..0392c6c0d8b 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/RateExceedDetectorTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/RateExceedDetectorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/StandardLinuxShellTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/StandardLinuxShellTest.java index e3595330541..a0f0e974cdb 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/StandardLinuxShellTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/StandardLinuxShellTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/WatchdogTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/WatchdogTest.java index 2d7bde44011..c2d609c8b8e 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/WatchdogTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/WatchdogTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentCompositeLineConsumerTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentCompositeLineConsumerTest.java index e2a74df2785..34000b80d18 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentCompositeLineConsumerTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentCompositeLineConsumerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util.lineconsumer; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentFileLineConsumerTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentFileLineConsumerTest.java index a238be27139..6d52e8a15be 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentFileLineConsumerTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/util/lineconsumer/ConcurrentFileLineConsumerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.util.lineconsumer; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketMessageTransmitterTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketMessageTransmitterTest.java index a231e55e71e..fc31fcaa095 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketMessageTransmitterTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/BasicWebSocketMessageTransmitterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/MessagesReSenderTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/MessagesReSenderTest.java index 2e7c6371a10..a16a76dfac7 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/MessagesReSenderTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/MessagesReSenderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/WebSocketSessionRegistryTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/WebSocketSessionRegistryTest.java index fcad0fc51a2..216941267f6 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/WebSocketSessionRegistryTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/api/core/websocket/impl/WebSocketSessionRegistryTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.websocket.impl; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/commons/env/EnvironmentContextTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/commons/env/EnvironmentContextTest.java index 75ea9a05797..b185b68b43d 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/commons/env/EnvironmentContextTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/commons/env/EnvironmentContextTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.env; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/commons/proxy/ProxyAuthenticatorTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/commons/proxy/ProxyAuthenticatorTest.java index 0f64a9e8335..6d01121a56c 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/commons/proxy/ProxyAuthenticatorTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/commons/proxy/ProxyAuthenticatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.proxy; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/everrest/DownloadFileResponseFilterTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/everrest/DownloadFileResponseFilterTest.java index 4ab2e9f7e7c..a751de12c12 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/everrest/DownloadFileResponseFilterTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/everrest/DownloadFileResponseFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/everrest/ETagResponseFilterTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/everrest/ETagResponseFilterTest.java index 53db96c0721..548d3447b47 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/everrest/ETagResponseFilterTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/everrest/ETagResponseFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.everrest; diff --git a/core/che-core-api-core/src/test/java/org/eclipse/che/security/PasswordEncryptorsTest.java b/core/che-core-api-core/src/test/java/org/eclipse/che/security/PasswordEncryptorsTest.java index 791f8072761..d0cbc171283 100644 --- a/core/che-core-api-core/src/test/java/org/eclipse/che/security/PasswordEncryptorsTest.java +++ b/core/che-core-api-core/src/test/java/org/eclipse/che/security/PasswordEncryptorsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security; diff --git a/core/che-core-api-core/src/test/resources/logback-test.xml b/core/che-core-api-core/src/test/resources/logback-test.xml index 2a7fd9851a8..26f112f15b5 100644 --- a/core/che-core-api-core/src/test/resources/logback-test.xml +++ b/core/che-core-api-core/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-api-dto-maven-plugin/pom.xml b/core/che-core-api-dto-maven-plugin/pom.xml index 9a2f8ef177b..b0da899112b 100644 --- a/core/che-core-api-dto-maven-plugin/pom.xml +++ b/core/che-core-api-dto-maven-plugin/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-api-dto-maven-plugin/src/main/java/org/eclipse/che/dto/generator/maven/plugin/DtoGeneratorMojo.java b/core/che-core-api-dto-maven-plugin/src/main/java/org/eclipse/che/dto/generator/maven/plugin/DtoGeneratorMojo.java index 03f4dbb9a8b..e1c828ebc87 100644 --- a/core/che-core-api-dto-maven-plugin/src/main/java/org/eclipse/che/dto/generator/maven/plugin/DtoGeneratorMojo.java +++ b/core/che-core-api-dto-maven-plugin/src/main/java/org/eclipse/che/dto/generator/maven/plugin/DtoGeneratorMojo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.generator.maven.plugin; diff --git a/core/che-core-api-dto/pom.xml b/core/che-core-api-dto/pom.xml index edb08a0d068..f5a2cacc2b8 100644 --- a/core/che-core-api-dto/pom.xml +++ b/core/che-core-api-dto/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoFactory.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoFactory.java index 1aa047ff01b..0568d00d08f 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoFactory.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.server; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoFactoryVisitor.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoFactoryVisitor.java index c3f25f6a460..9747f4afc5c 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoFactoryVisitor.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoFactoryVisitor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.server; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoProvider.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoProvider.java index a37121e023d..da165c56e92 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoProvider.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/DtoProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.server; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/JsonArrayImpl.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/JsonArrayImpl.java index 6902913ce76..40d2625da23 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/JsonArrayImpl.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/JsonArrayImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.server; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/JsonStringMapImpl.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/JsonStringMapImpl.java index 6acb2aba549..4ab8a680bbd 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/JsonStringMapImpl.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/server/JsonStringMapImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.server; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DTO.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DTO.java index e409e60ffdb..06dad191980 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DTO.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DTO.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.shared; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DTOImpl.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DTOImpl.java index 777e56ac02e..9f487ea6f04 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DTOImpl.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DTOImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.shared; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DelegateRule.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DelegateRule.java index 1eede44a7d5..6d05541b207 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DelegateRule.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DelegateRule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.shared; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DelegateTo.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DelegateTo.java index 48188cde343..4257e767d1a 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DelegateTo.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/DelegateTo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.shared; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonArray.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonArray.java index 754648f682e..0ceb6a756a6 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonArray.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonArray.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.shared; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonFieldName.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonFieldName.java index ac58bd339ab..4a93dd72044 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonFieldName.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonFieldName.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.shared; diff --git a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonStringMap.java b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonStringMap.java index d05007acc75..6e58b308523 100644 --- a/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonStringMap.java +++ b/core/che-core-api-dto/src/main/java/org/eclipse/che/dto/shared/JsonStringMap.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.shared; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/ServerDtoTest.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/ServerDtoTest.java index bbf8d78d0c3..14b52ec0849 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/ServerDtoTest.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/ServerDtoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/ComplicatedDto.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/ComplicatedDto.java index 575874a7649..26eab857c2d 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/ComplicatedDto.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/ComplicatedDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DTOHierarchy.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DTOHierarchy.java index 12517d317fc..fd92a99d572 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DTOHierarchy.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DTOHierarchy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithAny.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithAny.java index e3242495ec1..47ac3621522 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithAny.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithAny.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithDelegate.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithDelegate.java index 66f72b82d49..38999fd5d39 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithDelegate.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithDelegate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithFieldNames.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithFieldNames.java index 00f15e6c765..bb7a26f5f82 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithFieldNames.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/DtoWithFieldNames.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/SimpleDto.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/SimpleDto.java index 559b3b17b9a..17c8ca2eaec 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/SimpleDto.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/SimpleDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/TestInterface.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/TestInterface.java index 3664484bd50..fa7e958309a 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/TestInterface.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/TestInterface.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/Util.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/Util.java index a85f4afafa4..9e691730f21 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/Util.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/Util.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/Model.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/Model.java index 26a02b50c62..16ba1c7100d 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/Model.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/Model.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions.model; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelComponent.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelComponent.java index fc0cbfce5a7..e99b0adf65d 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelComponent.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions.model; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelComponentDto.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelComponentDto.java index 781ea67d8bc..1faaeb8792c 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelComponentDto.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelComponentDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions.model; diff --git a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelDto.java b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelDto.java index 5d81cdbb5ba..33df9d47b82 100644 --- a/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelDto.java +++ b/core/che-core-api-dto/src/test/java/org/eclipse/che/dto/definitions/model/ModelDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.dto.definitions.model; diff --git a/core/che-core-api-model/pom.xml b/core/che-core-api-model/pom.xml index 638028d60d2..c176f4d57fb 100644 --- a/core/che-core-api-model/pom.xml +++ b/core/che-core-api-model/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Action.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Action.java index 0b082af23b7..2984a50ff3b 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Action.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Action.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Author.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Author.java index f9826d0dc98..2c2fd02d8c4 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Author.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Author.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Button.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Button.java index 1e521f30fa1..2014e6a7549 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Button.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Button.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/ButtonAttributes.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/ButtonAttributes.java index 8d18a6b352d..8f582fd393e 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/ButtonAttributes.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/ButtonAttributes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Factory.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Factory.java index b1bb0b1f4da..231872625a8 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Factory.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Factory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Ide.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Ide.java index 4e28b42d02f..cd939ff9226 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Ide.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Ide.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnAppClosed.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnAppClosed.java index 15e3a44ef37..b40679a1245 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnAppClosed.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnAppClosed.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnAppLoaded.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnAppLoaded.java index 0a0c08de417..ea84b7aac5a 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnAppLoaded.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnAppLoaded.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnProjectsLoaded.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnProjectsLoaded.java index 8ae7469f6f5..fce54e6d4a1 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnProjectsLoaded.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/OnProjectsLoaded.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Policies.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Policies.java index b0b6de57c39..e6ac4e33332 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Policies.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/factory/Policies.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.factory; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Command.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Command.java index 1e6a93479d9..f8f364b3186 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Command.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Command.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Machine.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Machine.java index ad7f98ca2d6..f52de0cc61d 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Machine.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Machine.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineConfig.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineConfig.java index 3880eb9ad24..cd262819fb6 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineConfig.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineLimits.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineLimits.java index 0bfdbf10e22..bb64b8c3c6a 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineLimits.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineLimits.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineLogMessage.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineLogMessage.java index 653be5deafd..839eac91f0d 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineLogMessage.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineLogMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineProcess.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineProcess.java index 0a49d4453e8..638608d1b1a 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineProcess.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineRuntimeInfo.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineRuntimeInfo.java index 00b16b65068..50132507401 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineRuntimeInfo.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineRuntimeInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineSource.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineSource.java index 477ff23be44..e898878926c 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineSource.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineSource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineStatus.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineStatus.java index fdea7feb9ae..f9555326316 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineStatus.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/MachineStatus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Recipe.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Recipe.java index 5b11f200285..fd3fb5c1e68 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Recipe.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Recipe.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Server.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Server.java index d9babad0aaf..17dee77fed1 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Server.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Server.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/ServerConf.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/ServerConf.java index 594bea9b33d..c151e18eef5 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/ServerConf.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/ServerConf.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/ServerProperties.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/ServerProperties.java index 336fe2d5b83..038d1a6585c 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/ServerProperties.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/ServerProperties.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Snapshot.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Snapshot.java index c211e302f0e..688a1432ce0 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Snapshot.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/machine/Snapshot.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.machine; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/NewProjectConfig.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/NewProjectConfig.java index 5a293a10299..9201e66a8fb 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/NewProjectConfig.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/NewProjectConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.project; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/Project.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/Project.java index 82efc282d48..bbc37736414 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/Project.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/Project.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.project; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/ProjectConfig.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/ProjectConfig.java index b275cc03e93..82c4244cf10 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/ProjectConfig.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/ProjectConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.project; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/SourceStorage.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/SourceStorage.java index 06012c301bb..a1d097f8b5e 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/SourceStorage.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/SourceStorage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.project; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/fs/Folder.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/fs/Folder.java index d64c735ba17..13e436db1dc 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/fs/Folder.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/fs/Folder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.project.fs; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/Attribute.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/Attribute.java index 66a32d0c007..2c099be89b7 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/Attribute.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/Attribute.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.project.type; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/ProjectType.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/ProjectType.java index 27395773589..ded3e2b8eaa 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/ProjectType.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/ProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.project.type; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/Value.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/Value.java index 18f7f792ffc..76435701936 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/Value.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/project/type/Value.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.project.type; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/user/Profile.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/user/Profile.java index 58a4010d507..17d5d92a48e 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/user/Profile.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/user/Profile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.user; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/user/User.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/user/User.java index 5255f09ae4c..1bc77d04fda 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/user/User.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/user/User.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.user; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/Environment.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/Environment.java index f92ee5a0b27..0bc58793643 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/Environment.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/Environment.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.workspace; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/EnvironmentRecipe.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/EnvironmentRecipe.java index 2b3beaed74f..e8995a1a677 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/EnvironmentRecipe.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/EnvironmentRecipe.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.workspace; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/ExtendedMachine.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/ExtendedMachine.java index d6c3efdb5ca..7671814f4ee 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/ExtendedMachine.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/ExtendedMachine.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.workspace; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/ServerConf2.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/ServerConf2.java index 57559a1e90d..ba9fd53bd6b 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/ServerConf2.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/ServerConf2.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.workspace; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/Workspace.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/Workspace.java index ebba9b6b926..e2c147fbf1e 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/Workspace.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/Workspace.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.workspace; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceConfig.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceConfig.java index d533cc23e8c..646059abc74 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceConfig.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.workspace; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceRuntime.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceRuntime.java index 7ca64f8eebe..7ef1e351669 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceRuntime.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceRuntime.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.workspace; diff --git a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceStatus.java b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceStatus.java index 4f65d8806c8..57375e305c4 100644 --- a/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceStatus.java +++ b/core/che-core-api-model/src/main/java/org/eclipse/che/api/core/model/workspace/WorkspaceStatus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.core.model.workspace; diff --git a/core/che-core-db-vendor-h2/pom.xml b/core/che-core-db-vendor-h2/pom.xml index ba4b5f94f27..84e4a31beb2 100644 --- a/core/che-core-db-vendor-h2/pom.xml +++ b/core/che-core-db-vendor-h2/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-db-vendor-h2/src/main/java/org/eclipse/che/core/db/h2/H2DataSourceProvider.java b/core/che-core-db-vendor-h2/src/main/java/org/eclipse/che/core/db/h2/H2DataSourceProvider.java index 73738746acf..796e9b4c2b3 100644 --- a/core/che-core-db-vendor-h2/src/main/java/org/eclipse/che/core/db/h2/H2DataSourceProvider.java +++ b/core/che-core-db-vendor-h2/src/main/java/org/eclipse/che/core/db/h2/H2DataSourceProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.h2; diff --git a/core/che-core-db-vendor-h2/src/main/java/org/eclipse/che/core/db/h2/jpa/eclipselink/H2ExceptionHandler.java b/core/che-core-db-vendor-h2/src/main/java/org/eclipse/che/core/db/h2/jpa/eclipselink/H2ExceptionHandler.java index 46e1d9eb9df..e519cb7b061 100644 --- a/core/che-core-db-vendor-h2/src/main/java/org/eclipse/che/core/db/h2/jpa/eclipselink/H2ExceptionHandler.java +++ b/core/che-core-db-vendor-h2/src/main/java/org/eclipse/che/core/db/h2/jpa/eclipselink/H2ExceptionHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.h2.jpa.eclipselink; diff --git a/core/che-core-db-vendor-postgresql/pom.xml b/core/che-core-db-vendor-postgresql/pom.xml index a310103376e..5b619202da5 100644 --- a/core/che-core-db-vendor-postgresql/pom.xml +++ b/core/che-core-db-vendor-postgresql/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-db-vendor-postgresql/src/main/java/org/eclipse/che/core/db/postgresql/jpa/eclipselink/PostgreSqlExceptionHandler.java b/core/che-core-db-vendor-postgresql/src/main/java/org/eclipse/che/core/db/postgresql/jpa/eclipselink/PostgreSqlExceptionHandler.java index 7a1403b7817..3383dae9789 100644 --- a/core/che-core-db-vendor-postgresql/src/main/java/org/eclipse/che/core/db/postgresql/jpa/eclipselink/PostgreSqlExceptionHandler.java +++ b/core/che-core-db-vendor-postgresql/src/main/java/org/eclipse/che/core/db/postgresql/jpa/eclipselink/PostgreSqlExceptionHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.postgresql.jpa.eclipselink; diff --git a/core/che-core-db/pom.xml b/core/che-core-db/pom.xml index 599d480ef15..ad1b0bd56ef 100644 --- a/core/che-core-db/pom.xml +++ b/core/che-core-db/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/DBErrorCode.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/DBErrorCode.java index ca38cef7bc6..41966b44d48 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/DBErrorCode.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/DBErrorCode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/DBInitializer.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/DBInitializer.java index a4229ff2fdd..3fe8b19d578 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/DBInitializer.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/DBInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/JndiDataSourceProvider.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/JndiDataSourceProvider.java index 0e1326e6566..a41562e2a1b 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/JndiDataSourceProvider.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/JndiDataSourceProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/CascadeContext.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/CascadeContext.java index 5827c247e03..e39d0f2b13d 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/CascadeContext.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/CascadeContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.cascade; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/CascadeEventSubscriber.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/CascadeEventSubscriber.java index f392f303d55..5f09b809cf4 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/CascadeEventSubscriber.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/CascadeEventSubscriber.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.cascade; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/CascadeEvent.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/CascadeEvent.java index feef1410f1b..4f99cd0978d 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/CascadeEvent.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/CascadeEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.cascade.event; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/PersistEvent.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/PersistEvent.java index 67fca3bbf9c..d82f7e8ca07 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/PersistEvent.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/PersistEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.cascade.event; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/RemoveEvent.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/RemoveEvent.java index 9f7c0cea875..4f2a1ec11e4 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/RemoveEvent.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/RemoveEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.cascade.event; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/UpdateEvent.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/UpdateEvent.java index e14d5112c3e..ab3e502f5b1 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/UpdateEvent.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/cascade/event/UpdateEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.cascade.event; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/DetailedRollbackException.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/DetailedRollbackException.java index 5786ee14899..2c5a90fcc34 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/DetailedRollbackException.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/DetailedRollbackException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.jpa; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/DuplicateKeyException.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/DuplicateKeyException.java index b6bd078d198..77da60f8035 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/DuplicateKeyException.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/DuplicateKeyException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.jpa; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/IntegrityConstraintViolationException.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/IntegrityConstraintViolationException.java index 1012645ecd8..741b03ab69f 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/IntegrityConstraintViolationException.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/IntegrityConstraintViolationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.jpa; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/JpaInitializer.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/JpaInitializer.java index 668a95e1e0c..c2027d2dff0 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/JpaInitializer.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/JpaInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.jpa; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/eclipselink/GuiceEntityListenerInjectionManager.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/eclipselink/GuiceEntityListenerInjectionManager.java index a3ff6cbb56d..df50598f02a 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/eclipselink/GuiceEntityListenerInjectionManager.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/eclipselink/GuiceEntityListenerInjectionManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.jpa.eclipselink; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/guice/GuiceJpaInitializer.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/guice/GuiceJpaInitializer.java index 70d6b2d2e9c..8238bc59e9b 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/guice/GuiceJpaInitializer.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/jpa/guice/GuiceJpaInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.jpa.guice; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/SchemaInitializationException.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/SchemaInitializationException.java index 22a01c8b4f7..8bf7564c3a5 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/SchemaInitializationException.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/SchemaInitializationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/SchemaInitializer.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/SchemaInitializer.java index ecfb3a406b7..3c5fe2f27ec 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/SchemaInitializer.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/SchemaInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/CustomSqlMigrationResolver.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/CustomSqlMigrationResolver.java index 6132d651933..2fea2dba2fa 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/CustomSqlMigrationResolver.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/CustomSqlMigrationResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/FlywaySchemaInitializer.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/FlywaySchemaInitializer.java index c42396ad4cf..2515731c9b0 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/FlywaySchemaInitializer.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/FlywaySchemaInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/PlaceholderReplacerProvider.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/PlaceholderReplacerProvider.java index 8aaba706c69..4293ede3376 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/PlaceholderReplacerProvider.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/PlaceholderReplacerProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/ResourcesFinder.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/ResourcesFinder.java index 1dddea55da0..2b137c15661 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/ResourcesFinder.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/ResourcesFinder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScript.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScript.java index d40934f1ee6..efc7c8ada05 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScript.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScript.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScriptCreator.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScriptCreator.java index e092efcce64..566f8786e83 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScriptCreator.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScriptCreator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/VersionResolver.java b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/VersionResolver.java index 6373e8145b3..72758cd22bd 100644 --- a/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/VersionResolver.java +++ b/core/che-core-db/src/main/java/org/eclipse/che/core/db/schema/impl/flyway/VersionResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/FlywaySchemaInitializerTest.java b/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/FlywaySchemaInitializerTest.java index c0c26789734..42d66531865 100644 --- a/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/FlywaySchemaInitializerTest.java +++ b/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/FlywaySchemaInitializerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/ResourcesFinderTest.java b/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/ResourcesFinderTest.java index a4a249fdacc..a51bd2811f4 100644 --- a/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/ResourcesFinderTest.java +++ b/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/ResourcesFinderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScriptCreatorTest.java b/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScriptCreatorTest.java index 6a91039d2ca..b0a4851808a 100644 --- a/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScriptCreatorTest.java +++ b/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/SqlScriptCreatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /******************************************************************************* * Copyright (c) 2012-2016 Codenvy, S.A. diff --git a/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/VersionResolverTest.java b/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/VersionResolverTest.java index 14f154990d3..12bf04ac44d 100644 --- a/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/VersionResolverTest.java +++ b/core/che-core-db/src/test/java/org/eclipse/che/core/db/schema/impl/flyway/VersionResolverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.schema.impl.flyway; diff --git a/core/che-core-db/src/test/resources/logback-test.xml b/core/che-core-db/src/test/resources/logback-test.xml index ed28abcbf48..6b9986b2574 100644 --- a/core/che-core-db/src/test/resources/logback-test.xml +++ b/core/che-core-db/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-db/src/test/resources/sql/1.0/1.init.sql b/core/che-core-db/src/test/resources/sql/1.0/1.init.sql index 40e1b1a68c8..58bdaa82ad3 100644 --- a/core/che-core-db/src/test/resources/sql/1.0/1.init.sql +++ b/core/che-core-db/src/test/resources/sql/1.0/1.init.sql @@ -1,12 +1,12 @@ -- --- Copyright (c) 2012-2017 Codenvy, S.A. +-- Copyright (c) 2012-2017 Red Hat, 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: --- Codenvy, S.A. - initial API and implementation +-- Red Hat, Inc. - initial API and implementation -- CREATE TABLE test ( diff --git a/core/che-core-db/src/test/resources/sql/1.0/2.add_data.sql b/core/che-core-db/src/test/resources/sql/1.0/2.add_data.sql index 726c99dc4d6..a8659bb97a5 100644 --- a/core/che-core-db/src/test/resources/sql/1.0/2.add_data.sql +++ b/core/che-core-db/src/test/resources/sql/1.0/2.add_data.sql @@ -1,12 +1,12 @@ -- --- Copyright (c) 2012-2017 Codenvy, S.A. +-- Copyright (c) 2012-2017 Red Hat, 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: --- Codenvy, S.A. - initial API and implementation +-- Red Hat, Inc. - initial API and implementation -- INSERT INTO test VALUES(1, 'test1'); diff --git a/core/che-core-db/src/test/resources/sql/2.0/1.modify_test_table.sql b/core/che-core-db/src/test/resources/sql/2.0/1.modify_test_table.sql index dc4e3cd9e1a..339e88ceea4 100644 --- a/core/che-core-db/src/test/resources/sql/2.0/1.modify_test_table.sql +++ b/core/che-core-db/src/test/resources/sql/2.0/1.modify_test_table.sql @@ -1,11 +1,11 @@ -- --- Copyright (c) 2012-2017 Codenvy, S.A. +-- Copyright (c) 2012-2017 Red Hat, 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: --- Codenvy, S.A. - initial API and implementation +-- Red Hat, Inc. - initial API and implementation -- diff --git a/core/che-core-db/src/test/resources/sql/2.0/postgresql/1.modify_test_table.sql b/core/che-core-db/src/test/resources/sql/2.0/postgresql/1.modify_test_table.sql index dc4e3cd9e1a..339e88ceea4 100644 --- a/core/che-core-db/src/test/resources/sql/2.0/postgresql/1.modify_test_table.sql +++ b/core/che-core-db/src/test/resources/sql/2.0/postgresql/1.modify_test_table.sql @@ -1,11 +1,11 @@ -- --- Copyright (c) 2012-2017 Codenvy, S.A. +-- Copyright (c) 2012-2017 Red Hat, 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: --- Codenvy, S.A. - initial API and implementation +-- Red Hat, Inc. - initial API and implementation -- diff --git a/core/che-core-typescript-dto-maven-plugin/pom.xml b/core/che-core-typescript-dto-maven-plugin/pom.xml index 2d0a91c4c2a..afb3f7516b2 100644 --- a/core/che-core-typescript-dto-maven-plugin/pom.xml +++ b/core/che-core-typescript-dto-maven-plugin/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/che-core-typescript-dto-maven-plugin/src/it/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojoITest.java b/core/che-core-typescript-dto-maven-plugin/src/it/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojoITest.java index 2deac512993..b82d94c554c 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/it/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojoITest.java +++ b/core/che-core-typescript-dto-maven-plugin/src/it/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojoITest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/it/resources/dto.spec.ts b/core/che-core-typescript-dto-maven-plugin/src/it/resources/dto.spec.ts index bbfe01a88de..013242dd29b 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/it/resources/dto.spec.ts +++ b/core/che-core-typescript-dto-maven-plugin/src/it/resources/dto.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ import {org} from './dto'; diff --git a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/DTOHelper.java b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/DTOHelper.java index fe58b44121b..96fe66e2033 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/DTOHelper.java +++ b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/DTOHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojo.java b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojo.java index 1e46f6f5624..63d2b83f9ae 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojo.java +++ b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDtoGenerator.java b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDtoGenerator.java index 43aa4408c53..7f4dc4e4d5d 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDtoGenerator.java +++ b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDtoGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/DtoModel.java b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/DtoModel.java index 29c57c677b8..02e7a48c91c 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/DtoModel.java +++ b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/DtoModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto.model; diff --git a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/FieldAttributeModel.java b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/FieldAttributeModel.java index 9eacca26459..1fdd781c924 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/FieldAttributeModel.java +++ b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/FieldAttributeModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto.model; diff --git a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/MethodModel.java b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/MethodModel.java index 7d41dfbfeae..81cd1559b63 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/MethodModel.java +++ b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/MethodModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto.model; diff --git a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/ParameterMethodModel.java b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/ParameterMethodModel.java index 90e8d617012..ece6b6201e8 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/ParameterMethodModel.java +++ b/core/che-core-typescript-dto-maven-plugin/src/main/java/org/eclipse/che/plugin/typescript/dto/model/ParameterMethodModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto.model; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MyCustomDTO.java b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MyCustomDTO.java index 0ae36654525..e3d19f5997d 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MyCustomDTO.java +++ b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MyCustomDTO.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MyOtherDTO.java b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MyOtherDTO.java index 77fef3a00a9..087ca4b7a70 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MyOtherDTO.java +++ b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MyOtherDTO.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySimpleDTO.java b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySimpleDTO.java index a84788b8b7f..d0976a9bcd8 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySimpleDTO.java +++ b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySimpleDTO.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySuperClassDTO.java b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySuperClassDTO.java index 1a190978dc3..247d0655082 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySuperClassDTO.java +++ b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySuperClassDTO.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySuperSuperClass.java b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySuperSuperClass.java index 69f6ea210bf..492682ff595 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySuperSuperClass.java +++ b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/MySuperSuperClass.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/Status.java b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/Status.java index 9e449d256f1..a4ba587b405 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/Status.java +++ b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/Status.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojoTest.java b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojoTest.java index f08a703934e..f3a69bffbc9 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojoTest.java +++ b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/TypeScriptDTOGeneratorMojoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/stub/TypeScriptDTOGeneratorMojoProjectStub.java b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/stub/TypeScriptDTOGeneratorMojoProjectStub.java index 8fb0d701688..3498ea3274d 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/stub/TypeScriptDTOGeneratorMojoProjectStub.java +++ b/core/che-core-typescript-dto-maven-plugin/src/test/java/org/eclipse/che/plugin/typescript/dto/stub/TypeScriptDTOGeneratorMojoProjectStub.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.typescript.dto.stub; diff --git a/core/che-core-typescript-dto-maven-plugin/src/test/projects/project/pom.xml b/core/che-core-typescript-dto-maven-plugin/src/test/projects/project/pom.xml index f2f3b5dab7c..1b3917d0d94 100644 --- a/core/che-core-typescript-dto-maven-plugin/src/test/projects/project/pom.xml +++ b/core/che-core-typescript-dto-maven-plugin/src/test/projects/project/pom.xml @@ -1,13 +1,13 @@ diff --git a/core/commons/che-core-commons-annotations/src/main/java/org/eclipse/che/commons/annotation/Nullable.java b/core/commons/che-core-commons-annotations/src/main/java/org/eclipse/che/commons/annotation/Nullable.java index 71fb34bf4bb..a682aec2581 100644 --- a/core/commons/che-core-commons-annotations/src/main/java/org/eclipse/che/commons/annotation/Nullable.java +++ b/core/commons/che-core-commons-annotations/src/main/java/org/eclipse/che/commons/annotation/Nullable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.annotation; diff --git a/core/commons/che-core-commons-inject/pom.xml b/core/commons/che-core-commons-inject/pom.xml index 7d914043ff1..8b010b7c6d4 100644 --- a/core/commons/che-core-commons-inject/pom.xml +++ b/core/commons/che-core-commons-inject/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/CheBootstrap.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/CheBootstrap.java index d4cfe4774aa..a591e806b30 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/CheBootstrap.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/CheBootstrap.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/CodenvyBootstrap.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/CodenvyBootstrap.java index 140831ff0b6..ea66f9c3daf 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/CodenvyBootstrap.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/CodenvyBootstrap.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ConfigurationException.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ConfigurationException.java index dfab0bac5bc..73da620f95d 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ConfigurationException.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ConfigurationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ConfigurationProperties.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ConfigurationProperties.java index 1acf9f1325a..45cdaecf9cc 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ConfigurationProperties.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ConfigurationProperties.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/DynaModule.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/DynaModule.java index 6d80a597659..bc79351a4d1 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/DynaModule.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/DynaModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/FileConverter.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/FileConverter.java index 4248fdea8a2..233b2e967c4 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/FileConverter.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/FileConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/Matchers.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/Matchers.java index 08624e1f04f..843dcbcdba5 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/Matchers.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/Matchers.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ModuleScanner.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ModuleScanner.java index 98e41ce2825..7d909897df9 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ModuleScanner.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/ModuleScanner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PairArrayConverter.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PairArrayConverter.java index 97ebe06f5b9..5ae635e14b4 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PairArrayConverter.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PairArrayConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PairConverter.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PairConverter.java index 2e17de99527..6178ba9ccd2 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PairConverter.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PairConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PathConverter.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PathConverter.java index 634c0218239..e2a021ff5dc 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PathConverter.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/PathConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/StringArrayConverter.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/StringArrayConverter.java index 766a17973e7..28a6dfe39c2 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/StringArrayConverter.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/StringArrayConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/URIConverter.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/URIConverter.java index f97d4e9e005..57fc46400f1 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/URIConverter.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/URIConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/URLConverter.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/URLConverter.java index d36215e8337..207699af09b 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/URLConverter.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/URLConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/DestroyErrorHandler.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/DestroyErrorHandler.java index 85d9308ee6c..42b528d140f 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/DestroyErrorHandler.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/DestroyErrorHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject.lifecycle; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/DestroyModule.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/DestroyModule.java index 8f642ab4d01..4ad6ee5cfac 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/DestroyModule.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/DestroyModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject.lifecycle; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/Destroyer.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/Destroyer.java index 3b6756dbd48..aee4d93dbb2 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/Destroyer.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/Destroyer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject.lifecycle; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/InitModule.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/InitModule.java index b008477b07f..5c9cd7f2eee 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/InitModule.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/InitModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject.lifecycle; diff --git a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/LifecycleModule.java b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/LifecycleModule.java index 4e172442185..cb8a6f0be71 100644 --- a/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/LifecycleModule.java +++ b/core/commons/che-core-commons-inject/src/main/java/org/eclipse/che/inject/lifecycle/LifecycleModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject.lifecycle; diff --git a/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/CheBootstrapTest.java b/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/CheBootstrapTest.java index a8b3374a65c..f347c40df16 100644 --- a/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/CheBootstrapTest.java +++ b/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/CheBootstrapTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/LifecycleTest.java b/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/LifecycleTest.java index 481565c1735..4eba414e0da 100644 --- a/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/LifecycleTest.java +++ b/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/LifecycleTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/MultiBindingTest.java b/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/MultiBindingTest.java index 79171d1036b..c1003e3a3dc 100644 --- a/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/MultiBindingTest.java +++ b/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/MultiBindingTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/PathConverterTest.java b/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/PathConverterTest.java index 95752be3292..3b297bba7de 100644 --- a/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/PathConverterTest.java +++ b/core/commons/che-core-commons-inject/src/test/java/org/eclipse/che/inject/PathConverterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject; diff --git a/core/commons/che-core-commons-inject/src/test/resources/logback-test.xml b/core/commons/che-core-commons-inject/src/test/resources/logback-test.xml index fe0f22d1e39..e947ae78528 100644 --- a/core/commons/che-core-commons-inject/src/test/resources/logback-test.xml +++ b/core/commons/che-core-commons-inject/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-j2ee/pom.xml b/core/commons/che-core-commons-j2ee/pom.xml index 7f8b68003df..82fb154a2b8 100644 --- a/core/commons/che-core-commons-j2ee/pom.xml +++ b/core/commons/che-core-commons-j2ee/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-j2ee/src/main/java/org/eclipse/che/filter/CheCacheDisablingFilter.java b/core/commons/che-core-commons-j2ee/src/main/java/org/eclipse/che/filter/CheCacheDisablingFilter.java index 8c902d1fc79..da197276352 100644 --- a/core/commons/che-core-commons-j2ee/src/main/java/org/eclipse/che/filter/CheCacheDisablingFilter.java +++ b/core/commons/che-core-commons-j2ee/src/main/java/org/eclipse/che/filter/CheCacheDisablingFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.filter; diff --git a/core/commons/che-core-commons-j2ee/src/main/java/org/eclipse/che/filter/CheCacheForcingFilter.java b/core/commons/che-core-commons-j2ee/src/main/java/org/eclipse/che/filter/CheCacheForcingFilter.java index 245d757dea0..c76bc795744 100644 --- a/core/commons/che-core-commons-j2ee/src/main/java/org/eclipse/che/filter/CheCacheForcingFilter.java +++ b/core/commons/che-core-commons-j2ee/src/main/java/org/eclipse/che/filter/CheCacheForcingFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.filter; diff --git a/core/commons/che-core-commons-j2ee/src/test/java/org/eclipse/che/filter/CheCacheDisablingFilterTest.java b/core/commons/che-core-commons-j2ee/src/test/java/org/eclipse/che/filter/CheCacheDisablingFilterTest.java index 1ad3b1e8ad5..a33e44c6c90 100644 --- a/core/commons/che-core-commons-j2ee/src/test/java/org/eclipse/che/filter/CheCacheDisablingFilterTest.java +++ b/core/commons/che-core-commons-j2ee/src/test/java/org/eclipse/che/filter/CheCacheDisablingFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.filter; diff --git a/core/commons/che-core-commons-j2ee/src/test/java/org/eclipse/che/filter/CheCacheForcingFilterTest.java b/core/commons/che-core-commons-j2ee/src/test/java/org/eclipse/che/filter/CheCacheForcingFilterTest.java index 7f19edbe832..b08ea2e73c2 100644 --- a/core/commons/che-core-commons-j2ee/src/test/java/org/eclipse/che/filter/CheCacheForcingFilterTest.java +++ b/core/commons/che-core-commons-j2ee/src/test/java/org/eclipse/che/filter/CheCacheForcingFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.filter; diff --git a/core/commons/che-core-commons-json/pom.xml b/core/commons/che-core-commons-json/pom.xml index d1764570535..88a0e311fb9 100644 --- a/core/commons/che-core-commons-json/pom.xml +++ b/core/commons/che-core-commons-json/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonHelper.java b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonHelper.java index ffc024be982..b301dd5042b 100644 --- a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonHelper.java +++ b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.json; diff --git a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonNameConvention.java b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonNameConvention.java index ac9bf5a9dec..01c0417c270 100644 --- a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonNameConvention.java +++ b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonNameConvention.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.json; diff --git a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonNameConventions.java b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonNameConventions.java index 94322eb6cfd..bf59726cd20 100644 --- a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonNameConventions.java +++ b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonNameConventions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.json; diff --git a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonParseException.java b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonParseException.java index 36a376e4f63..6828e95852a 100644 --- a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonParseException.java +++ b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/JsonParseException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.json; diff --git a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/NameConventionJsonParser.java b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/NameConventionJsonParser.java index 60c87570997..2927763a25f 100644 --- a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/NameConventionJsonParser.java +++ b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/NameConventionJsonParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.json; diff --git a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/NameConventionJsonWriter.java b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/NameConventionJsonWriter.java index 21641b062e2..0b65571db98 100644 --- a/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/NameConventionJsonWriter.java +++ b/core/commons/che-core-commons-json/src/main/java/org/eclipse/che/commons/json/NameConventionJsonWriter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.json; diff --git a/core/commons/che-core-commons-json/src/test/java/org/eclipse/che/commons/json/JsonTest.java b/core/commons/che-core-commons-json/src/test/java/org/eclipse/che/commons/json/JsonTest.java index 8f9f178c568..a9cb0382e03 100644 --- a/core/commons/che-core-commons-json/src/test/java/org/eclipse/che/commons/json/JsonTest.java +++ b/core/commons/che-core-commons-json/src/test/java/org/eclipse/che/commons/json/JsonTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.json; diff --git a/core/commons/che-core-commons-lang/pom.xml b/core/commons/che-core-commons-lang/pom.xml index 89cbac4cb68..b9a01318108 100644 --- a/core/commons/che-core-commons-lang/pom.xml +++ b/core/commons/che-core-commons-lang/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Deserializer.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Deserializer.java index afcdf140a94..88f400faa62 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Deserializer.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Deserializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/IoUtil.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/IoUtil.java index 22be80e344e..c7e02fa4c20 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/IoUtil.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/IoUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/NameGenerator.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/NameGenerator.java index 7497449171a..0e2bb7b7e63 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/NameGenerator.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/NameGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Pair.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Pair.java index 943d1990f7a..1eebf4e6101 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Pair.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Pair.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/PathUtil.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/PathUtil.java index f684f29973b..358ae5b7f61 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/PathUtil.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/PathUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Size.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Size.java index 4fac48f1a54..5a29f16ef92 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Size.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/Size.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/StringUtils.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/StringUtils.java index 2dd7b78ca9a..a4435883724 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/StringUtils.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/StringUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/TarUtils.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/TarUtils.java index 8c584bb7f07..dbec3d86271 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/TarUtils.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/TarUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/URLEncodedUtils.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/URLEncodedUtils.java index d9a5c74d232..e653d65c020 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/URLEncodedUtils.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/URLEncodedUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/UrlUtils.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/UrlUtils.java index 8a8e524f1d6..4aa7ba4dfe1 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/UrlUtils.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/UrlUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/ZipUtils.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/ZipUtils.java index 50aba60784c..0723b967c7c 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/ZipUtils.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/ZipUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/CopyThreadLocalCallable.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/CopyThreadLocalCallable.java index a7a295432a9..eb8c955979f 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/CopyThreadLocalCallable.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/CopyThreadLocalCallable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.concurrent; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/CopyThreadLocalRunnable.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/CopyThreadLocalRunnable.java index 1410161db75..b83d0488e34 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/CopyThreadLocalRunnable.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/CopyThreadLocalRunnable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.concurrent; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/LoggingUncaughtExceptionHandler.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/LoggingUncaughtExceptionHandler.java index 4b9d564010d..71012cffa78 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/LoggingUncaughtExceptionHandler.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/LoggingUncaughtExceptionHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.concurrent; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/PropagatedThreadLocalsProvider.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/PropagatedThreadLocalsProvider.java index ca44eee7ee0..5c599707e5f 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/PropagatedThreadLocalsProvider.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/PropagatedThreadLocalsProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.concurrent; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/StripedLocks.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/StripedLocks.java index c0bbb28fca4..096afaf56c5 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/StripedLocks.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/StripedLocks.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.concurrent; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/ThreadLocalPropagateContext.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/ThreadLocalPropagateContext.java index deb6012d685..26765c77572 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/ThreadLocalPropagateContext.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/ThreadLocalPropagateContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.concurrent; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/Unlocker.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/Unlocker.java index 163d37dc946..e27585a1d2e 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/Unlocker.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/concurrent/Unlocker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.concurrent; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/CommandLine.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/CommandLine.java index 159de457bbc..37772707cb6 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/CommandLine.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/CommandLine.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ExecutionException.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ExecutionException.java index 2d3ad967e92..18e8a13a970 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ExecutionException.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ExecutionException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/Executor.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/Executor.java index d6c87e7ebc9..9870f3131a9 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/Executor.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/Executor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/JavaParameters.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/JavaParameters.java index 0f763e470f2..abcb10fa21f 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/JavaParameters.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/JavaParameters.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/OutputReader.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/OutputReader.java index 4813ec8cee9..0703bd51401 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/OutputReader.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/OutputReader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ParametersList.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ParametersList.java index 58dc4612929..4e2e708fdb6 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ParametersList.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ParametersList.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessEvent.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessEvent.java index 2993ccaf707..c722a1e69a5 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessEvent.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessExecutor.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessExecutor.java index a8be132d4b6..85e9dad009e 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessExecutor.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessExecutor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessHandler.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessHandler.java index 399e05b8514..01fa2c725da 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessHandler.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessListener.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessListener.java index 22a383afc9e..ff34d0a82a7 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessListener.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessOutputType.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessOutputType.java index 912b6861499..69845ed46ec 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessOutputType.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/ProcessOutputType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/WaitForProcessEnd.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/WaitForProcessEnd.java index 0e8c2a3bca6..bf35e64b65a 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/WaitForProcessEnd.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/execution/WaitForProcessEnd.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.execution; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/os/WindowsPathEscaper.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/os/WindowsPathEscaper.java index acf0567c96f..5d067be4d69 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/os/WindowsPathEscaper.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/os/WindowsPathEscaper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.os; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/reflect/ParameterizedTypeImpl.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/reflect/ParameterizedTypeImpl.java index 3ff0573c2ae..3a6a087eda6 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/reflect/ParameterizedTypeImpl.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/reflect/ParameterizedTypeImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.reflect; diff --git a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/ws/rs/ExtMediaType.java b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/ws/rs/ExtMediaType.java index 66bf475f722..2cb01396ce1 100644 --- a/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/ws/rs/ExtMediaType.java +++ b/core/commons/che-core-commons-lang/src/main/java/org/eclipse/che/commons/lang/ws/rs/ExtMediaType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.ws.rs; diff --git a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/PathUtilTest.java b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/PathUtilTest.java index bf8c2decb2c..3443161b206 100644 --- a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/PathUtilTest.java +++ b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/PathUtilTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/SizeTest.java b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/SizeTest.java index 39fc7d1a7cf..fa6db3a1289 100644 --- a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/SizeTest.java +++ b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/SizeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/TestURLEncodedUtils.java b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/TestURLEncodedUtils.java index 3306bdc76f8..155293e2367 100644 --- a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/TestURLEncodedUtils.java +++ b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/TestURLEncodedUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/UrlUtilsTest.java b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/UrlUtilsTest.java index 47c247706a9..46b4bfb5df1 100644 --- a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/UrlUtilsTest.java +++ b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/UrlUtilsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/ZipUtilsTest.java b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/ZipUtilsTest.java index 96db89aba55..91577ecdb7d 100644 --- a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/ZipUtilsTest.java +++ b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/ZipUtilsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang; diff --git a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/concurrent/ThreadLocalPropagateContextTest.java b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/concurrent/ThreadLocalPropagateContextTest.java index b58c2d25606..0343549d03a 100644 --- a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/concurrent/ThreadLocalPropagateContextTest.java +++ b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/concurrent/ThreadLocalPropagateContextTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.concurrent; diff --git a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/os/WindowsPathEscaperTest.java b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/os/WindowsPathEscaperTest.java index 9a5ee496ad0..f465f913cb7 100644 --- a/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/os/WindowsPathEscaperTest.java +++ b/core/commons/che-core-commons-lang/src/test/java/org/eclipse/che/commons/lang/os/WindowsPathEscaperTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.lang.os; diff --git a/core/commons/che-core-commons-lang/src/test/resources/findbugs-exclude.xml b/core/commons/che-core-commons-lang/src/test/resources/findbugs-exclude.xml index 8f7b7c7e4ce..06ac001c21d 100644 --- a/core/commons/che-core-commons-lang/src/test/resources/findbugs-exclude.xml +++ b/core/commons/che-core-commons-lang/src/test/resources/findbugs-exclude.xml @@ -1,13 +1,13 @@ diff --git a/core/commons/che-core-commons-lang/src/test/resources/logback-test.xml b/core/commons/che-core-commons-lang/src/test/resources/logback-test.xml index fe0f22d1e39..e947ae78528 100644 --- a/core/commons/che-core-commons-lang/src/test/resources/logback-test.xml +++ b/core/commons/che-core-commons-lang/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-schedule/pom.xml b/core/commons/che-core-commons-schedule/pom.xml index 0cb9b45102f..1db880d85e4 100644 --- a/core/commons/che-core-commons-schedule/pom.xml +++ b/core/commons/che-core-commons-schedule/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/Launcher.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/Launcher.java index 48c59349cc3..1ab0a98d1bc 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/Launcher.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/Launcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleCron.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleCron.java index de87709fbb3..6c53f2e6b8e 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleCron.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleCron.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleDelay.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleDelay.java index f360e23fd56..a18f4bfee1f 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleDelay.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleDelay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleRate.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleRate.java index 58560db94cc..df713a476c6 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleRate.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/ScheduleRate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/CronExecutorService.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/CronExecutorService.java index 5ca0e63ecc2..068883eff60 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/CronExecutorService.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/CronExecutorService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule.executor; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/CronThreadPoolExecutor.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/CronThreadPoolExecutor.java index 7e624f42894..e3a055d7bec 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/CronThreadPoolExecutor.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/CronThreadPoolExecutor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule.executor; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/LoggedRunnable.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/LoggedRunnable.java index 2681379e27d..8810a2b07b7 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/LoggedRunnable.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/LoggedRunnable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule.executor; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/ScheduleModule.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/ScheduleModule.java index cdf0bb13d42..2ca06a137d7 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/ScheduleModule.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/ScheduleModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule.executor; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/ThreadPullLauncher.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/ThreadPullLauncher.java index 0914a23ff84..119d9bfe220 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/ThreadPullLauncher.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/commons/schedule/executor/ThreadPullLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.schedule.executor; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/inject/lifecycle/InternalScheduleModule.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/inject/lifecycle/InternalScheduleModule.java index abb9aaa2796..fc4036479b1 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/inject/lifecycle/InternalScheduleModule.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/inject/lifecycle/InternalScheduleModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject.lifecycle; diff --git a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/inject/lifecycle/ScheduleInjectionListener.java b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/inject/lifecycle/ScheduleInjectionListener.java index 56c350597f1..5392df29ba1 100644 --- a/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/inject/lifecycle/ScheduleInjectionListener.java +++ b/core/commons/che-core-commons-schedule/src/main/java/org/eclipse/che/inject/lifecycle/ScheduleInjectionListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.inject.lifecycle; diff --git a/core/commons/che-core-commons-schedule/src/test/resources/findbugs-exclude.xml b/core/commons/che-core-commons-schedule/src/test/resources/findbugs-exclude.xml index 4c128c520a6..9b211824833 100644 --- a/core/commons/che-core-commons-schedule/src/test/resources/findbugs-exclude.xml +++ b/core/commons/che-core-commons-schedule/src/test/resources/findbugs-exclude.xml @@ -1,13 +1,13 @@ diff --git a/core/commons/che-core-commons-schedule/src/test/resources/logback-test.xml b/core/commons/che-core-commons-schedule/src/test/resources/logback-test.xml index d00f60a9baa..92391f09e8d 100644 --- a/core/commons/che-core-commons-schedule/src/test/resources/logback-test.xml +++ b/core/commons/che-core-commons-schedule/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-test/pom.xml b/core/commons/che-core-commons-test/pom.xml index b643e7ca803..4753fc4141e 100644 --- a/core/commons/che-core-commons-test/pom.xml +++ b/core/commons/che-core-commons-test/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/SystemPropertiesHelper.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/SystemPropertiesHelper.java index 502ec13aba9..91806637e1c 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/SystemPropertiesHelper.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/SystemPropertiesHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/DBTestServer.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/DBTestServer.java index cde59afded6..aa10cfcca4a 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/DBTestServer.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/DBTestServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.db; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2DBTestServer.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2DBTestServer.java index 38c1262ba98..df0d848cc48 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2DBTestServer.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2DBTestServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.db; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2JpaCleaner.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2JpaCleaner.java index a666f35b4bd..4bcc0c46d9a 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2JpaCleaner.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2JpaCleaner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.db; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2TestHelper.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2TestHelper.java index 8f93038826a..5968b1523cf 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2TestHelper.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/H2TestHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.db; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/PersistTestModuleBuilder.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/PersistTestModuleBuilder.java index c7bc69ad098..6def260edd8 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/PersistTestModuleBuilder.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/db/PersistTestModuleBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.db; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/mockito/answer/SelfReturningAnswer.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/mockito/answer/SelfReturningAnswer.java index 5b8c049eafa..6dd2316429b 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/mockito/answer/SelfReturningAnswer.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/mockito/answer/SelfReturningAnswer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.mockito.answer; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/mockito/answer/WaitingAnswer.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/mockito/answer/WaitingAnswer.java index f41551f65fc..0f528d41056 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/mockito/answer/WaitingAnswer.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/mockito/answer/WaitingAnswer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.mockito.answer; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/servlet/MockServletInputStream.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/servlet/MockServletInputStream.java index d3561f58505..a3bffc0b8de 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/servlet/MockServletInputStream.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/servlet/MockServletInputStream.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.servlet; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/JpaCleaner.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/JpaCleaner.java index 1cdbd35449a..06caa71a0af 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/JpaCleaner.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/JpaCleaner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckListener.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckListener.java index 95afd20924f..5a7e301f09a 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckListener.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckModule.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckModule.java index 07899b7cfa8..315c731f9b4 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckModule.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckResourcesCleaner.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckResourcesCleaner.java index ff2758ed0ed..bf0aaf72ef8 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckResourcesCleaner.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TckResourcesCleaner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TestListenerAdapter.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TestListenerAdapter.java index 44c8e9bb75a..7b65941a368 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TestListenerAdapter.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/TestListenerAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/JpaTckRepository.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/JpaTckRepository.java index e76a33be82f..5f9a7e8fa44 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/JpaTckRepository.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/JpaTckRepository.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck.repository; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/TckRepository.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/TckRepository.java index 61d7701ad6f..9b184809e06 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/TckRepository.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/TckRepository.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck.repository; diff --git a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/TckRepositoryException.java b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/TckRepositoryException.java index aca98a99915..208b095b024 100644 --- a/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/TckRepositoryException.java +++ b/core/commons/che-core-commons-test/src/main/java/org/eclipse/che/commons/test/tck/repository/TckRepositoryException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck.repository; diff --git a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/db/PersistTestModuleBuilderTest.java b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/db/PersistTestModuleBuilderTest.java index e0abb9a507d..eb0396acc33 100644 --- a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/db/PersistTestModuleBuilderTest.java +++ b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/db/PersistTestModuleBuilderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.db; diff --git a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/DBServerListener.java b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/DBServerListener.java index b18a52bce39..f789c18c524 100644 --- a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/DBServerListener.java +++ b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/DBServerListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TckComponentsTest.java b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TckComponentsTest.java index 5d2ab48784b..5f4cb771757 100644 --- a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TckComponentsTest.java +++ b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TckComponentsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TestModule1.java b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TestModule1.java index b2e76442a6c..66fe7bd4782 100644 --- a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TestModule1.java +++ b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TestModule1.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TestModule2.java b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TestModule2.java index 4a5e107d3b4..95478020272 100644 --- a/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TestModule2.java +++ b/core/commons/che-core-commons-test/src/test/java/org/eclipse/che/commons/test/tck/TestModule2.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.test.tck; diff --git a/core/commons/che-core-commons-test/src/test/resources/org/eclipse/che/commons/test/db/test-persistence-1.xml b/core/commons/che-core-commons-test/src/test/resources/org/eclipse/che/commons/test/db/test-persistence-1.xml index 50b4ae758d9..b456357bbde 100644 --- a/core/commons/che-core-commons-test/src/test/resources/org/eclipse/che/commons/test/db/test-persistence-1.xml +++ b/core/commons/che-core-commons-test/src/test/resources/org/eclipse/che/commons/test/db/test-persistence-1.xml @@ -1,13 +1,13 @@ diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/Attribute.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/Attribute.java index 2bfd574634b..fb6421a114e 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/Attribute.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/Attribute.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/Element.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/Element.java index fd65dd710f4..cb1d675b634 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/Element.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/Element.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/ElementMapper.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/ElementMapper.java index 03f50f093bb..86c9b1bb41a 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/ElementMapper.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/ElementMapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/NewAttribute.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/NewAttribute.java index 8c582edd513..1e5a7f94e9e 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/NewAttribute.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/NewAttribute.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/NewElement.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/NewElement.java index 2b5e20eb65e..3b54b8ff66e 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/NewElement.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/NewElement.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/QName.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/QName.java index 981d46c25f2..a7058f00bad 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/QName.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/QName.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTree.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTree.java index cb0a54cc4f9..11047cd9eef 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTree.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTree.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeException.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeException.java index 103f5a14c4c..8f35f81c7aa 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeException.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeLocation.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeLocation.java index a71820ccefb..caf99c90cc2 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeLocation.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeLocation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeUtil.java b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeUtil.java index d2700205e85..3d6d18bc92c 100644 --- a/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeUtil.java +++ b/core/commons/che-core-commons-xml/src/main/java/org/eclipse/che/commons/xml/XMLTreeUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/test/java/org/eclipse/che/commons/xml/XMLTreeTest.java b/core/commons/che-core-commons-xml/src/test/java/org/eclipse/che/commons/xml/XMLTreeTest.java index 351eb722c2f..61bce0f1e0e 100644 --- a/core/commons/che-core-commons-xml/src/test/java/org/eclipse/che/commons/xml/XMLTreeTest.java +++ b/core/commons/che-core-commons-xml/src/test/java/org/eclipse/che/commons/xml/XMLTreeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/che-core-commons-xml/src/test/java/org/eclipse/che/commons/xml/XMLTreeUtilTest.java b/core/commons/che-core-commons-xml/src/test/java/org/eclipse/che/commons/xml/XMLTreeUtilTest.java index 3c980f62f6e..9e4aa74c4aa 100644 --- a/core/commons/che-core-commons-xml/src/test/java/org/eclipse/che/commons/xml/XMLTreeUtilTest.java +++ b/core/commons/che-core-commons-xml/src/test/java/org/eclipse/che/commons/xml/XMLTreeUtilTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.commons.xml; diff --git a/core/commons/pom.xml b/core/commons/pom.xml index 782d4fcaadf..9c9bdddadfe 100644 --- a/core/commons/pom.xml +++ b/core/commons/pom.xml @@ -1,14 +1,14 @@ diff --git a/core/pom.xml b/core/pom.xml index 332811c92ec..7e64f50c01a 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -1,14 +1,14 @@ diff --git a/dashboard/pom.xml b/dashboard/pom.xml index 6274df8a4c1..03f647cb797 100644 --- a/dashboard/pom.xml +++ b/dashboard/pom.xml @@ -1,14 +1,14 @@ diff --git a/dashboard/src/app/admin/admin-config.ts b/dashboard/src/app/admin/admin-config.ts index cbd7e60ca0e..b089d0114e7 100644 --- a/dashboard/src/app/admin/admin-config.ts +++ b/dashboard/src/app/admin/admin-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/admin/plugins/plugins-config.ts b/dashboard/src/app/admin/plugins/plugins-config.ts index d227b4dfb12..09d8449fc4a 100644 --- a/dashboard/src/app/admin/plugins/plugins-config.ts +++ b/dashboard/src/app/admin/plugins/plugins-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/admin/plugins/plugins-filter.ts b/dashboard/src/app/admin/plugins/plugins-filter.ts index 08735fc1434..71b60e4c4c5 100644 --- a/dashboard/src/app/admin/plugins/plugins-filter.ts +++ b/dashboard/src/app/admin/plugins/plugins-filter.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/admin/plugins/plugins.controller.ts b/dashboard/src/app/admin/plugins/plugins.controller.ts index 2975cdd1380..628fa6a0bad 100644 --- a/dashboard/src/app/admin/plugins/plugins.controller.ts +++ b/dashboard/src/app/admin/plugins/plugins.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/administration/administration-config.ts b/dashboard/src/app/administration/administration-config.ts index 0e5c20e2c5d..03b19740ff1 100644 --- a/dashboard/src/app/administration/administration-config.ts +++ b/dashboard/src/app/administration/administration-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/administration/docker-registry/docker-registry-list/docker-registry-list.controller.ts b/dashboard/src/app/administration/docker-registry/docker-registry-list/docker-registry-list.controller.ts index e4d27f3cbba..a679960c801 100644 --- a/dashboard/src/app/administration/docker-registry/docker-registry-list/docker-registry-list.controller.ts +++ b/dashboard/src/app/administration/docker-registry/docker-registry-list/docker-registry-list.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/administration/docker-registry/docker-registry-list/docker-registry-list.directive.ts b/dashboard/src/app/administration/docker-registry/docker-registry-list/docker-registry-list.directive.ts index d9076ad0398..d485ab6be18 100644 --- a/dashboard/src/app/administration/docker-registry/docker-registry-list/docker-registry-list.directive.ts +++ b/dashboard/src/app/administration/docker-registry/docker-registry-list/docker-registry-list.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/administration/docker-registry/docker-registry-list/edit-registry/edit-registry.controller.ts b/dashboard/src/app/administration/docker-registry/docker-registry-list/edit-registry/edit-registry.controller.ts index b52614ca414..1dedb08f2bd 100644 --- a/dashboard/src/app/administration/docker-registry/docker-registry-list/edit-registry/edit-registry.controller.ts +++ b/dashboard/src/app/administration/docker-registry/docker-registry-list/edit-registry/edit-registry.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ChePreferences} from '../../../../../components/api/che-preferences.factory'; diff --git a/dashboard/src/app/colors/che-color.constant.ts b/dashboard/src/app/colors/che-color.constant.ts index b5cf426f0be..4fef013b142 100644 --- a/dashboard/src/app/colors/che-color.constant.ts +++ b/dashboard/src/app/colors/che-color.constant.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/constants/che-countries.constant.ts b/dashboard/src/app/constants/che-countries.constant.ts index d943894b61b..84f007b2f8c 100644 --- a/dashboard/src/app/constants/che-countries.constant.ts +++ b/dashboard/src/app/constants/che-countries.constant.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/constants/che-jobs.constant.ts b/dashboard/src/app/constants/che-jobs.constant.ts index bfe4eff06b8..c4a6dc990ac 100644 --- a/dashboard/src/app/constants/che-jobs.constant.ts +++ b/dashboard/src/app/constants/che-jobs.constant.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/dashboard/dashboard-config.ts b/dashboard/src/app/dashboard/dashboard-config.ts index 53b5e27a31f..1a0fa9ea07d 100644 --- a/dashboard/src/app/dashboard/dashboard-config.ts +++ b/dashboard/src/app/dashboard/dashboard-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/dashboard/dashboard-panel/dashboard-panel.directive.ts b/dashboard/src/app/dashboard/dashboard-panel/dashboard-panel.directive.ts index 0c41158bc38..1d8350ebb30 100644 --- a/dashboard/src/app/dashboard/dashboard-panel/dashboard-panel.directive.ts +++ b/dashboard/src/app/dashboard/dashboard-panel/dashboard-panel.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/dashboard/last-workspaces/last-workspaces.controller.ts b/dashboard/src/app/dashboard/last-workspaces/last-workspaces.controller.ts index c5ba377fc4c..954ff777278 100644 --- a/dashboard/src/app/dashboard/last-workspaces/last-workspaces.controller.ts +++ b/dashboard/src/app/dashboard/last-workspaces/last-workspaces.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWorkspace} from '../../../components/api/che-workspace.factory'; diff --git a/dashboard/src/app/dashboard/last-workspaces/last-workspaces.directive.ts b/dashboard/src/app/dashboard/last-workspaces/last-workspaces.directive.ts index e7babf00aae..eb9f3d6e082 100644 --- a/dashboard/src/app/dashboard/last-workspaces/last-workspaces.directive.ts +++ b/dashboard/src/app/dashboard/last-workspaces/last-workspaces.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/demo-components/demo-components.controller.ts b/dashboard/src/app/demo-components/demo-components.controller.ts index 361d12882af..c49aa3fb9fa 100644 --- a/dashboard/src/app/demo-components/demo-components.controller.ts +++ b/dashboard/src/app/demo-components/demo-components.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/diagnostics/diagnostic-callback-state.ts b/dashboard/src/app/diagnostics/diagnostic-callback-state.ts index e4864aa8a56..8eca0476759 100644 --- a/dashboard/src/app/diagnostics/diagnostic-callback-state.ts +++ b/dashboard/src/app/diagnostics/diagnostic-callback-state.ts @@ -1,14 +1,13 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ - /** * Defines the state of the diagnostic callback * @author Florent Benoit diff --git a/dashboard/src/app/diagnostics/diagnostic-callback.ts b/dashboard/src/app/diagnostics/diagnostic-callback.ts index aa3214f04d9..1bc73003176 100644 --- a/dashboard/src/app/diagnostics/diagnostic-callback.ts +++ b/dashboard/src/app/diagnostics/diagnostic-callback.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ import {DiagnosticItem} from './diagnostic-item'; import {DiagnosticCallbackState} from './diagnostic-callback-state'; diff --git a/dashboard/src/app/diagnostics/diagnostic-item.ts b/dashboard/src/app/diagnostics/diagnostic-item.ts index dfe3de3826f..f01a887121b 100644 --- a/dashboard/src/app/diagnostics/diagnostic-item.ts +++ b/dashboard/src/app/diagnostics/diagnostic-item.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ import {DiagnosticCallbackState} from './diagnostic-callback-state'; diff --git a/dashboard/src/app/diagnostics/diagnostic-part-state.ts b/dashboard/src/app/diagnostics/diagnostic-part-state.ts index 1ef802b0971..e708229d1cf 100644 --- a/dashboard/src/app/diagnostics/diagnostic-part-state.ts +++ b/dashboard/src/app/diagnostics/diagnostic-part-state.ts @@ -1,14 +1,13 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ - /** * Defines the state of the diagnostic part * @author Florent Benoit diff --git a/dashboard/src/app/diagnostics/diagnostic-part.ts b/dashboard/src/app/diagnostics/diagnostic-part.ts index ec6cf30514f..65ad0068126 100644 --- a/dashboard/src/app/diagnostics/diagnostic-part.ts +++ b/dashboard/src/app/diagnostics/diagnostic-part.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ import {DiagnosticItem} from './diagnostic-item'; import {DiagnosticPartState} from './diagnostic-part-state'; diff --git a/dashboard/src/app/diagnostics/diagnostics-config.ts b/dashboard/src/app/diagnostics/diagnostics-config.ts index 2d7facf262f..c2d022b50ac 100644 --- a/dashboard/src/app/diagnostics/diagnostics-config.ts +++ b/dashboard/src/app/diagnostics/diagnostics-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/diagnostics/diagnostics.controller.ts b/dashboard/src/app/diagnostics/diagnostics.controller.ts index f48f9a457e1..2ad22228cd4 100644 --- a/dashboard/src/app/diagnostics/diagnostics.controller.ts +++ b/dashboard/src/app/diagnostics/diagnostics.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {DiagnosticsWebsocketWsMaster} from './test/diagnostics-websocket-wsmaster.factory'; diff --git a/dashboard/src/app/diagnostics/diagnostics.directive.ts b/dashboard/src/app/diagnostics/diagnostics.directive.ts index 16064a5e6c9..61ca392edae 100644 --- a/dashboard/src/app/diagnostics/diagnostics.directive.ts +++ b/dashboard/src/app/diagnostics/diagnostics.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/diagnostics/test/diagnostics-websocket-wsmaster.factory.ts b/dashboard/src/app/diagnostics/test/diagnostics-websocket-wsmaster.factory.ts index 1687c04d269..bdaa1298589 100644 --- a/dashboard/src/app/diagnostics/test/diagnostics-websocket-wsmaster.factory.ts +++ b/dashboard/src/app/diagnostics/test/diagnostics-websocket-wsmaster.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWebsocket} from '../../../components/api/che-websocket.factory'; diff --git a/dashboard/src/app/diagnostics/test/diagnostics-workspace-check-workspace.factory.ts b/dashboard/src/app/diagnostics/test/diagnostics-workspace-check-workspace.factory.ts index 385a6144e27..006c25b1177 100644 --- a/dashboard/src/app/diagnostics/test/diagnostics-workspace-check-workspace.factory.ts +++ b/dashboard/src/app/diagnostics/test/diagnostics-workspace-check-workspace.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {DiagnosticCallback} from '../diagnostic-callback'; diff --git a/dashboard/src/app/diagnostics/test/diagnostics-workspace-start-check.factory.ts b/dashboard/src/app/diagnostics/test/diagnostics-workspace-start-check.factory.ts index 9a8e2365290..c8b7ee0d87d 100644 --- a/dashboard/src/app/diagnostics/test/diagnostics-workspace-start-check.factory.ts +++ b/dashboard/src/app/diagnostics/test/diagnostics-workspace-start-check.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {DiagnosticCallback} from '../diagnostic-callback'; diff --git a/dashboard/src/app/factories/create-factory/action/factory-action-box.controller.ts b/dashboard/src/app/factories/create-factory/action/factory-action-box.controller.ts index 4166a997ff1..3e92578bf02 100644 --- a/dashboard/src/app/factories/create-factory/action/factory-action-box.controller.ts +++ b/dashboard/src/app/factories/create-factory/action/factory-action-box.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/action/factory-action-box.directive.ts b/dashboard/src/app/factories/create-factory/action/factory-action-box.directive.ts index 39a2f30990f..fa4c71262fa 100644 --- a/dashboard/src/app/factories/create-factory/action/factory-action-box.directive.ts +++ b/dashboard/src/app/factories/create-factory/action/factory-action-box.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/action/factory-action-edit.controller.ts b/dashboard/src/app/factories/create-factory/action/factory-action-edit.controller.ts index dba1b9778e6..177efd2224d 100644 --- a/dashboard/src/app/factories/create-factory/action/factory-action-edit.controller.ts +++ b/dashboard/src/app/factories/create-factory/action/factory-action-edit.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {FactoryActionBoxController} from './factory-action-box.controller'; diff --git a/dashboard/src/app/factories/create-factory/command/factory-command-edit.controller.ts b/dashboard/src/app/factories/create-factory/command/factory-command-edit.controller.ts index ef99aa1d803..d208f80ed88 100644 --- a/dashboard/src/app/factories/create-factory/command/factory-command-edit.controller.ts +++ b/dashboard/src/app/factories/create-factory/command/factory-command-edit.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/command/factory-command.controller.ts b/dashboard/src/app/factories/create-factory/command/factory-command.controller.ts index 42b0e1fd220..a2f63eff053 100644 --- a/dashboard/src/app/factories/create-factory/command/factory-command.controller.ts +++ b/dashboard/src/app/factories/create-factory/command/factory-command.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/command/factory-command.directive.ts b/dashboard/src/app/factories/create-factory/command/factory-command.directive.ts index 6dac01b972e..cc3bf43b50b 100644 --- a/dashboard/src/app/factories/create-factory/command/factory-command.directive.ts +++ b/dashboard/src/app/factories/create-factory/command/factory-command.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/config-file-tab/factory-from-file.controller.ts b/dashboard/src/app/factories/create-factory/config-file-tab/factory-from-file.controller.ts index d61e85b7bf5..7180a3a2369 100644 --- a/dashboard/src/app/factories/create-factory/config-file-tab/factory-from-file.controller.ts +++ b/dashboard/src/app/factories/create-factory/config-file-tab/factory-from-file.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheNotification} from '../../../../components/notification/che-notification.factory'; diff --git a/dashboard/src/app/factories/create-factory/config-file-tab/factory-from-file.directive.ts b/dashboard/src/app/factories/create-factory/config-file-tab/factory-from-file.directive.ts index e1eea304790..cf2e7efb252 100644 --- a/dashboard/src/app/factories/create-factory/config-file-tab/factory-from-file.directive.ts +++ b/dashboard/src/app/factories/create-factory/config-file-tab/factory-from-file.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/create-factory-config.ts b/dashboard/src/app/factories/create-factory/create-factory-config.ts index c5613233104..1513b39ad08 100644 --- a/dashboard/src/app/factories/create-factory/create-factory-config.ts +++ b/dashboard/src/app/factories/create-factory/create-factory-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/create-factory.controller.ts b/dashboard/src/app/factories/create-factory/create-factory.controller.ts index 08ca7baf59d..afa8e3c375c 100644 --- a/dashboard/src/app/factories/create-factory/create-factory.controller.ts +++ b/dashboard/src/app/factories/create-factory/create-factory.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/factories/create-factory/git/create-factory-git.controller.ts b/dashboard/src/app/factories/create-factory/git/create-factory-git.controller.ts index 090114ca0fa..5b82a812c47 100644 --- a/dashboard/src/app/factories/create-factory/git/create-factory-git.controller.ts +++ b/dashboard/src/app/factories/create-factory/git/create-factory-git.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/git/create-factory-git.directive.ts b/dashboard/src/app/factories/create-factory/git/create-factory-git.directive.ts index 4acad839a97..b3ec7fdc0c2 100644 --- a/dashboard/src/app/factories/create-factory/git/create-factory-git.directive.ts +++ b/dashboard/src/app/factories/create-factory/git/create-factory-git.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/template-tab/factory-from-template.controller.ts b/dashboard/src/app/factories/create-factory/template-tab/factory-from-template.controller.ts index c25f64028c6..86a0a6b4cb5 100644 --- a/dashboard/src/app/factories/create-factory/template-tab/factory-from-template.controller.ts +++ b/dashboard/src/app/factories/create-factory/template-tab/factory-from-template.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheNotification} from '../../../../components/notification/che-notification.factory'; diff --git a/dashboard/src/app/factories/create-factory/template-tab/factory-from-template.directive.ts b/dashboard/src/app/factories/create-factory/template-tab/factory-from-template.directive.ts index f2cc6c985d4..72c407136b5 100644 --- a/dashboard/src/app/factories/create-factory/template-tab/factory-from-template.directive.ts +++ b/dashboard/src/app/factories/create-factory/template-tab/factory-from-template.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/create-factory/workspaces-tab/factory-from-workpsace.controller.ts b/dashboard/src/app/factories/create-factory/workspaces-tab/factory-from-workpsace.controller.ts index 146a4d502f5..f3472867758 100644 --- a/dashboard/src/app/factories/create-factory/workspaces-tab/factory-from-workpsace.controller.ts +++ b/dashboard/src/app/factories/create-factory/workspaces-tab/factory-from-workpsace.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/factories/create-factory/workspaces-tab/factory-from-workspace.directive.ts b/dashboard/src/app/factories/create-factory/workspaces-tab/factory-from-workspace.directive.ts index 1a46e66a78c..7d402ec3d88 100644 --- a/dashboard/src/app/factories/create-factory/workspaces-tab/factory-from-workspace.directive.ts +++ b/dashboard/src/app/factories/create-factory/workspaces-tab/factory-from-workspace.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/factories-config.ts b/dashboard/src/app/factories/factories-config.ts index c30bb3a8817..d338b1fe044 100644 --- a/dashboard/src/app/factories/factories-config.ts +++ b/dashboard/src/app/factories/factories-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/factory-details/factory-details-config.ts b/dashboard/src/app/factories/factory-details/factory-details-config.ts index 1b7c0ee99b8..039168c7a31 100644 --- a/dashboard/src/app/factories/factory-details/factory-details-config.ts +++ b/dashboard/src/app/factories/factory-details/factory-details-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/factory-details/factory-details.controller.ts b/dashboard/src/app/factories/factory-details/factory-details.controller.ts index e98cf92c28b..188b64864a6 100644 --- a/dashboard/src/app/factories/factory-details/factory-details.controller.ts +++ b/dashboard/src/app/factories/factory-details/factory-details.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheNotification} from '../../../components/notification/che-notification.factory'; diff --git a/dashboard/src/app/factories/factory-details/information-tab/factory-information/factory-information.controller.ts b/dashboard/src/app/factories/factory-details/information-tab/factory-information/factory-information.controller.ts index ad93bd87c58..abf8064d57a 100644 --- a/dashboard/src/app/factories/factory-details/information-tab/factory-information/factory-information.controller.ts +++ b/dashboard/src/app/factories/factory-details/information-tab/factory-information/factory-information.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/factories/factory-details/information-tab/factory-information/factory-information.directive.ts b/dashboard/src/app/factories/factory-details/information-tab/factory-information/factory-information.directive.ts index 3ab3f6f3249..2b6a8ba92b7 100644 --- a/dashboard/src/app/factories/factory-details/information-tab/factory-information/factory-information.directive.ts +++ b/dashboard/src/app/factories/factory-details/information-tab/factory-information/factory-information.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/factory-details/information-tab/information-tab-config.ts b/dashboard/src/app/factories/factory-details/information-tab/information-tab-config.ts index 9878c2b2edb..d2e9b04f0b7 100644 --- a/dashboard/src/app/factories/factory-details/information-tab/information-tab-config.ts +++ b/dashboard/src/app/factories/factory-details/information-tab/information-tab-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/last-factories/last-factories-config.ts b/dashboard/src/app/factories/last-factories/last-factories-config.ts index b6a943628fd..15772d293ce 100644 --- a/dashboard/src/app/factories/last-factories/last-factories-config.ts +++ b/dashboard/src/app/factories/last-factories/last-factories-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/last-factories/last-factories.controller.ts b/dashboard/src/app/factories/last-factories/last-factories.controller.ts index 62898343bd6..54ffde646ce 100644 --- a/dashboard/src/app/factories/last-factories/last-factories.controller.ts +++ b/dashboard/src/app/factories/last-factories/last-factories.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheFactory} from '../../../components/api/che-factory.factory'; diff --git a/dashboard/src/app/factories/last-factories/last-factories.directive.ts b/dashboard/src/app/factories/last-factories/last-factories.directive.ts index c05c69728e8..067849c0519 100644 --- a/dashboard/src/app/factories/last-factories/last-factories.directive.ts +++ b/dashboard/src/app/factories/last-factories/last-factories.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/list-factories/factory-item/factory-item.controller.ts b/dashboard/src/app/factories/list-factories/factory-item/factory-item.controller.ts index bcd537c5dde..a772ccc46b8 100644 --- a/dashboard/src/app/factories/list-factories/factory-item/factory-item.controller.ts +++ b/dashboard/src/app/factories/list-factories/factory-item/factory-item.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheFactory} from '../../../../components/api/che-factory.factory'; diff --git a/dashboard/src/app/factories/list-factories/factory-item/factory-item.directive.ts b/dashboard/src/app/factories/list-factories/factory-item/factory-item.directive.ts index b830ac7e0c9..f4c8bcabd04 100644 --- a/dashboard/src/app/factories/list-factories/factory-item/factory-item.directive.ts +++ b/dashboard/src/app/factories/list-factories/factory-item/factory-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/factories/list-factories/list-factories.controller.ts b/dashboard/src/app/factories/list-factories/list-factories.controller.ts index 473069b6d12..69ffb9d260d 100644 --- a/dashboard/src/app/factories/list-factories/list-factories.controller.ts +++ b/dashboard/src/app/factories/list-factories/list-factories.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ConfirmDialogService} from '../../../components/service/confirm-dialog/confirm-dialog.service'; diff --git a/dashboard/src/app/factories/load-factory/load-factory.controller.ts b/dashboard/src/app/factories/load-factory/load-factory.controller.ts index af6f058d55b..41ec12e3f7a 100644 --- a/dashboard/src/app/factories/load-factory/load-factory.controller.ts +++ b/dashboard/src/app/factories/load-factory/load-factory.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/factories/load-factory/load-factory.service.ts b/dashboard/src/app/factories/load-factory/load-factory.service.ts index 54daf2de18e..865c6005a11 100644 --- a/dashboard/src/app/factories/load-factory/load-factory.service.ts +++ b/dashboard/src/app/factories/load-factory/load-factory.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/ide/ide-config.ts b/dashboard/src/app/ide/ide-config.ts index aa4acc3de47..e81b95fc271 100644 --- a/dashboard/src/app/ide/ide-config.ts +++ b/dashboard/src/app/ide/ide-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/ide/ide-iframe/ide-iframe.controller.ts b/dashboard/src/app/ide/ide-iframe/ide-iframe.controller.ts index 284ad4d43dc..3ce70945343 100644 --- a/dashboard/src/app/ide/ide-iframe/ide-iframe.controller.ts +++ b/dashboard/src/app/ide/ide-iframe/ide-iframe.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/ide/ide-iframe/ide-iframe.directive.ts b/dashboard/src/app/ide/ide-iframe/ide-iframe.directive.ts index a3ce9c9a52f..d4947581aaa 100644 --- a/dashboard/src/app/ide/ide-iframe/ide-iframe.directive.ts +++ b/dashboard/src/app/ide/ide-iframe/ide-iframe.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/ide/ide-iframe/ide-iframe.service.ts b/dashboard/src/app/ide/ide-iframe/ide-iframe.service.ts index 7d09bf9f207..067d384af25 100644 --- a/dashboard/src/app/ide/ide-iframe/ide-iframe.service.ts +++ b/dashboard/src/app/ide/ide-iframe/ide-iframe.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/ide/ide.controller.ts b/dashboard/src/app/ide/ide.controller.ts index f9c4b0d4217..7fef9b28520 100644 --- a/dashboard/src/app/ide/ide.controller.ts +++ b/dashboard/src/app/ide/ide.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import IdeSvc from './ide.service'; diff --git a/dashboard/src/app/ide/ide.service.ts b/dashboard/src/app/ide/ide.service.ts index 2d0b7bf51ef..ba433feeaa8 100644 --- a/dashboard/src/app/ide/ide.service.ts +++ b/dashboard/src/app/ide/ide.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../components/api/che-api.factory'; diff --git a/dashboard/src/app/index.module.ts b/dashboard/src/app/index.module.ts index 32959a24233..9ae546586de 100755 --- a/dashboard/src/app/index.module.ts +++ b/dashboard/src/app/index.module.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/navbar/navbar-config.ts b/dashboard/src/app/navbar/navbar-config.ts index 36e7e0892f1..82b750f869d 100644 --- a/dashboard/src/app/navbar/navbar-config.ts +++ b/dashboard/src/app/navbar/navbar-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/navbar/navbar-dropdown-menu/navbar-dropdown-menu.controller.ts b/dashboard/src/app/navbar/navbar-dropdown-menu/navbar-dropdown-menu.controller.ts index 80f1d9e8757..598222279ac 100644 --- a/dashboard/src/app/navbar/navbar-dropdown-menu/navbar-dropdown-menu.controller.ts +++ b/dashboard/src/app/navbar/navbar-dropdown-menu/navbar-dropdown-menu.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/navbar/navbar-dropdown-menu/navbar-dropdown-menu.directive.ts b/dashboard/src/app/navbar/navbar-dropdown-menu/navbar-dropdown-menu.directive.ts index 6d2923a6f9e..9cb601144e2 100644 --- a/dashboard/src/app/navbar/navbar-dropdown-menu/navbar-dropdown-menu.directive.ts +++ b/dashboard/src/app/navbar/navbar-dropdown-menu/navbar-dropdown-menu.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/navbar/navbar-selected.controller.ts b/dashboard/src/app/navbar/navbar-selected.controller.ts index 5a33e70e022..c6c0aa3002d 100644 --- a/dashboard/src/app/navbar/navbar-selected.controller.ts +++ b/dashboard/src/app/navbar/navbar-selected.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/navbar/navbar-selected.directive.ts b/dashboard/src/app/navbar/navbar-selected.directive.ts index 28317b13636..253911bcb2d 100644 --- a/dashboard/src/app/navbar/navbar-selected.directive.ts +++ b/dashboard/src/app/navbar/navbar-selected.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/navbar/navbar.controller.ts b/dashboard/src/app/navbar/navbar.controller.ts index c38b39a4e3e..47767dcd692 100644 --- a/dashboard/src/app/navbar/navbar.controller.ts +++ b/dashboard/src/app/navbar/navbar.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../components/api/che-api.factory'; diff --git a/dashboard/src/app/navbar/navbar.directive.ts b/dashboard/src/app/navbar/navbar.directive.ts index 625796d7b88..0baa7dbb764 100644 --- a/dashboard/src/app/navbar/navbar.directive.ts +++ b/dashboard/src/app/navbar/navbar.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/navbar/notification/navbar-notification.controller.ts b/dashboard/src/app/navbar/notification/navbar-notification.controller.ts index 29e6ff0ec6c..ce9a87c47b2 100644 --- a/dashboard/src/app/navbar/notification/navbar-notification.controller.ts +++ b/dashboard/src/app/navbar/notification/navbar-notification.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ApplicationNotifications} from '../../../components/notification/application-notifications.factory'; diff --git a/dashboard/src/app/navbar/notification/navbar-notification.directive.ts b/dashboard/src/app/navbar/notification/navbar-notification.directive.ts index fcc2c94cd03..ab8bf299a14 100644 --- a/dashboard/src/app/navbar/notification/navbar-notification.directive.ts +++ b/dashboard/src/app/navbar/notification/navbar-notification.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.controller.spec.ts b/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.controller.spec.ts index e63715c5765..e98541547f4 100644 --- a/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.controller.spec.ts +++ b/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.controller.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWorkspace} from '../../../components/api/che-workspace.factory'; diff --git a/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.controller.ts b/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.controller.ts index 42d618f8f78..773256c9822 100644 --- a/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.controller.ts +++ b/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWorkspace} from '../../../components/api/che-workspace.factory'; diff --git a/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.directive.ts b/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.directive.ts index b1b766d48de..9eaeacbe55e 100644 --- a/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.directive.ts +++ b/dashboard/src/app/navbar/recent-workspaces/recent-workspaces.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/add-ssh-key-notification/add-ssh-key-notification.controller.ts b/dashboard/src/app/projects/create-project/add-ssh-key-notification/add-ssh-key-notification.controller.ts index 4dbd8090d55..9d66a15956c 100644 --- a/dashboard/src/app/projects/create-project/add-ssh-key-notification/add-ssh-key-notification.controller.ts +++ b/dashboard/src/app/projects/create-project/add-ssh-key-notification/add-ssh-key-notification.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWorkspace} from '../../../../components/api/che-workspace.factory'; diff --git a/dashboard/src/app/projects/create-project/config-file/create-project-conf-file.directive.ts b/dashboard/src/app/projects/create-project/config-file/create-project-conf-file.directive.ts index 2f93b2361cc..509334f101f 100644 --- a/dashboard/src/app/projects/create-project/config-file/create-project-conf-file.directive.ts +++ b/dashboard/src/app/projects/create-project/config-file/create-project-conf-file.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/create-project.controller.ts b/dashboard/src/app/projects/create-project/create-project.controller.ts index 903b8784eff..cca567c19be 100755 --- a/dashboard/src/app/projects/create-project/create-project.controller.ts +++ b/dashboard/src/app/projects/create-project/create-project.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/projects/create-project/create-project.service.ts b/dashboard/src/app/projects/create-project/create-project.service.ts index a4fdf612a34..85fd9a0631d 100644 --- a/dashboard/src/app/projects/create-project/create-project.service.ts +++ b/dashboard/src/app/projects/create-project/create-project.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/git/create-project-git.controller.ts b/dashboard/src/app/projects/create-project/git/create-project-git.controller.ts index 651f607e64a..836b27aefbd 100644 --- a/dashboard/src/app/projects/create-project/git/create-project-git.controller.ts +++ b/dashboard/src/app/projects/create-project/git/create-project-git.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/git/create-project-git.directive.ts b/dashboard/src/app/projects/create-project/git/create-project-git.directive.ts index 3526b6453d2..4d6d1af9412 100644 --- a/dashboard/src/app/projects/create-project/git/create-project-git.directive.ts +++ b/dashboard/src/app/projects/create-project/git/create-project-git.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/github/create-project-github.controller.ts b/dashboard/src/app/projects/create-project/github/create-project-github.controller.ts index 58502b0682f..fcef39582b7 100644 --- a/dashboard/src/app/projects/create-project/github/create-project-github.controller.ts +++ b/dashboard/src/app/projects/create-project/github/create-project-github.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/github/create-project-github.directive.ts b/dashboard/src/app/projects/create-project/github/create-project-github.directive.ts index 805a12d9722..d78d6cfc4ba 100644 --- a/dashboard/src/app/projects/create-project/github/create-project-github.directive.ts +++ b/dashboard/src/app/projects/create-project/github/create-project-github.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/github/oauth-dialog/no-github-oauth-dialog.controller.ts b/dashboard/src/app/projects/create-project/github/oauth-dialog/no-github-oauth-dialog.controller.ts index 9f83741f696..b5b206e0984 100644 --- a/dashboard/src/app/projects/create-project/github/oauth-dialog/no-github-oauth-dialog.controller.ts +++ b/dashboard/src/app/projects/create-project/github/oauth-dialog/no-github-oauth-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/project-error-notification/project-error-notification.controller.ts b/dashboard/src/app/projects/create-project/project-error-notification/project-error-notification.controller.ts index 6110d77d648..c355d0d2193 100644 --- a/dashboard/src/app/projects/create-project/project-error-notification/project-error-notification.controller.ts +++ b/dashboard/src/app/projects/create-project/project-error-notification/project-error-notification.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/samples/create-project-samples-tag.filter.ts b/dashboard/src/app/projects/create-project/samples/create-project-samples-tag.filter.ts index b4bac771aca..04b1f40dd74 100644 --- a/dashboard/src/app/projects/create-project/samples/create-project-samples-tag.filter.ts +++ b/dashboard/src/app/projects/create-project/samples/create-project-samples-tag.filter.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/samples/create-project-samples.controller.ts b/dashboard/src/app/projects/create-project/samples/create-project-samples.controller.ts index c72ce5560ae..db5ee0f2036 100644 --- a/dashboard/src/app/projects/create-project/samples/create-project-samples.controller.ts +++ b/dashboard/src/app/projects/create-project/samples/create-project-samples.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/projects/create-project/samples/create-project-samples.directive.ts b/dashboard/src/app/projects/create-project/samples/create-project-samples.directive.ts index f81ffcb74b8..a606ba7c7a0 100644 --- a/dashboard/src/app/projects/create-project/samples/create-project-samples.directive.ts +++ b/dashboard/src/app/projects/create-project/samples/create-project-samples.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/workspaces/create-project-workspaces.controller.ts b/dashboard/src/app/projects/create-project/workspaces/create-project-workspaces.controller.ts index 46ef693daaf..20722ad1647 100644 --- a/dashboard/src/app/projects/create-project/workspaces/create-project-workspaces.controller.ts +++ b/dashboard/src/app/projects/create-project/workspaces/create-project-workspaces.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/workspaces/create-project-workspaces.directive.ts b/dashboard/src/app/projects/create-project/workspaces/create-project-workspaces.directive.ts index 40842448ded..3104bda87fa 100644 --- a/dashboard/src/app/projects/create-project/workspaces/create-project-workspaces.directive.ts +++ b/dashboard/src/app/projects/create-project/workspaces/create-project-workspaces.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/create-project/zip/create-project-zip.directive.ts b/dashboard/src/app/projects/create-project/zip/create-project-zip.directive.ts index cdd1c4dadc0..7bed977326b 100644 --- a/dashboard/src/app/projects/create-project/zip/create-project-zip.directive.ts +++ b/dashboard/src/app/projects/create-project/zip/create-project-zip.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/list-projects/project-item/project-item.controller.ts b/dashboard/src/app/projects/list-projects/project-item/project-item.controller.ts index 6c00766ef59..c564cbdb107 100644 --- a/dashboard/src/app/projects/list-projects/project-item/project-item.controller.ts +++ b/dashboard/src/app/projects/list-projects/project-item/project-item.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/list-projects/project-item/project-item.directive.ts b/dashboard/src/app/projects/list-projects/project-item/project-item.directive.ts index d2df831ede9..2034f81af79 100644 --- a/dashboard/src/app/projects/list-projects/project-item/project-item.directive.ts +++ b/dashboard/src/app/projects/list-projects/project-item/project-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/project-details/project-details.controller.ts b/dashboard/src/app/projects/project-details/project-details.controller.ts index e0d0175b68d..721f9c3d16c 100644 --- a/dashboard/src/app/projects/project-details/project-details.controller.ts +++ b/dashboard/src/app/projects/project-details/project-details.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ConfirmDialogService} from '../../../components/service/confirm-dialog/confirm-dialog.service'; diff --git a/dashboard/src/app/projects/project-details/repository/project-repository-config.ts b/dashboard/src/app/projects/project-details/repository/project-repository-config.ts index ff6877275b1..112b97e5eea 100644 --- a/dashboard/src/app/projects/project-details/repository/project-repository-config.ts +++ b/dashboard/src/app/projects/project-details/repository/project-repository-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/project-details/repository/project-repository-data.ts b/dashboard/src/app/projects/project-details/repository/project-repository-data.ts index 3b957652706..2f240de7c97 100644 --- a/dashboard/src/app/projects/project-details/repository/project-repository-data.ts +++ b/dashboard/src/app/projects/project-details/repository/project-repository-data.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/project-details/repository/project-repository.controller.ts b/dashboard/src/app/projects/project-details/repository/project-repository.controller.ts index 8b2803f15aa..64ef6b808cf 100644 --- a/dashboard/src/app/projects/project-details/repository/project-repository.controller.ts +++ b/dashboard/src/app/projects/project-details/repository/project-repository.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/project-details/repository/project-repository.directive.ts b/dashboard/src/app/projects/project-details/repository/project-repository.directive.ts index e5a430d3607..fe32106e31e 100644 --- a/dashboard/src/app/projects/project-details/repository/project-repository.directive.ts +++ b/dashboard/src/app/projects/project-details/repository/project-repository.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/projects/projects-config.ts b/dashboard/src/app/projects/projects-config.ts index bd5cb6da7e1..19b06f07457 100644 --- a/dashboard/src/app/projects/projects-config.ts +++ b/dashboard/src/app/projects/projects-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/stacks/list-stacks/import-stack/import-stack.controller.ts b/dashboard/src/app/stacks/list-stacks/import-stack/import-stack.controller.ts index 0df8116a0b9..62dc779a748 100644 --- a/dashboard/src/app/stacks/list-stacks/import-stack/import-stack.controller.ts +++ b/dashboard/src/app/stacks/list-stacks/import-stack/import-stack.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheEnvironmentRegistry} from '../../../../components/api/environment/che-environment-registry.factory'; diff --git a/dashboard/src/app/stacks/list-stacks/list-stacks.controller.ts b/dashboard/src/app/stacks/list-stacks/list-stacks.controller.ts index ff415f356aa..7c65bb763a5 100644 --- a/dashboard/src/app/stacks/list-stacks/list-stacks.controller.ts +++ b/dashboard/src/app/stacks/list-stacks/list-stacks.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheStack} from '../../../components/api/che-stack.factory'; diff --git a/dashboard/src/app/stacks/list-stacks/stack-item/stack-item.controller.ts b/dashboard/src/app/stacks/list-stacks/stack-item/stack-item.controller.ts index b4c0d74d852..01e28ddf4fe 100644 --- a/dashboard/src/app/stacks/list-stacks/stack-item/stack-item.controller.ts +++ b/dashboard/src/app/stacks/list-stacks/stack-item/stack-item.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/stacks/list-stacks/stack-item/stack-item.directive.ts b/dashboard/src/app/stacks/list-stacks/stack-item/stack-item.directive.ts index fcfdf94f81b..b0d998b00e9 100644 --- a/dashboard/src/app/stacks/list-stacks/stack-item/stack-item.directive.ts +++ b/dashboard/src/app/stacks/list-stacks/stack-item/stack-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/stacks/stack-details/import-stack.service.ts b/dashboard/src/app/stacks/stack-details/import-stack.service.ts index 3ae72344cee..787046376d4 100644 --- a/dashboard/src/app/stacks/stack-details/import-stack.service.ts +++ b/dashboard/src/app/stacks/stack-details/import-stack.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {StackValidationService} from './stack-validation.service'; diff --git a/dashboard/src/app/stacks/stack-details/list-components/edit-component-dialog/edit-component-dialog.controller.ts b/dashboard/src/app/stacks/stack-details/list-components/edit-component-dialog/edit-component-dialog.controller.ts index b6121f8d53a..afed1998b2a 100644 --- a/dashboard/src/app/stacks/stack-details/list-components/edit-component-dialog/edit-component-dialog.controller.ts +++ b/dashboard/src/app/stacks/stack-details/list-components/edit-component-dialog/edit-component-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ListComponentsController} from '../list-components.controller'; diff --git a/dashboard/src/app/stacks/stack-details/list-components/list-components.controller.ts b/dashboard/src/app/stacks/stack-details/list-components/list-components.controller.ts index 3fcca16b285..934fd17982e 100644 --- a/dashboard/src/app/stacks/stack-details/list-components/list-components.controller.ts +++ b/dashboard/src/app/stacks/stack-details/list-components/list-components.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ConfirmDialogService} from '../../../../components/service/confirm-dialog/confirm-dialog.service'; diff --git a/dashboard/src/app/stacks/stack-details/list-components/list-components.directive.ts b/dashboard/src/app/stacks/stack-details/list-components/list-components.directive.ts index e6af18c7ab1..2aefcbd3169 100644 --- a/dashboard/src/app/stacks/stack-details/list-components/list-components.directive.ts +++ b/dashboard/src/app/stacks/stack-details/list-components/list-components.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/stacks/stack-details/select-template/select-template.controller.ts b/dashboard/src/app/stacks/stack-details/select-template/select-template.controller.ts index b5ea96407c0..c72a838f504 100644 --- a/dashboard/src/app/stacks/stack-details/select-template/select-template.controller.ts +++ b/dashboard/src/app/stacks/stack-details/select-template/select-template.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/stacks/stack-details/stack-validation.service.ts b/dashboard/src/app/stacks/stack-details/stack-validation.service.ts index f83068e2b43..be983e3728c 100644 --- a/dashboard/src/app/stacks/stack-details/stack-validation.service.ts +++ b/dashboard/src/app/stacks/stack-details/stack-validation.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ComposeParser} from '../../../components/api/environment/compose-parser'; diff --git a/dashboard/src/app/stacks/stack-details/stack.controller.ts b/dashboard/src/app/stacks/stack-details/stack.controller.ts index 1c4f1a7c7b4..c4316cc4adc 100644 --- a/dashboard/src/app/stacks/stack-details/stack.controller.ts +++ b/dashboard/src/app/stacks/stack-details/stack.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheStack} from '../../../components/api/che-stack.factory'; diff --git a/dashboard/src/app/stacks/stacks-config.ts b/dashboard/src/app/stacks/stacks-config.ts index 117c9255310..acd1bbbe510 100644 --- a/dashboard/src/app/stacks/stacks-config.ts +++ b/dashboard/src/app/stacks/stacks-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/create-workspace.controller.ts b/dashboard/src/app/workspaces/create-workspace/create-workspace.controller.ts index a4cdb6f5581..ff8932f7f08 100644 --- a/dashboard/src/app/workspaces/create-workspace/create-workspace.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/create-workspace.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/create-workspace.service.ts b/dashboard/src/app/workspaces/create-workspace/create-workspace.service.ts index e2f67863ef8..3110e3db568 100644 --- a/dashboard/src/app/workspaces/create-workspace/create-workspace.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/create-workspace.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.controller.ts b/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.controller.ts index d13107b8039..7edfd1dbffd 100644 --- a/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {NamespaceSelectorSvc} from './namespace-selector.service'; diff --git a/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.directive.ts b/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.directive.ts index a6a17e6c6b8..06947312409 100644 --- a/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.service.ts b/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.service.ts index 87f4d266de4..a6ed73f8b2a 100644 --- a/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/namespace-selector/namespace-selector.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.controller.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.controller.ts index 65e53cfd442..4281054adf7 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.directive.ts index 54d946ac672..e25f75655d9 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.service.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.service.ts index 2e8953ff0e8..bb8f9ccd448 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-blank-project/import-blank-project.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {editingProgress, IEditingProgress} from '../project-source-selector-editing-progress'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.controller.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.controller.ts index 7bb94a3b2e6..bd1a8e5f416 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.directive.ts index 9aa7dda41ee..5ca6046ae16 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.service.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.service.ts index d4b3c48f220..d9d00b5b46e 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-git-project/import-git-project.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {editingProgress, IEditingProgress} from '../project-source-selector-editing-progress'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/github-repository-interface.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/github-repository-interface.ts index dd56ecd3183..edc1c187ede 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/github-repository-interface.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/github-repository-interface.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/github-repository-item/github-repository-item.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/github-repository-item/github-repository-item.directive.ts index 5a67885b24b..70f90f66ec6 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/github-repository-item/github-repository-item.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/github-repository-item/github-repository-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.controller.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.controller.ts index 32e9c71b1a7..5425659cdf3 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.directive.ts index 2da0498606f..712916641fb 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.service.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.service.ts index 030591794f6..14970d58e37 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/import-github-project.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/oauth-dialog/no-github-oauth-dialog.controller.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/oauth-dialog/no-github-oauth-dialog.controller.ts index dd48f4497d7..8ef9eed19c7 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/oauth-dialog/no-github-oauth-dialog.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-github-project/oauth-dialog/no-github-oauth-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.controller.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.controller.ts index be19d8c10dc..15bdd194c99 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.directive.ts index 6963db33715..7e5ed493b85 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.service.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.service.ts index fbf46cba8cf..044352f107c 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/import-zip-project/import-zip-project.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {editingProgress, IEditingProgress} from '../project-source-selector-editing-progress'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.controller.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.controller.ts index 012198a7d63..01486564d20 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.directive.ts index 5ad9a3dac4a..369a9a637d6 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.service.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.service.ts index bbdc74a7f6c..131bb7008c2 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-metadata/project-metadata.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {IEditingProgress, editingProgress} from '../project-source-selector-editing-progress'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-action-type.enum.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-action-type.enum.ts index 68fd3a06424..6094edbafe6 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-action-type.enum.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-action-type.enum.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-editing-progress.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-editing-progress.ts index ddf41034bff..36067f666fb 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-editing-progress.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-editing-progress.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-service-observable.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-service-observable.ts index 48ee8938a61..bebcfcfa63a 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-service-observable.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-service-observable.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-service.observer.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-service.observer.ts index 5572e1787b1..4823c347eca 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-service.observer.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector-service.observer.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.controller.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.controller.ts index 093d082d2c0..82f93543b01 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ProjectSourceSelectorService} from './project-source-selector.service'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.directive.ts index c63f6cf9f5f..eb97a7c69e7 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.service.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.service.ts index ee69fe7f9a5..c9fe03439f9 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source-selector.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ProjectSource} from './project-source.enum'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source.enum.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source.enum.ts index 0c22a2b418c..9780510ec50 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source.enum.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/project-source.enum.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector-item/template-selector-item.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector-item/template-selector-item.directive.ts index 4f7584c56c2..88d549ba2dc 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector-item/template-selector-item.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector-item/template-selector-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.controller.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.controller.ts index 971181e16a6..60d823dac1c 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.directive.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.directive.ts index 283481870c1..ea87356dd23 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.service.ts b/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.service.ts index 033c35f20cb..0911079861d 100644 --- a/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/project-source-selector/template-selector/template-selector.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings-machine-item/ram-settings-machine-item.controller.ts b/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings-machine-item/ram-settings-machine-item.controller.ts index f1212b20b3c..4e0e446bc42 100644 --- a/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings-machine-item/ram-settings-machine-item.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings-machine-item/ram-settings-machine-item.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings-machine-item/ram-settings-machine-item.directive.ts b/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings-machine-item/ram-settings-machine-item.directive.ts index ee82c62987e..3fab3eb742c 100644 --- a/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings-machine-item/ram-settings-machine-item.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings-machine-item/ram-settings-machine-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings.controller.ts b/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings.controller.ts index 2cfffd696f8..acbd80c823c 100644 --- a/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {EnvironmentManager} from '../../../../components/api/environment/environment-manager'; diff --git a/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings.directive.ts b/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings.directive.ts index ff78a3cbc21..d9e9710fa09 100644 --- a/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/ram-settings/ram-settings.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-library-filter/che-stack-library-filter.controller.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-library-filter/che-stack-library-filter.controller.ts index 925f67bd427..e1803f8026f 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-library-filter/che-stack-library-filter.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-library-filter/che-stack-library-filter.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-library-filter/che-stack-library-filter.directive.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-library-filter/che-stack-library-filter.directive.ts index e3fc29af782..3dd2f713873 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-library-filter/che-stack-library-filter.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-library-filter/che-stack-library-filter.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheStackLibraryFilterController} from './che-stack-library-filter.controller'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-item/stack-selector-item.directive.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-item/stack-selector-item.directive.ts index 5de1d37698a..8d6cbb0cdf7 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-item/stack-selector-item.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-item/stack-selector-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-scope.enum.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-scope.enum.ts index 1a8d7576a54..157ace480fb 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-scope.enum.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-scope.enum.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-scope.filter.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-scope.filter.ts index 7d228132a8a..a9374b237b8 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-scope.filter.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-scope.filter.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {StackSelectorScope} from './stack-selector-scope.enum'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-search.filter.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-search.filter.ts index 47467b611a7..f6a2e136d06 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-search.filter.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-search.filter.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-tags.filter.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-tags.filter.ts index 95a7478d42d..af943aadcfc 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-tags.filter.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector-tags.filter.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.controller.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.controller.ts index a2824cdaada..cd9463e43ee 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.controller.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheStack} from '../../../../components/api/che-stack.factory'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.directive.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.directive.ts index c632624db57..7d2daa414f9 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.directive.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.service.ts b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.service.ts index 2a95abce6ee..e5815d5e0d6 100644 --- a/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.service.ts +++ b/dashboard/src/app/workspaces/create-workspace/stack-selector/stack-selector.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/list-workspaces/list-workspaces.controller.ts b/dashboard/src/app/workspaces/list-workspaces/list-workspaces.controller.ts index e110c0f7aca..8d447cef215 100644 --- a/dashboard/src/app/workspaces/list-workspaces/list-workspaces.controller.ts +++ b/dashboard/src/app/workspaces/list-workspaces/list-workspaces.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPI} from '../../../components/api/che-api.factory'; diff --git a/dashboard/src/app/workspaces/list-workspaces/workspace-item/usage-chart.directive.ts b/dashboard/src/app/workspaces/list-workspaces/workspace-item/usage-chart.directive.ts index 3f6750896fc..4d7c95f8b3b 100644 --- a/dashboard/src/app/workspaces/list-workspaces/workspace-item/usage-chart.directive.ts +++ b/dashboard/src/app/workspaces/list-workspaces/workspace-item/usage-chart.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/list-workspaces/workspace-item/workspace-item.controller.ts b/dashboard/src/app/workspaces/list-workspaces/workspace-item/workspace-item.controller.ts index fdffcda352b..1834a3a3e42 100644 --- a/dashboard/src/app/workspaces/list-workspaces/workspace-item/workspace-item.controller.ts +++ b/dashboard/src/app/workspaces/list-workspaces/workspace-item/workspace-item.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWorkspace} from '../../../../components/api/che-workspace.factory'; diff --git a/dashboard/src/app/workspaces/list-workspaces/workspace-item/workspace-item.directive.ts b/dashboard/src/app/workspaces/list-workspaces/workspace-item/workspace-item.directive.ts index ad29b8a2fc1..f63e4788313 100644 --- a/dashboard/src/app/workspaces/list-workspaces/workspace-item/workspace-item.directive.ts +++ b/dashboard/src/app/workspaces/list-workspaces/workspace-item/workspace-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/list-workspaces/workspace-status-action/workspace-status.controller.ts b/dashboard/src/app/workspaces/list-workspaces/workspace-status-action/workspace-status.controller.ts index 1bd274d3f64..7f712790dc1 100644 --- a/dashboard/src/app/workspaces/list-workspaces/workspace-status-action/workspace-status.controller.ts +++ b/dashboard/src/app/workspaces/list-workspaces/workspace-status-action/workspace-status.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheNotification} from '../../../../components/notification/che-notification.factory'; diff --git a/dashboard/src/app/workspaces/list-workspaces/workspace-status-action/workspace-status.directive.ts b/dashboard/src/app/workspaces/list-workspaces/workspace-status-action/workspace-status.directive.ts index bcf8a324fad..02fd7504ce3 100644 --- a/dashboard/src/app/workspaces/list-workspaces/workspace-status-action/workspace-status.directive.ts +++ b/dashboard/src/app/workspaces/list-workspaces/workspace-status-action/workspace-status.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-config.service.ts b/dashboard/src/app/workspaces/workspace-config.service.ts index df3a7639224..7dd149677bb 100644 --- a/dashboard/src/app/workspaces/workspace-config.service.ts +++ b/dashboard/src/app/workspaces/workspace-config.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/config-import/workspace-config-import.controller.ts b/dashboard/src/app/workspaces/workspace-details/config-import/workspace-config-import.controller.ts index bbdd3e340bd..af32030eba6 100644 --- a/dashboard/src/app/workspaces/workspace-details/config-import/workspace-config-import.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/config-import/workspace-config-import.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheErrorMessagesService} from '../../../../components/error-messages/che-error-messages.service'; diff --git a/dashboard/src/app/workspaces/workspace-details/config-import/workspace-config-import.directive.ts b/dashboard/src/app/workspaces/workspace-details/config-import/workspace-config-import.directive.ts index 8c3f17679de..c85d1922af6 100644 --- a/dashboard/src/app/workspaces/workspace-details/config-import/workspace-config-import.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/config-import/workspace-config-import.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/add-machine-dialog/add-machine-dialog.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/add-machine-dialog/add-machine-dialog.controller.ts index 8660517ea92..21c7471b7d6 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/add-machine-dialog/add-machine-dialog.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/add-machine-dialog/add-machine-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {WorkspaceEnvironmentsController} from '../environments.controller'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/environments.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/environments.controller.ts index 003472e9860..7cc5a2c7bce 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/environments.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/environments.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheEnvironmentRegistry} from '../../../../components/api/environment/che-environment-registry.factory'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/environments.directive.ts b/dashboard/src/app/workspaces/workspace-details/environments/environments.directive.ts index d59731b0607..565ffab8152 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/environments.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/environments.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/list-agents/list-agents.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/list-agents/list-agents.controller.ts index 2f737cf64f7..36d597276bf 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/list-agents/list-agents.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/list-agents/list-agents.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAgent} from '../../../../../components/api/che-agent.factory'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/list-agents/list-agents.directive.ts b/dashboard/src/app/workspaces/workspace-details/environments/list-agents/list-agents.directive.ts index 2fcc42d090c..4f33a3cc6a9 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/list-agents/list-agents.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/list-agents/list-agents.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/edit-variable-dialog/edit-variable-dialog.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/edit-variable-dialog/edit-variable-dialog.controller.ts index 882472fa936..d5c942c0886 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/edit-variable-dialog/edit-variable-dialog.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/edit-variable-dialog/edit-variable-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ListEnvVariablesController} from '../list-env-variables.controller'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/list-env-variables.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/list-env-variables.controller.ts index b43a2cd7a88..ce455cf5630 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/list-env-variables.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/list-env-variables.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ConfirmDialogService} from '../../../../../components/service/confirm-dialog/confirm-dialog.service'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/list-env-variables.directive.ts b/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/list-env-variables.directive.ts index 8db70f331e9..d88e59e36b2 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/list-env-variables.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/list-env-variables/list-env-variables.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/list-servers/edit-server-dialog/edit-server-dialog.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/list-servers/edit-server-dialog/edit-server-dialog.controller.ts index 633ade9faaf..c40e0cf3068 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/list-servers/edit-server-dialog/edit-server-dialog.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/list-servers/edit-server-dialog/edit-server-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ListServersController} from '../list-servers.controller'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/list-servers/list-servers.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/list-servers/list-servers.controller.ts index 494888c0b44..2c71dc9d601 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/list-servers/list-servers.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/list-servers/list-servers.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {IEnvironmentManagerMachineServer} from '../../../../../components/api/environment/environment-manager-machine'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/list-servers/list-servers.directive.ts b/dashboard/src/app/workspaces/workspace-details/environments/list-servers/list-servers.directive.ts index 6a3e21707e3..c5556bb8a28 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/list-servers/list-servers.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/list-servers/list-servers.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/delete-dev-machine-dialog/delete-dev-machine-dialog.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/delete-dev-machine-dialog/delete-dev-machine-dialog.controller.ts index 4b112122a96..5cf354c922f 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/delete-dev-machine-dialog/delete-dev-machine-dialog.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/delete-dev-machine-dialog/delete-dev-machine-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {IMachinesListItem, WorkspaceMachineConfigController} from '../machine-config.controller'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/dev-machine-label/dev-machine-label.directive.ts b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/dev-machine-label/dev-machine-label.directive.ts index 959a8c13904..95680f88923 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/dev-machine-label/dev-machine-label.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/dev-machine-label/dev-machine-label.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/edit-machine-name-dialog/edit-machine-name-dialog.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/edit-machine-name-dialog/edit-machine-name-dialog.controller.ts index 547c4616b6b..538ec5a9680 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/edit-machine-name-dialog/edit-machine-name-dialog.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/edit-machine-name-dialog/edit-machine-name-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {WorkspaceMachineConfigController} from '../machine-config.controller'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/machine-config.controller.ts b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/machine-config.controller.ts index fd0de21cece..2d7a5811ba8 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/machine-config.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/machine-config.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ConfirmDialogService} from '../../../../../components/service/confirm-dialog/confirm-dialog.service'; diff --git a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/machine-config.directive.ts b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/machine-config.directive.ts index d2201c7192c..c9b759bffc2 100644 --- a/dashboard/src/app/workspaces/workspace-details/environments/machine-config/machine-config.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/environments/machine-config/machine-config.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/export-workspace/dialog/export-workspace-dialog.controller.ts b/dashboard/src/app/workspaces/workspace-details/export-workspace/dialog/export-workspace-dialog.controller.ts index bad894831c3..72d44030978 100644 --- a/dashboard/src/app/workspaces/workspace-details/export-workspace/dialog/export-workspace-dialog.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/export-workspace/dialog/export-workspace-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/export-workspace/export-workspace.controller.ts b/dashboard/src/app/workspaces/workspace-details/export-workspace/export-workspace.controller.ts index 07b2191f44c..4b369ceaaae 100644 --- a/dashboard/src/app/workspaces/workspace-details/export-workspace/export-workspace.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/export-workspace/export-workspace.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/export-workspace/export-workspace.directive.ts b/dashboard/src/app/workspaces/workspace-details/export-workspace/export-workspace.directive.ts index 7d1e2bae8e1..c165ba174d3 100644 --- a/dashboard/src/app/workspaces/workspace-details/export-workspace/export-workspace.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/export-workspace/export-workspace.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/list-commands/edit-command-dialog/edit-command-dialog.controller.ts b/dashboard/src/app/workspaces/workspace-details/list-commands/edit-command-dialog/edit-command-dialog.controller.ts index 7cbe579f443..0501ff88e55 100644 --- a/dashboard/src/app/workspaces/workspace-details/list-commands/edit-command-dialog/edit-command-dialog.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/list-commands/edit-command-dialog/edit-command-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ListCommandsController} from '../list-commands.controller'; diff --git a/dashboard/src/app/workspaces/workspace-details/list-commands/list-commands.controller.ts b/dashboard/src/app/workspaces/workspace-details/list-commands/list-commands.controller.ts index 2c2a77994f7..f534e90853a 100644 --- a/dashboard/src/app/workspaces/workspace-details/list-commands/list-commands.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/list-commands/list-commands.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ConfirmDialogService} from '../../../../components/service/confirm-dialog/confirm-dialog.service'; diff --git a/dashboard/src/app/workspaces/workspace-details/list-commands/list-commands.directive.ts b/dashboard/src/app/workspaces/workspace-details/list-commands/list-commands.directive.ts index eb16a2e8ff4..1a8527e0802 100644 --- a/dashboard/src/app/workspaces/workspace-details/list-commands/list-commands.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/list-commands/list-commands.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/ready-to-go-stacks/ready-to-go-stacks.controller.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/ready-to-go-stacks/ready-to-go-stacks.controller.ts index 1c3ceacae8a..c693674819d 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/ready-to-go-stacks/ready-to-go-stacks.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/ready-to-go-stacks/ready-to-go-stacks.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheStack} from '../../../../../components/api/che-stack.factory'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/ready-to-go-stacks/ready-to-go-stacks.directive.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/ready-to-go-stacks/ready-to-go-stacks.directive.ts index 74957bde366..b110ebcb2a1 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/ready-to-go-stacks/ready-to-go-stacks.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/ready-to-go-stacks/ready-to-go-stacks.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-authoring/workspace-recipe-authoring.controller.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-authoring/workspace-recipe-authoring.controller.ts index e1cea384a4a..beafc10cd4f 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-authoring/workspace-recipe-authoring.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-authoring/workspace-recipe-authoring.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ComposeParser} from '../../../../../components/api/environment/compose-parser'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-authoring/workspace-recipe-authoring.directive.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-authoring/workspace-recipe-authoring.directive.ts index 8f9fb3c4190..35bb164c527 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-authoring/workspace-recipe-authoring.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-authoring/workspace-recipe-authoring.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.controller.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.controller.ts index 64a9474bec8..80e92e16d61 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.directive.spec.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.directive.spec.ts index 637f9df7a5c..f0b15408119 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.directive.spec.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.directive.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheHttpBackend} from '../../../../../components/api/test/che-http-backend'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.directive.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.directive.ts index ccc10e1929b..cab788e188d 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/recipe-import/workspace-recipe-import.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/create-project-stack-library.controller.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/create-project-stack-library.controller.ts index cca4231be92..73b7ad188d7 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/create-project-stack-library.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/create-project-stack-library.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheStack} from '../../../../../components/api/che-stack.factory'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/create-project-stack-library.directive.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/create-project-stack-library.directive.ts index 348b113ef3b..42d22e7700b 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/create-project-stack-library.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/create-project-stack-library.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/stack-library-selecter/che-stack-library-selecter.directive.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/stack-library-selecter/che-stack-library-selecter.directive.ts index 95d3220e615..1d18a5cf4f0 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/stack-library-selecter/che-stack-library-selecter.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/stack-library/stack-library-selecter/che-stack-library-selecter.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/workspace-select-stack.controller.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/workspace-select-stack.controller.ts index 7c3ca47dd17..a31763f1dc0 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/workspace-select-stack.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/workspace-select-stack.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheStack} from '../../../../components/api/che-stack.factory'; diff --git a/dashboard/src/app/workspaces/workspace-details/select-stack/workspace-select-stack.directive.ts b/dashboard/src/app/workspaces/workspace-details/select-stack/workspace-select-stack.directive.ts index 41e37e8319c..78560a7cbca 100644 --- a/dashboard/src/app/workspaces/workspace-details/select-stack/workspace-select-stack.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/select-stack/workspace-select-stack.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/workspace-details.controller.ts b/dashboard/src/app/workspaces/workspace-details/workspace-details.controller.ts index cfa945caf59..c9fff2ebac0 100644 --- a/dashboard/src/app/workspaces/workspace-details/workspace-details.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/workspace-details.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheEnvironmentRegistry} from '../../../components/api/environment/che-environment-registry.factory'; diff --git a/dashboard/src/app/workspaces/workspace-details/workspace-details.service.ts b/dashboard/src/app/workspaces/workspace-details/workspace-details.service.ts index 5080643bf91..f36a89bca23 100644 --- a/dashboard/src/app/workspaces/workspace-details/workspace-details.service.ts +++ b/dashboard/src/app/workspaces/workspace-details/workspace-details.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/workspace-projects/workspace-details-projects.controller.ts b/dashboard/src/app/workspaces/workspace-details/workspace-projects/workspace-details-projects.controller.ts index d16a16dfe23..ef1ced2bcf0 100644 --- a/dashboard/src/app/workspaces/workspace-details/workspace-projects/workspace-details-projects.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/workspace-projects/workspace-details-projects.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {ConfirmDialogService} from '../../../../components/service/confirm-dialog/confirm-dialog.service'; diff --git a/dashboard/src/app/workspaces/workspace-details/workspace-projects/workspace-details-projects.directive.ts b/dashboard/src/app/workspaces/workspace-details/workspace-projects/workspace-details-projects.directive.ts index 44086ec098b..a79511faf96 100644 --- a/dashboard/src/app/workspaces/workspace-details/workspace-projects/workspace-details-projects.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/workspace-projects/workspace-details-projects.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-details/workspace-ssh/workspace-details-ssh.controller.ts b/dashboard/src/app/workspaces/workspace-details/workspace-ssh/workspace-details-ssh.controller.ts index c3bdc748cf8..2cfeb506bab 100644 --- a/dashboard/src/app/workspaces/workspace-details/workspace-ssh/workspace-details-ssh.controller.ts +++ b/dashboard/src/app/workspaces/workspace-details/workspace-ssh/workspace-details-ssh.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ import {CheWorkspace} from '../../../../components/api/che-workspace.factory'; import {CheNotification} from '../../../../components/notification/che-notification.factory'; diff --git a/dashboard/src/app/workspaces/workspace-details/workspace-ssh/workspace-details-ssh.directive.ts b/dashboard/src/app/workspaces/workspace-details/workspace-ssh/workspace-details-ssh.directive.ts index bee6b5fe9dc..a903d330f63 100644 --- a/dashboard/src/app/workspaces/workspace-details/workspace-ssh/workspace-details-ssh.directive.ts +++ b/dashboard/src/app/workspaces/workspace-details/workspace-ssh/workspace-details-ssh.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-edit-mode/workspace-edit-mode-overlay.directive.ts b/dashboard/src/app/workspaces/workspace-edit-mode/workspace-edit-mode-overlay.directive.ts index 84ef9554c49..a5c89aa9f70 100644 --- a/dashboard/src/app/workspaces/workspace-edit-mode/workspace-edit-mode-overlay.directive.ts +++ b/dashboard/src/app/workspaces/workspace-edit-mode/workspace-edit-mode-overlay.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-edit-mode/workspace-edit-mode-toolbar-button.directive.ts b/dashboard/src/app/workspaces/workspace-edit-mode/workspace-edit-mode-toolbar-button.directive.ts index b5496e7e0cb..fb1e12824c4 100644 --- a/dashboard/src/app/workspaces/workspace-edit-mode/workspace-edit-mode-toolbar-button.directive.ts +++ b/dashboard/src/app/workspaces/workspace-edit-mode/workspace-edit-mode-toolbar-button.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-ram-slider/che-workspace-ram-allocation-slider.controller.ts b/dashboard/src/app/workspaces/workspace-ram-slider/che-workspace-ram-allocation-slider.controller.ts index 6dd5b6236b1..0013edded37 100644 --- a/dashboard/src/app/workspaces/workspace-ram-slider/che-workspace-ram-allocation-slider.controller.ts +++ b/dashboard/src/app/workspaces/workspace-ram-slider/che-workspace-ram-allocation-slider.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-ram-slider/che-workspace-ram-allocation-slider.directive.ts b/dashboard/src/app/workspaces/workspace-ram-slider/che-workspace-ram-allocation-slider.directive.ts index fd1d623ae81..a499d7c4037 100644 --- a/dashboard/src/app/workspaces/workspace-ram-slider/che-workspace-ram-allocation-slider.directive.ts +++ b/dashboard/src/app/workspaces/workspace-ram-slider/che-workspace-ram-allocation-slider.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-status/workspace-status-indicator.directive.ts b/dashboard/src/app/workspaces/workspace-status/workspace-status-indicator.directive.ts index 14669a98330..d449e45e4fb 100644 --- a/dashboard/src/app/workspaces/workspace-status/workspace-status-indicator.directive.ts +++ b/dashboard/src/app/workspaces/workspace-status/workspace-status-indicator.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspace-status/workspace-status.directive.ts b/dashboard/src/app/workspaces/workspace-status/workspace-status.directive.ts index 97722ee0409..0db7303b729 100644 --- a/dashboard/src/app/workspaces/workspace-status/workspace-status.directive.ts +++ b/dashboard/src/app/workspaces/workspace-status/workspace-status.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/app/workspaces/workspaces-config.ts b/dashboard/src/app/workspaces/workspaces-config.ts index 2f30e8e73ea..c204c38c9cd 100644 --- a/dashboard/src/app/workspaces/workspaces-config.ts +++ b/dashboard/src/app/workspaces/workspaces-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/assets/branding/che-logo-text.svg b/dashboard/src/assets/branding/che-logo-text.svg index 494887b23a6..7f74466cf49 100644 --- a/dashboard/src/assets/branding/che-logo-text.svg +++ b/dashboard/src/assets/branding/che-logo-text.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/branding/loader.svg b/dashboard/src/assets/branding/loader.svg index f150255c64e..90803270dfd 100644 --- a/dashboard/src/assets/branding/loader.svg +++ b/dashboard/src/assets/branding/loader.svg @@ -1,14 +1,14 @@ + diff --git a/dashboard/src/assets/fonts/material-design.svg b/dashboard/src/assets/fonts/material-design.svg index 4a13250c3a3..1e5e62eb8ef 100644 --- a/dashboard/src/assets/fonts/material-design.svg +++ b/dashboard/src/assets/fonts/material-design.svg @@ -1,13 +1,13 @@ diff --git a/dashboard/src/assets/images/bg-intermediate-screen.svg b/dashboard/src/assets/images/bg-intermediate-screen.svg index 4d62470b909..c85a744a2b4 100644 --- a/dashboard/src/assets/images/bg-intermediate-screen.svg +++ b/dashboard/src/assets/images/bg-intermediate-screen.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/images/completed.svg b/dashboard/src/assets/images/completed.svg index 7910d9aa043..15b7c4abe06 100644 --- a/dashboard/src/assets/images/completed.svg +++ b/dashboard/src/assets/images/completed.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/images/expand.svg b/dashboard/src/assets/images/expand.svg index 3a0587a6c02..344276d0181 100644 --- a/dashboard/src/assets/images/expand.svg +++ b/dashboard/src/assets/images/expand.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/images/header-triangle.svg b/dashboard/src/assets/images/header-triangle.svg index 995e2e7a9ee..30a50d0c546 100644 --- a/dashboard/src/assets/images/header-triangle.svg +++ b/dashboard/src/assets/images/header-triangle.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/images/to-complete.svg b/dashboard/src/assets/images/to-complete.svg index 7021f44dbe3..abba6de7666 100644 --- a/dashboard/src/assets/images/to-complete.svg +++ b/dashboard/src/assets/images/to-complete.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/administration.svg b/dashboard/src/assets/svg/administration.svg index 9b4368cc582..58365b0821d 100644 --- a/dashboard/src/assets/svg/administration.svg +++ b/dashboard/src/assets/svg/administration.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/dashboard.svg b/dashboard/src/assets/svg/dashboard.svg index 45d375db3d0..fb372fd4a73 100644 --- a/dashboard/src/assets/svg/dashboard.svg +++ b/dashboard/src/assets/svg/dashboard.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/factory.svg b/dashboard/src/assets/svg/factory.svg index 2be2af9cbcd..3b61f32f206 100644 --- a/dashboard/src/assets/svg/factory.svg +++ b/dashboard/src/assets/svg/factory.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/icon-wkps.svg b/dashboard/src/assets/svg/icon-wkps.svg index 2a604bca980..09d9cf87f43 100644 --- a/dashboard/src/assets/svg/icon-wkps.svg +++ b/dashboard/src/assets/svg/icon-wkps.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/stacks.svg b/dashboard/src/assets/svg/stacks.svg index 83554fe4566..9735de9ecd4 100644 --- a/dashboard/src/assets/svg/stacks.svg +++ b/dashboard/src/assets/svg/stacks.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/type-cpp.svg b/dashboard/src/assets/svg/type-cpp.svg index e4dc5b8f4b1..44dfadd1531 100644 --- a/dashboard/src/assets/svg/type-cpp.svg +++ b/dashboard/src/assets/svg/type-cpp.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/type-javascript.svg b/dashboard/src/assets/svg/type-javascript.svg index 3ee67527542..de917e66984 100644 --- a/dashboard/src/assets/svg/type-javascript.svg +++ b/dashboard/src/assets/svg/type-javascript.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/type-node.svg b/dashboard/src/assets/svg/type-node.svg index 226821b393e..3aca62ac347 100644 --- a/dashboard/src/assets/svg/type-node.svg +++ b/dashboard/src/assets/svg/type-node.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/type-php.svg b/dashboard/src/assets/svg/type-php.svg index b35a6f7e544..212898fb41e 100644 --- a/dashboard/src/assets/svg/type-php.svg +++ b/dashboard/src/assets/svg/type-php.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/type-ruby.svg b/dashboard/src/assets/svg/type-ruby.svg index 6abc23ec248..4e94675da84 100644 --- a/dashboard/src/assets/svg/type-ruby.svg +++ b/dashboard/src/assets/svg/type-ruby.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/assets/svg/workspace.svg b/dashboard/src/assets/svg/workspace.svg index 52786d57b1b..4980acbbb3e 100644 --- a/dashboard/src/assets/svg/workspace.svg +++ b/dashboard/src/assets/svg/workspace.svg @@ -1,14 +1,14 @@ diff --git a/dashboard/src/components/api/builder/che-api-builder.factory.ts b/dashboard/src/components/api/builder/che-api-builder.factory.ts index 021e08c220b..ec6d5c3c09a 100644 --- a/dashboard/src/components/api/builder/che-api-builder.factory.ts +++ b/dashboard/src/components/api/builder/che-api-builder.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-factory-builder.ts b/dashboard/src/components/api/builder/che-factory-builder.ts index 2aacc093fb5..f1d49b4780b 100644 --- a/dashboard/src/components/api/builder/che-factory-builder.ts +++ b/dashboard/src/components/api/builder/che-factory-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-profile-builder.ts b/dashboard/src/components/api/builder/che-profile-builder.ts index 526b95e40f1..c67984faa76 100644 --- a/dashboard/src/components/api/builder/che-profile-builder.ts +++ b/dashboard/src/components/api/builder/che-profile-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-projectdetails-builder.ts b/dashboard/src/components/api/builder/che-projectdetails-builder.ts index c4e9069ab27..0e3fff36b8c 100644 --- a/dashboard/src/components/api/builder/che-projectdetails-builder.ts +++ b/dashboard/src/components/api/builder/che-projectdetails-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-projectreference-builder.spec.ts b/dashboard/src/components/api/builder/che-projectreference-builder.spec.ts index d9ac9c0c7be..fdcd45a79ae 100644 --- a/dashboard/src/components/api/builder/che-projectreference-builder.spec.ts +++ b/dashboard/src/components/api/builder/che-projectreference-builder.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-projectreference-builder.ts b/dashboard/src/components/api/builder/che-projectreference-builder.ts index 615710f41e0..2568399eb1d 100644 --- a/dashboard/src/components/api/builder/che-projectreference-builder.ts +++ b/dashboard/src/components/api/builder/che-projectreference-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-projecttemplate-builder.ts b/dashboard/src/components/api/builder/che-projecttemplate-builder.ts index 1fcf29c189a..f8ceea685ea 100644 --- a/dashboard/src/components/api/builder/che-projecttemplate-builder.ts +++ b/dashboard/src/components/api/builder/che-projecttemplate-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-projecttype-attribute-descriptor-builder.ts b/dashboard/src/components/api/builder/che-projecttype-attribute-descriptor-builder.ts index 5ea491f234b..c38316bba7f 100644 --- a/dashboard/src/components/api/builder/che-projecttype-attribute-descriptor-builder.ts +++ b/dashboard/src/components/api/builder/che-projecttype-attribute-descriptor-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-projecttype-builder.ts b/dashboard/src/components/api/builder/che-projecttype-builder.ts index d2bbb51be2b..c7e69e651c1 100644 --- a/dashboard/src/components/api/builder/che-projecttype-builder.ts +++ b/dashboard/src/components/api/builder/che-projecttype-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-stack-builder.ts b/dashboard/src/components/api/builder/che-stack-builder.ts index d5ea1921dbe..7b8cf6b8c88 100644 --- a/dashboard/src/components/api/builder/che-stack-builder.ts +++ b/dashboard/src/components/api/builder/che-stack-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-user-builder.ts b/dashboard/src/components/api/builder/che-user-builder.ts index d21537a1f62..9a0c2f913cb 100644 --- a/dashboard/src/components/api/builder/che-user-builder.ts +++ b/dashboard/src/components/api/builder/che-user-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/builder/che-workspace-builder.spec.ts b/dashboard/src/components/api/builder/che-workspace-builder.spec.ts index ccf48f7baa5..94cffa22c61 100644 --- a/dashboard/src/components/api/builder/che-workspace-builder.spec.ts +++ b/dashboard/src/components/api/builder/che-workspace-builder.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPIBuilder} from './che-api-builder.factory'; diff --git a/dashboard/src/components/api/builder/che-workspace-builder.ts b/dashboard/src/components/api/builder/che-workspace-builder.ts index d0eb539a482..e1aebc78215 100644 --- a/dashboard/src/components/api/builder/che-workspace-builder.ts +++ b/dashboard/src/components/api/builder/che-workspace-builder.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-agent.factory.ts b/dashboard/src/components/api/che-agent.factory.ts index 2da8535275e..889345c0d29 100644 --- a/dashboard/src/components/api/che-agent.factory.ts +++ b/dashboard/src/components/api/che-agent.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-api-config.ts b/dashboard/src/components/api/che-api-config.ts index 38618f657a0..44ddcc1fd01 100644 --- a/dashboard/src/components/api/che-api-config.ts +++ b/dashboard/src/components/api/che-api-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-api.factory.ts b/dashboard/src/components/api/che-api.factory.ts index ddd587a84bf..ffd6a63941d 100644 --- a/dashboard/src/components/api/che-api.factory.ts +++ b/dashboard/src/components/api/che-api.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ import {CheSsh} from './che-ssh.factory'; 'use strict'; diff --git a/dashboard/src/components/api/che-factory-template.factory.ts b/dashboard/src/components/api/che-factory-template.factory.ts index 4ee60203e40..4b118b55e94 100644 --- a/dashboard/src/components/api/che-factory-template.factory.ts +++ b/dashboard/src/components/api/che-factory-template.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-factory.factory.ts b/dashboard/src/components/api/che-factory.factory.ts index 6f8c719e2b2..452dbfe4b10 100644 --- a/dashboard/src/components/api/che-factory.factory.ts +++ b/dashboard/src/components/api/che-factory.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheUser} from './che-user.factory'; diff --git a/dashboard/src/components/api/che-factory.spec.ts b/dashboard/src/components/api/che-factory.spec.ts index 8008d818d8d..482b3b87cbe 100644 --- a/dashboard/src/components/api/che-factory.spec.ts +++ b/dashboard/src/components/api/che-factory.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheHttpBackend} from './test/che-http-backend'; diff --git a/dashboard/src/components/api/che-git.spec.ts b/dashboard/src/components/api/che-git.spec.ts index a10ad36251a..142ded4761d 100644 --- a/dashboard/src/components/api/che-git.spec.ts +++ b/dashboard/src/components/api/che-git.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-git.ts b/dashboard/src/components/api/che-git.ts index 609c57c700b..3f9081dbf64 100644 --- a/dashboard/src/components/api/che-git.ts +++ b/dashboard/src/components/api/che-git.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-o-auth-provider.factory.ts b/dashboard/src/components/api/che-o-auth-provider.factory.ts index b7590099bdc..09060394a32 100644 --- a/dashboard/src/components/api/che-o-auth-provider.factory.ts +++ b/dashboard/src/components/api/che-o-auth-provider.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-preferences.factory.ts b/dashboard/src/components/api/che-preferences.factory.ts index 48d3b04e454..e698235f6a1 100644 --- a/dashboard/src/components/api/che-preferences.factory.ts +++ b/dashboard/src/components/api/che-preferences.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-preferences.spec.ts b/dashboard/src/components/api/che-preferences.spec.ts index 27af2e84d24..92fe0782a1b 100644 --- a/dashboard/src/components/api/che-preferences.spec.ts +++ b/dashboard/src/components/api/che-preferences.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-profile.factory.ts b/dashboard/src/components/api/che-profile.factory.ts index 5051f68eab0..871e24d9e18 100644 --- a/dashboard/src/components/api/che-profile.factory.ts +++ b/dashboard/src/components/api/che-profile.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-profile.spec.ts b/dashboard/src/components/api/che-profile.spec.ts index 35b19f7012c..d55edf9d85d 100644 --- a/dashboard/src/components/api/che-profile.spec.ts +++ b/dashboard/src/components/api/che-profile.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheProfile} from './che-profile.factory'; diff --git a/dashboard/src/components/api/che-project-template.factory.ts b/dashboard/src/components/api/che-project-template.factory.ts index f2abb02553f..efbbaa1078c 100644 --- a/dashboard/src/components/api/che-project-template.factory.ts +++ b/dashboard/src/components/api/che-project-template.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-project-template.spec.ts b/dashboard/src/components/api/che-project-template.spec.ts index 074a14e41c6..65c975fd9b9 100644 --- a/dashboard/src/components/api/che-project-template.spec.ts +++ b/dashboard/src/components/api/che-project-template.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-project-type.spec.ts b/dashboard/src/components/api/che-project-type.spec.ts index a865973d934..82b7ab15ded 100644 --- a/dashboard/src/components/api/che-project-type.spec.ts +++ b/dashboard/src/components/api/che-project-type.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-project-type.ts b/dashboard/src/components/api/che-project-type.ts index 0de50ebb5b0..37a6d12b1b7 100644 --- a/dashboard/src/components/api/che-project-type.ts +++ b/dashboard/src/components/api/che-project-type.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-project.spec.ts b/dashboard/src/components/api/che-project.spec.ts index 6da6d9c8bad..04f95848c84 100644 --- a/dashboard/src/components/api/che-project.spec.ts +++ b/dashboard/src/components/api/che-project.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-project.ts b/dashboard/src/components/api/che-project.ts index a17515f469c..5be09d8a3d6 100644 --- a/dashboard/src/components/api/che-project.ts +++ b/dashboard/src/components/api/che-project.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWebsocket} from './che-websocket.factory'; diff --git a/dashboard/src/components/api/che-recipe-template.factory.ts b/dashboard/src/components/api/che-recipe-template.factory.ts index 28a3e528270..6acfe15df0f 100644 --- a/dashboard/src/components/api/che-recipe-template.factory.ts +++ b/dashboard/src/components/api/che-recipe-template.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-recipe.factory.ts b/dashboard/src/components/api/che-recipe.factory.ts index 0ac8770d14d..d7c6dc1a77d 100644 --- a/dashboard/src/components/api/che-recipe.factory.ts +++ b/dashboard/src/components/api/che-recipe.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-service.factory.ts b/dashboard/src/components/api/che-service.factory.ts index 9650f0dae82..520bf399460 100644 --- a/dashboard/src/components/api/che-service.factory.ts +++ b/dashboard/src/components/api/che-service.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-ssh.factory.ts b/dashboard/src/components/api/che-ssh.factory.ts index 54b1629aea6..6a727c3d8db 100644 --- a/dashboard/src/components/api/che-ssh.factory.ts +++ b/dashboard/src/components/api/che-ssh.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-stack.factory.ts b/dashboard/src/components/api/che-stack.factory.ts index eed69cd82d1..3ac1ce62b63 100644 --- a/dashboard/src/components/api/che-stack.factory.ts +++ b/dashboard/src/components/api/che-stack.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-svn.spec.ts b/dashboard/src/components/api/che-svn.spec.ts index 51e48f9d738..b158cf12bdb 100644 --- a/dashboard/src/components/api/che-svn.spec.ts +++ b/dashboard/src/components/api/che-svn.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-svn.ts b/dashboard/src/components/api/che-svn.ts index 735f1f64665..d950ee47f83 100644 --- a/dashboard/src/components/api/che-svn.ts +++ b/dashboard/src/components/api/che-svn.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-user.factory.ts b/dashboard/src/components/api/che-user.factory.ts index ae96ab3f304..10dc6f0472a 100644 --- a/dashboard/src/components/api/che-user.factory.ts +++ b/dashboard/src/components/api/che-user.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-user.spec.ts b/dashboard/src/components/api/che-user.spec.ts index 89ca2feab56..62788ae1646 100644 --- a/dashboard/src/components/api/che-user.spec.ts +++ b/dashboard/src/components/api/che-user.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheUser} from './che-user.factory'; diff --git a/dashboard/src/components/api/che-websocket.factory.ts b/dashboard/src/components/api/che-websocket.factory.ts index c1c59aee26d..135f2f0a36b 100644 --- a/dashboard/src/components/api/che-websocket.factory.ts +++ b/dashboard/src/components/api/che-websocket.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-workspace-agent.ts b/dashboard/src/components/api/che-workspace-agent.ts index 1e342d3c02b..9081c9f56a7 100644 --- a/dashboard/src/components/api/che-workspace-agent.ts +++ b/dashboard/src/components/api/che-workspace-agent.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-workspace.factory.ts b/dashboard/src/components/api/che-workspace.factory.ts index 602ccab1ede..44527f9d800 100644 --- a/dashboard/src/components/api/che-workspace.factory.ts +++ b/dashboard/src/components/api/che-workspace.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/che-workspace.spec.ts b/dashboard/src/components/api/che-workspace.spec.ts index 832b6aa04a2..1c583bcc9a1 100644 --- a/dashboard/src/components/api/che-workspace.spec.ts +++ b/dashboard/src/components/api/che-workspace.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWorkspace} from './che-workspace.factory'; diff --git a/dashboard/src/components/api/environment/che-environment-registry.factory.ts b/dashboard/src/components/api/environment/che-environment-registry.factory.ts index f637bb7f19d..7b98a1149cd 100644 --- a/dashboard/src/components/api/environment/che-environment-registry.factory.ts +++ b/dashboard/src/components/api/environment/che-environment-registry.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {EnvironmentManager} from './environment-manager'; diff --git a/dashboard/src/components/api/environment/compose-environment-manager.spec.ts b/dashboard/src/components/api/environment/compose-environment-manager.spec.ts index b088546fa58..51d1e357d55 100644 --- a/dashboard/src/components/api/environment/compose-environment-manager.spec.ts +++ b/dashboard/src/components/api/environment/compose-environment-manager.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/compose-environment-manager.ts b/dashboard/src/components/api/environment/compose-environment-manager.ts index 504ac1187a4..f33f4013dd7 100644 --- a/dashboard/src/components/api/environment/compose-environment-manager.ts +++ b/dashboard/src/components/api/environment/compose-environment-manager.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/compose-parser.ts b/dashboard/src/components/api/environment/compose-parser.ts index ca3ff5bc9e6..6ab1287507a 100644 --- a/dashboard/src/components/api/environment/compose-parser.ts +++ b/dashboard/src/components/api/environment/compose-parser.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/docker-file-environment-manager.spec.ts b/dashboard/src/components/api/environment/docker-file-environment-manager.spec.ts index 7ee4da273b6..1c7257f7b6a 100644 --- a/dashboard/src/components/api/environment/docker-file-environment-manager.spec.ts +++ b/dashboard/src/components/api/environment/docker-file-environment-manager.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/docker-file-environment-manager.ts b/dashboard/src/components/api/environment/docker-file-environment-manager.ts index c031a708d82..aeb3e65e4d9 100644 --- a/dashboard/src/components/api/environment/docker-file-environment-manager.ts +++ b/dashboard/src/components/api/environment/docker-file-environment-manager.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/docker-file-parser.spec.ts b/dashboard/src/components/api/environment/docker-file-parser.spec.ts index 8da692660c8..310044333ae 100644 --- a/dashboard/src/components/api/environment/docker-file-parser.spec.ts +++ b/dashboard/src/components/api/environment/docker-file-parser.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/docker-file-parser.ts b/dashboard/src/components/api/environment/docker-file-parser.ts index 2efd4880d73..e2836679ba4 100644 --- a/dashboard/src/components/api/environment/docker-file-parser.ts +++ b/dashboard/src/components/api/environment/docker-file-parser.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/docker-image-environment-manager.spec.ts b/dashboard/src/components/api/environment/docker-image-environment-manager.spec.ts index 780a72a5a58..61cc8fa091d 100644 --- a/dashboard/src/components/api/environment/docker-image-environment-manager.spec.ts +++ b/dashboard/src/components/api/environment/docker-image-environment-manager.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/docker-image-environment-manager.ts b/dashboard/src/components/api/environment/docker-image-environment-manager.ts index 5c88e8cec1d..38f35a94d22 100644 --- a/dashboard/src/components/api/environment/docker-image-environment-manager.ts +++ b/dashboard/src/components/api/environment/docker-image-environment-manager.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/environment/environment-manager-machine.ts b/dashboard/src/components/api/environment/environment-manager-machine.ts index c98636d4db0..a2d639cebb9 100644 --- a/dashboard/src/components/api/environment/environment-manager-machine.ts +++ b/dashboard/src/components/api/environment/environment-manager-machine.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ export interface IEnvironmentManagerMachine extends che.IEnvironmentMachine { name: string; diff --git a/dashboard/src/components/api/environment/environment-manager.ts b/dashboard/src/components/api/environment/environment-manager.ts index 47dfda8038d..21a22955aef 100644 --- a/dashboard/src/components/api/environment/environment-manager.ts +++ b/dashboard/src/components/api/environment/environment-manager.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {IEnvironmentManagerMachine, IEnvironmentManagerMachineServer} from './environment-manager-machine'; diff --git a/dashboard/src/components/api/namespace/che-namespace-registry.factory.ts b/dashboard/src/components/api/namespace/che-namespace-registry.factory.ts index 0f6ea2d42ca..ca4d87202ff 100644 --- a/dashboard/src/components/api/namespace/che-namespace-registry.factory.ts +++ b/dashboard/src/components/api/namespace/che-namespace-registry.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/paging-resource/page-object-resource.ts b/dashboard/src/components/api/paging-resource/page-object-resource.ts index 64c70f048b1..8419349cf6c 100644 --- a/dashboard/src/components/api/paging-resource/page-object-resource.ts +++ b/dashboard/src/components/api/paging-resource/page-object-resource.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/paging-resource/page-object.factory.ts b/dashboard/src/components/api/paging-resource/page-object.factory.ts index 2042fedb020..c121af9698a 100644 --- a/dashboard/src/components/api/paging-resource/page-object.factory.ts +++ b/dashboard/src/components/api/paging-resource/page-object.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {PageObjectResource} from './page-object-resource'; diff --git a/dashboard/src/components/api/paging-resource/page-object.mock.ts b/dashboard/src/components/api/paging-resource/page-object.mock.ts index 5a5f263fbe6..661f218a06b 100644 --- a/dashboard/src/components/api/paging-resource/page-object.mock.ts +++ b/dashboard/src/components/api/paging-resource/page-object.mock.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {PageObjectResource} from './page-object-resource'; diff --git a/dashboard/src/components/api/paging-resource/page-object.spec.ts b/dashboard/src/components/api/paging-resource/page-object.spec.ts index 3123d303364..f000fe96e11 100644 --- a/dashboard/src/components/api/paging-resource/page-object.spec.ts +++ b/dashboard/src/components/api/paging-resource/page-object.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheHttpBackend} from '../test/che-http-backend'; diff --git a/dashboard/src/components/api/paging-resource/remote-page-labels.ts b/dashboard/src/components/api/paging-resource/remote-page-labels.ts index 0f12d9922c4..acc11f57852 100644 --- a/dashboard/src/components/api/paging-resource/remote-page-labels.ts +++ b/dashboard/src/components/api/paging-resource/remote-page-labels.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/project/che-type-resolver.spec.ts b/dashboard/src/components/api/project/che-type-resolver.spec.ts index b345855171b..11056aa514a 100644 --- a/dashboard/src/components/api/project/che-type-resolver.spec.ts +++ b/dashboard/src/components/api/project/che-type-resolver.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheWorkspace} from '../che-workspace.factory'; diff --git a/dashboard/src/components/api/project/che-type-resolver.ts b/dashboard/src/components/api/project/che-type-resolver.ts index c22a451abb3..df1e8a0ddb9 100644 --- a/dashboard/src/components/api/project/che-type-resolver.ts +++ b/dashboard/src/components/api/project/che-type-resolver.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/remote/che-remote-login.ts b/dashboard/src/components/api/remote/che-remote-login.ts index e913d88d392..60cd0720cf1 100644 --- a/dashboard/src/components/api/remote/che-remote-login.ts +++ b/dashboard/src/components/api/remote/che-remote-login.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/remote/che-remote-project.ts b/dashboard/src/components/api/remote/che-remote-project.ts index c85e0fa6fb4..c414971380f 100644 --- a/dashboard/src/components/api/remote/che-remote-project.ts +++ b/dashboard/src/components/api/remote/che-remote-project.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/remote/che-remote-recipe.ts b/dashboard/src/components/api/remote/che-remote-recipe.ts index fc17099f3f7..df06744b9da 100644 --- a/dashboard/src/components/api/remote/che-remote-recipe.ts +++ b/dashboard/src/components/api/remote/che-remote-recipe.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/remote/che-remote-workspace.ts b/dashboard/src/components/api/remote/che-remote-workspace.ts index c71d63f0c81..78268e9860e 100644 --- a/dashboard/src/components/api/remote/che-remote-workspace.ts +++ b/dashboard/src/components/api/remote/che-remote-workspace.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/remote/che-remote.factory.ts b/dashboard/src/components/api/remote/che-remote.factory.ts index a5fc306309e..fbb442f1a02 100644 --- a/dashboard/src/components/api/remote/che-remote.factory.ts +++ b/dashboard/src/components/api/remote/che-remote.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/test/che-http-backend-provider.factory.ts b/dashboard/src/components/api/test/che-http-backend-provider.factory.ts index b8123bd0676..547021eaf64 100644 --- a/dashboard/src/components/api/test/che-http-backend-provider.factory.ts +++ b/dashboard/src/components/api/test/che-http-backend-provider.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/test/che-http-backend.factory.ts b/dashboard/src/components/api/test/che-http-backend.factory.ts index 3906dbc7eb5..2bf5158a1c2 100644 --- a/dashboard/src/components/api/test/che-http-backend.factory.ts +++ b/dashboard/src/components/api/test/che-http-backend.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/api/test/che-http-backend.ts b/dashboard/src/components/api/test/che-http-backend.ts index 6a86d43d59b..4d566f189e4 100644 --- a/dashboard/src/components/api/test/che-http-backend.ts +++ b/dashboard/src/components/api/test/che-http-backend.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheAPIBuilder} from '../builder/che-api-builder.factory'; diff --git a/dashboard/src/components/attribute/attribute-config.ts b/dashboard/src/components/attribute/attribute-config.ts index d89b712a1d8..a5b3f002620 100644 --- a/dashboard/src/components/attribute/attribute-config.ts +++ b/dashboard/src/components/attribute/attribute-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/attribute/click/che-on-right-click.directive.ts b/dashboard/src/components/attribute/click/che-on-right-click.directive.ts index d1f7bc51e66..42c8b353d82 100644 --- a/dashboard/src/components/attribute/click/che-on-right-click.directive.ts +++ b/dashboard/src/components/attribute/click/che-on-right-click.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/attribute/focusable/che-focusable.directive.ts b/dashboard/src/components/attribute/focusable/che-focusable.directive.ts index db4451b1a70..9441808f257 100644 --- a/dashboard/src/components/attribute/focusable/che-focusable.directive.ts +++ b/dashboard/src/components/attribute/focusable/che-focusable.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/attribute/format-output/che-format-output.directive.ts b/dashboard/src/components/attribute/format-output/che-format-output.directive.ts index 5913b15d8fe..fd91e1fe21f 100644 --- a/dashboard/src/components/attribute/format-output/che-format-output.directive.ts +++ b/dashboard/src/components/attribute/format-output/che-format-output.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/attribute/input-type/input-city.directive.ts b/dashboard/src/components/attribute/input-type/input-city.directive.ts index b28c62bedd2..3a7e1ed895a 100644 --- a/dashboard/src/components/attribute/input-type/input-city.directive.ts +++ b/dashboard/src/components/attribute/input-type/input-city.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheInputType} from './input-type.directive'; diff --git a/dashboard/src/components/attribute/input-type/input-city.spec.ts b/dashboard/src/components/attribute/input-type/input-city.spec.ts index 049ae431d2e..4bd361c10ba 100644 --- a/dashboard/src/components/attribute/input-type/input-city.spec.ts +++ b/dashboard/src/components/attribute/input-type/input-city.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheTypeCity} from './input-city.directive'; diff --git a/dashboard/src/components/attribute/input-type/input-number.directive.ts b/dashboard/src/components/attribute/input-type/input-number.directive.ts index 5a28ea67917..b261657f34b 100644 --- a/dashboard/src/components/attribute/input-type/input-number.directive.ts +++ b/dashboard/src/components/attribute/input-type/input-number.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheInputType} from './input-type.directive'; diff --git a/dashboard/src/components/attribute/input-type/input-number.spec.ts b/dashboard/src/components/attribute/input-type/input-number.spec.ts index ede4a2a06b8..79baa8f1d90 100644 --- a/dashboard/src/components/attribute/input-type/input-number.spec.ts +++ b/dashboard/src/components/attribute/input-type/input-number.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheTypeNumber} from './input-number.directive'; diff --git a/dashboard/src/components/attribute/input-type/input-type.directive.ts b/dashboard/src/components/attribute/input-type/input-type.directive.ts index 19f6da58d84..7b3a654cdf4 100644 --- a/dashboard/src/components/attribute/input-type/input-type.directive.ts +++ b/dashboard/src/components/attribute/input-type/input-type.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/attribute/reload-href/che-reload-href.directive.ts b/dashboard/src/components/attribute/reload-href/che-reload-href.directive.ts index b0635e537f8..72ffaac6da9 100644 --- a/dashboard/src/components/attribute/reload-href/che-reload-href.directive.ts +++ b/dashboard/src/components/attribute/reload-href/che-reload-href.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/attribute/scroll/che-automatic-scroll.directive.ts b/dashboard/src/components/attribute/scroll/che-automatic-scroll.directive.ts index d9fba7b5ab3..3552debe2ea 100644 --- a/dashboard/src/components/attribute/scroll/che-automatic-scroll.directive.ts +++ b/dashboard/src/components/attribute/scroll/che-automatic-scroll.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/attribute/scroll/che-list-on-scroll-bottom.directive.ts b/dashboard/src/components/attribute/scroll/che-list-on-scroll-bottom.directive.ts index 6684a488094..8e9d35601b0 100644 --- a/dashboard/src/components/attribute/scroll/che-list-on-scroll-bottom.directive.ts +++ b/dashboard/src/components/attribute/scroll/che-list-on-scroll-bottom.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/attribute/touch/che-on-long-touch.directive.ts b/dashboard/src/components/attribute/touch/che-on-long-touch.directive.ts index 1a883ef72ad..811a3186519 100644 --- a/dashboard/src/components/attribute/touch/che-on-long-touch.directive.ts +++ b/dashboard/src/components/attribute/touch/che-on-long-touch.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/branding/che-branding-config.ts b/dashboard/src/components/branding/che-branding-config.ts index 0bf798e6c58..f0853b57662 100644 --- a/dashboard/src/components/branding/che-branding-config.ts +++ b/dashboard/src/components/branding/che-branding-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/branding/che-branding.factory.ts b/dashboard/src/components/branding/che-branding.factory.ts index 9716ebb2e3e..9fca8465216 100644 --- a/dashboard/src/components/branding/che-branding.factory.ts +++ b/dashboard/src/components/branding/che-branding.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheService} from '../api/che-service.factory'; diff --git a/dashboard/src/components/codemirror/codemirror.ts b/dashboard/src/components/codemirror/codemirror.ts index 0ae96230c67..e4440e45863 100644 --- a/dashboard/src/components/codemirror/codemirror.ts +++ b/dashboard/src/components/codemirror/codemirror.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/components-config.ts b/dashboard/src/components/components-config.ts index 6532e8cfaa3..f482f3f08ae 100644 --- a/dashboard/src/components/components-config.ts +++ b/dashboard/src/components/components-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/error-messages/che-error-messages-config.ts b/dashboard/src/components/error-messages/che-error-messages-config.ts index 351964146b8..e8005e3540d 100644 --- a/dashboard/src/components/error-messages/che-error-messages-config.ts +++ b/dashboard/src/components/error-messages/che-error-messages-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/error-messages/che-error-messages.directive.ts b/dashboard/src/components/error-messages/che-error-messages.directive.ts index d238f12a843..d446b592e78 100644 --- a/dashboard/src/components/error-messages/che-error-messages.directive.ts +++ b/dashboard/src/components/error-messages/che-error-messages.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheErrorMessagesService} from './che-error-messages.service'; diff --git a/dashboard/src/components/error-messages/che-error-messages.service.spec.ts b/dashboard/src/components/error-messages/che-error-messages.service.spec.ts index f0c668ee6a8..1e974fd7a63 100644 --- a/dashboard/src/components/error-messages/che-error-messages.service.spec.ts +++ b/dashboard/src/components/error-messages/che-error-messages.service.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheErrorMessagesService} from './che-error-messages.service'; diff --git a/dashboard/src/components/error-messages/che-error-messages.service.ts b/dashboard/src/components/error-messages/che-error-messages.service.ts index 77b272dfc55..e173aa9af49 100644 --- a/dashboard/src/components/error-messages/che-error-messages.service.ts +++ b/dashboard/src/components/error-messages/che-error-messages.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/filter/change-memory-unit/change-memory-unit.filter.spec.ts b/dashboard/src/components/filter/change-memory-unit/change-memory-unit.filter.spec.ts index 7e08f27bd3a..e1ca9131d59 100644 --- a/dashboard/src/components/filter/change-memory-unit/change-memory-unit.filter.spec.ts +++ b/dashboard/src/components/filter/change-memory-unit/change-memory-unit.filter.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheHttpBackend} from '../../api/test/che-http-backend'; diff --git a/dashboard/src/components/filter/change-memory-unit/change-memory-unit.filter.ts b/dashboard/src/components/filter/change-memory-unit/change-memory-unit.filter.ts index 26ce9a01132..b390c47924a 100644 --- a/dashboard/src/components/filter/change-memory-unit/change-memory-unit.filter.ts +++ b/dashboard/src/components/filter/change-memory-unit/change-memory-unit.filter.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/filter/filter-config.ts b/dashboard/src/components/filter/filter-config.ts index a58884579a1..08a1b42e52a 100644 --- a/dashboard/src/components/filter/filter-config.ts +++ b/dashboard/src/components/filter/filter-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheNumberRoundFilter} from './number-round/number-round.filter'; diff --git a/dashboard/src/components/filter/number-round/number-round.filter.ts b/dashboard/src/components/filter/number-round/number-round.filter.ts index 90eb28326be..33a7bb1d1b0 100644 --- a/dashboard/src/components/filter/number-round/number-round.filter.ts +++ b/dashboard/src/components/filter/number-round/number-round.filter.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/filter/number-round/number-round.spec.ts b/dashboard/src/components/filter/number-round/number-round.spec.ts index d2de5efd122..2fe08c57535 100644 --- a/dashboard/src/components/filter/number-round/number-round.spec.ts +++ b/dashboard/src/components/filter/number-round/number-round.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheHttpBackend} from '../../api/test/che-http-backend'; diff --git a/dashboard/src/components/github/github-service.ts b/dashboard/src/components/github/github-service.ts index 2b058764666..52eea7b731f 100644 --- a/dashboard/src/components/github/github-service.ts +++ b/dashboard/src/components/github/github-service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/ide-fetcher/che-ide-fetcher-config.ts b/dashboard/src/components/ide-fetcher/che-ide-fetcher-config.ts index 4370f187b69..6c6b01eef3a 100644 --- a/dashboard/src/components/ide-fetcher/che-ide-fetcher-config.ts +++ b/dashboard/src/components/ide-fetcher/che-ide-fetcher-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/ide-fetcher/che-ide-fetcher.service.ts b/dashboard/src/components/ide-fetcher/che-ide-fetcher.service.ts index 97a3993a07a..0bb682203dd 100644 --- a/dashboard/src/components/ide-fetcher/che-ide-fetcher.service.ts +++ b/dashboard/src/components/ide-fetcher/che-ide-fetcher.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheBranding} from '../branding/che-branding.factory'; diff --git a/dashboard/src/components/injector/che-ui-elements-injector-config.ts b/dashboard/src/components/injector/che-ui-elements-injector-config.ts index 5550f5a34ab..19612088a47 100644 --- a/dashboard/src/components/injector/che-ui-elements-injector-config.ts +++ b/dashboard/src/components/injector/che-ui-elements-injector-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/injector/che-ui-elements-injector.service.ts b/dashboard/src/components/injector/che-ui-elements-injector.service.ts index 9551e84f348..359758185ec 100644 --- a/dashboard/src/components/injector/che-ui-elements-injector.service.ts +++ b/dashboard/src/components/injector/che-ui-elements-injector.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/notification/application-notifications.factory.ts b/dashboard/src/components/notification/application-notifications.factory.ts index 13e3f19b855..72f21ff9618 100644 --- a/dashboard/src/components/notification/application-notifications.factory.ts +++ b/dashboard/src/components/notification/application-notifications.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/notification/che-notification-config.ts b/dashboard/src/components/notification/che-notification-config.ts index 4fceae43435..a6219f1e0e7 100644 --- a/dashboard/src/components/notification/che-notification-config.ts +++ b/dashboard/src/components/notification/che-notification-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/notification/che-notification.factory.ts b/dashboard/src/components/notification/che-notification.factory.ts index 752f77acbcd..8a798361e4c 100644 --- a/dashboard/src/components/notification/che-notification.factory.ts +++ b/dashboard/src/components/notification/che-notification.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/routing/route-history.service.ts b/dashboard/src/components/routing/route-history.service.ts index ef86033bcd3..64f63e29534 100644 --- a/dashboard/src/components/routing/route-history.service.ts +++ b/dashboard/src/components/routing/route-history.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/routing/routing-config.ts b/dashboard/src/components/routing/routing-config.ts index ff185c7cf5e..6cdbe7a2fff 100644 --- a/dashboard/src/components/routing/routing-config.ts +++ b/dashboard/src/components/routing/routing-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/routing/routing-redirect.factory.ts b/dashboard/src/components/routing/routing-redirect.factory.ts index f32f6afdaf2..fbaa19430a3 100644 --- a/dashboard/src/components/routing/routing-redirect.factory.ts +++ b/dashboard/src/components/routing/routing-redirect.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/service/confirm-dialog/che-confirm-dialog.controller.ts b/dashboard/src/components/service/confirm-dialog/che-confirm-dialog.controller.ts index 2073fd107af..371815c9057 100644 --- a/dashboard/src/components/service/confirm-dialog/che-confirm-dialog.controller.ts +++ b/dashboard/src/components/service/confirm-dialog/che-confirm-dialog.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/service/confirm-dialog/confirm-dialog.service.ts b/dashboard/src/components/service/confirm-dialog/confirm-dialog.service.ts index c370d7584b5..fee03ba1d04 100644 --- a/dashboard/src/components/service/confirm-dialog/confirm-dialog.service.ts +++ b/dashboard/src/components/service/confirm-dialog/confirm-dialog.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/service/service-config.ts b/dashboard/src/components/service/service-config.ts index 42f370f16f9..98dcb323bcd 100644 --- a/dashboard/src/components/service/service-config.ts +++ b/dashboard/src/components/service/service-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/steps-container/steps-container.directive.ts b/dashboard/src/components/steps-container/steps-container.directive.ts index 70385424dde..ed2726d94bb 100644 --- a/dashboard/src/components/steps-container/steps-container.directive.ts +++ b/dashboard/src/components/steps-container/steps-container.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/typings/che.d.ts b/dashboard/src/components/typings/che.d.ts index b15da0e1b4b..b281e149e09 100755 --- a/dashboard/src/components/typings/che.d.ts +++ b/dashboard/src/components/typings/che.d.ts @@ -1,14 +1,13 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ - declare module 'che' { export = che; } diff --git a/dashboard/src/components/utils/observable.ts b/dashboard/src/components/utils/observable.ts index 40a87fedda7..de286d33a50 100644 --- a/dashboard/src/components/utils/observable.ts +++ b/dashboard/src/components/utils/observable.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/utils/random.service.ts b/dashboard/src/components/utils/random.service.ts index e24ca4661b5..e3dec46a2ba 100644 --- a/dashboard/src/components/utils/random.service.ts +++ b/dashboard/src/components/utils/random.service.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/utils/register.ts b/dashboard/src/components/utils/register.ts index fbd205df21c..c1d14e1b8ca 100644 --- a/dashboard/src/components/utils/register.ts +++ b/dashboard/src/components/utils/register.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/city-name-validator.directive.ts b/dashboard/src/components/validator/city-name-validator.directive.ts index 6ebe76a7c3f..c050148d39a 100644 --- a/dashboard/src/components/validator/city-name-validator.directive.ts +++ b/dashboard/src/components/validator/city-name-validator.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/city-name-validator.spec.ts b/dashboard/src/components/validator/city-name-validator.spec.ts index 548d5c919c8..4f8c6886d37 100644 --- a/dashboard/src/components/validator/city-name-validator.spec.ts +++ b/dashboard/src/components/validator/city-name-validator.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheHttpBackend} from '../api/test/che-http-backend'; diff --git a/dashboard/src/components/validator/custom-async-validator.directive.ts b/dashboard/src/components/validator/custom-async-validator.directive.ts index de4408c0b45..85078a3d549 100644 --- a/dashboard/src/components/validator/custom-async-validator.directive.ts +++ b/dashboard/src/components/validator/custom-async-validator.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/custom-validator.directive.ts b/dashboard/src/components/validator/custom-validator.directive.ts index 51d8d6534fb..194e17f5c14 100755 --- a/dashboard/src/components/validator/custom-validator.directive.ts +++ b/dashboard/src/components/validator/custom-validator.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/custom-validator.spec.ts b/dashboard/src/components/validator/custom-validator.spec.ts index eba9a176d59..6946f5ea94b 100644 --- a/dashboard/src/components/validator/custom-validator.spec.ts +++ b/dashboard/src/components/validator/custom-validator.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/git-url-validator.directive.ts b/dashboard/src/components/validator/git-url-validator.directive.ts index 43a8488f9fc..f32bad27992 100644 --- a/dashboard/src/components/validator/git-url-validator.directive.ts +++ b/dashboard/src/components/validator/git-url-validator.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/git-url-validator.spec.ts b/dashboard/src/components/validator/git-url-validator.spec.ts index 99ea4a579e3..3272f5d76bd 100644 --- a/dashboard/src/components/validator/git-url-validator.spec.ts +++ b/dashboard/src/components/validator/git-url-validator.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/unique-project-name-validator.directive.ts b/dashboard/src/components/validator/unique-project-name-validator.directive.ts index f6fd9ea89b6..9e7a5d4e2db 100644 --- a/dashboard/src/components/validator/unique-project-name-validator.directive.ts +++ b/dashboard/src/components/validator/unique-project-name-validator.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/unique-project-name-validator.spec.ts b/dashboard/src/components/validator/unique-project-name-validator.spec.ts index b1af08f76f4..da2a7a7e854 100644 --- a/dashboard/src/components/validator/unique-project-name-validator.spec.ts +++ b/dashboard/src/components/validator/unique-project-name-validator.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/unique-stack-name-validator.directive.ts b/dashboard/src/components/validator/unique-stack-name-validator.directive.ts index 92974b4c896..80098100976 100644 --- a/dashboard/src/components/validator/unique-stack-name-validator.directive.ts +++ b/dashboard/src/components/validator/unique-stack-name-validator.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/unique-stack-name-validator.spec.ts b/dashboard/src/components/validator/unique-stack-name-validator.spec.ts index 6800f8d6007..15e51d3e98a 100644 --- a/dashboard/src/components/validator/unique-stack-name-validator.spec.ts +++ b/dashboard/src/components/validator/unique-stack-name-validator.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/unique-workspace-name-validator.directive.ts b/dashboard/src/components/validator/unique-workspace-name-validator.directive.ts index 26c2effda81..22974ba4b43 100644 --- a/dashboard/src/components/validator/unique-workspace-name-validator.directive.ts +++ b/dashboard/src/components/validator/unique-workspace-name-validator.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/unique-workspace-name-validator.spec.ts b/dashboard/src/components/validator/unique-workspace-name-validator.spec.ts index 196978e9870..80d25e0395f 100644 --- a/dashboard/src/components/validator/unique-workspace-name-validator.spec.ts +++ b/dashboard/src/components/validator/unique-workspace-name-validator.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/validator/validator-config.ts b/dashboard/src/components/validator/validator-config.ts index b8ad7f81b54..9553edea278 100644 --- a/dashboard/src/components/validator/validator-config.ts +++ b/dashboard/src/components/validator/validator-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/accordion/che-accordion.directive.ts b/dashboard/src/components/widget/accordion/che-accordion.directive.ts index abbeb306310..f8bd4774106 100644 --- a/dashboard/src/components/widget/accordion/che-accordion.directive.ts +++ b/dashboard/src/components/widget/accordion/che-accordion.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button-dropdown/che-button-dropdown.controller.ts b/dashboard/src/components/widget/button-dropdown/che-button-dropdown.controller.ts index 62184088b61..45df225b288 100644 --- a/dashboard/src/components/widget/button-dropdown/che-button-dropdown.controller.ts +++ b/dashboard/src/components/widget/button-dropdown/che-button-dropdown.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button-dropdown/che-button-dropdown.directive.ts b/dashboard/src/components/widget/button-dropdown/che-button-dropdown.directive.ts index 35b17fdc1a3..fa51e08a5a2 100644 --- a/dashboard/src/components/widget/button-dropdown/che-button-dropdown.directive.ts +++ b/dashboard/src/components/widget/button-dropdown/che-button-dropdown.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button-cancel-flat.directive.ts b/dashboard/src/components/widget/button/che-button-cancel-flat.directive.ts index 0fe7f0de1b3..de3b30bb2b8 100644 --- a/dashboard/src/components/widget/button/che-button-cancel-flat.directive.ts +++ b/dashboard/src/components/widget/button/che-button-cancel-flat.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button-danger.directive.ts b/dashboard/src/components/widget/button/che-button-danger.directive.ts index 985a90da518..8a7ed7d84a5 100644 --- a/dashboard/src/components/widget/button/che-button-danger.directive.ts +++ b/dashboard/src/components/widget/button/che-button-danger.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button-default.directive.ts b/dashboard/src/components/widget/button/che-button-default.directive.ts index a5814b53cdc..957cfb2f869 100644 --- a/dashboard/src/components/widget/button/che-button-default.directive.ts +++ b/dashboard/src/components/widget/button/che-button-default.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button-notice.directive.ts b/dashboard/src/components/widget/button/che-button-notice.directive.ts index 1c3e22c19ca..7d0a41a6fee 100644 --- a/dashboard/src/components/widget/button/che-button-notice.directive.ts +++ b/dashboard/src/components/widget/button/che-button-notice.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button-primary-flat.directive.ts b/dashboard/src/components/widget/button/che-button-primary-flat.directive.ts index 9ec7146f366..a5acf9558ce 100644 --- a/dashboard/src/components/widget/button/che-button-primary-flat.directive.ts +++ b/dashboard/src/components/widget/button/che-button-primary-flat.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button-primary.directive.ts b/dashboard/src/components/widget/button/che-button-primary.directive.ts index 3ada6b969d7..42a9c61986d 100644 --- a/dashboard/src/components/widget/button/che-button-primary.directive.ts +++ b/dashboard/src/components/widget/button/che-button-primary.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button-save-flat.directive.ts b/dashboard/src/components/widget/button/che-button-save-flat.directive.ts index 78fbc986017..35ac9a11257 100644 --- a/dashboard/src/components/widget/button/che-button-save-flat.directive.ts +++ b/dashboard/src/components/widget/button/che-button-save-flat.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button-warning.directive.ts b/dashboard/src/components/widget/button/che-button-warning.directive.ts index 9b7ed8e4739..3afbef5bf4f 100644 --- a/dashboard/src/components/widget/button/che-button-warning.directive.ts +++ b/dashboard/src/components/widget/button/che-button-warning.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/button/che-button.directive.ts b/dashboard/src/components/widget/button/che-button.directive.ts index 27ebfbb8014..e0788f6006d 100644 --- a/dashboard/src/components/widget/button/che-button.directive.ts +++ b/dashboard/src/components/widget/button/che-button.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/chips-list/chips-list.directive.ts b/dashboard/src/components/widget/chips-list/chips-list.directive.ts index 15e2e1c7808..e5bc750c5d7 100644 --- a/dashboard/src/components/widget/chips-list/chips-list.directive.ts +++ b/dashboard/src/components/widget/chips-list/chips-list.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/compile/che-compile.directive.ts b/dashboard/src/components/widget/compile/che-compile.directive.ts index ab7807766b8..579f2799530 100644 --- a/dashboard/src/components/widget/compile/che-compile.directive.ts +++ b/dashboard/src/components/widget/compile/che-compile.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/copy-clipboard/che-clipboard.directive.ts b/dashboard/src/components/widget/copy-clipboard/che-clipboard.directive.ts index c32f4b3ca88..c5e79c9f749 100644 --- a/dashboard/src/components/widget/copy-clipboard/che-clipboard.directive.ts +++ b/dashboard/src/components/widget/copy-clipboard/che-clipboard.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/description/che-description.directive.ts b/dashboard/src/components/widget/description/che-description.directive.ts index a94f49d5ef7..62cce0d8fde 100644 --- a/dashboard/src/components/widget/description/che-description.directive.ts +++ b/dashboard/src/components/widget/description/che-description.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/dropzone/che-dropzone.controller.ts b/dashboard/src/components/widget/dropzone/che-dropzone.controller.ts index 6d0663a7522..332532fceb2 100644 --- a/dashboard/src/components/widget/dropzone/che-dropzone.controller.ts +++ b/dashboard/src/components/widget/dropzone/che-dropzone.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/dropzone/che-dropzone.directive.ts b/dashboard/src/components/widget/dropzone/che-dropzone.directive.ts index 02c9f193426..94f694834b2 100644 --- a/dashboard/src/components/widget/dropzone/che-dropzone.directive.ts +++ b/dashboard/src/components/widget/dropzone/che-dropzone.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/editor/che-editor.controller.ts b/dashboard/src/components/widget/editor/che-editor.controller.ts index 269649a963f..00ceee09ad1 100644 --- a/dashboard/src/components/widget/editor/che-editor.controller.ts +++ b/dashboard/src/components/widget/editor/che-editor.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/editor/che-editor.directive.ts b/dashboard/src/components/widget/editor/che-editor.directive.ts index 4d286b9e28e..8a5daa0ee99 100644 --- a/dashboard/src/components/widget/editor/che-editor.directive.ts +++ b/dashboard/src/components/widget/editor/che-editor.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/empty-state/che-empty-state.directive.ts b/dashboard/src/components/widget/empty-state/che-empty-state.directive.ts index 91d13694027..4aba17d77a1 100644 --- a/dashboard/src/components/widget/empty-state/che-empty-state.directive.ts +++ b/dashboard/src/components/widget/empty-state/che-empty-state.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/filter-selector/che-filter-selector.controller.ts b/dashboard/src/components/widget/filter-selector/che-filter-selector.controller.ts index 2372eb9278f..20c29156dac 100644 --- a/dashboard/src/components/widget/filter-selector/che-filter-selector.controller.ts +++ b/dashboard/src/components/widget/filter-selector/che-filter-selector.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/filter-selector/che-filter-selector.directive.ts b/dashboard/src/components/widget/filter-selector/che-filter-selector.directive.ts index 78f7a823782..b1aa766bcc1 100644 --- a/dashboard/src/components/widget/filter-selector/che-filter-selector.directive.ts +++ b/dashboard/src/components/widget/filter-selector/che-filter-selector.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/footer/che-footer.controller.ts b/dashboard/src/components/widget/footer/che-footer.controller.ts index 40b0659ce20..f6816070d05 100644 --- a/dashboard/src/components/widget/footer/che-footer.controller.ts +++ b/dashboard/src/components/widget/footer/che-footer.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/footer/che-footer.directive.ts b/dashboard/src/components/widget/footer/che-footer.directive.ts index 5f2f4fb1a00..c42ebe8747e 100644 --- a/dashboard/src/components/widget/footer/che-footer.directive.ts +++ b/dashboard/src/components/widget/footer/che-footer.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/frame/che-frame.directive.ts b/dashboard/src/components/widget/frame/che-frame.directive.ts index 678bc7fae33..fc0007f9ea3 100644 --- a/dashboard/src/components/widget/frame/che-frame.directive.ts +++ b/dashboard/src/components/widget/frame/che-frame.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/html-source/che-html-source.directive.ts b/dashboard/src/components/widget/html-source/che-html-source.directive.ts index 1ed39dcf3ea..cd71eebfe1a 100644 --- a/dashboard/src/components/widget/html-source/che-html-source.directive.ts +++ b/dashboard/src/components/widget/html-source/che-html-source.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/html-source/demo-source-render.directive.ts b/dashboard/src/components/widget/html-source/demo-source-render.directive.ts index f84eaddc723..f5c9b20848f 100644 --- a/dashboard/src/components/widget/html-source/demo-source-render.directive.ts +++ b/dashboard/src/components/widget/html-source/demo-source-render.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/input/che-input-box.directive.ts b/dashboard/src/components/widget/input/che-input-box.directive.ts index 9dc8d527654..64c8c1df773 100644 --- a/dashboard/src/components/widget/input/che-input-box.directive.ts +++ b/dashboard/src/components/widget/input/che-input-box.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/input/che-input.directive.ts b/dashboard/src/components/widget/input/che-input.directive.ts index e76000c2da3..a24383b8608 100644 --- a/dashboard/src/components/widget/input/che-input.directive.ts +++ b/dashboard/src/components/widget/input/che-input.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/input/che-number-spinner.directive.ts b/dashboard/src/components/widget/input/che-number-spinner.directive.ts index afc14f29496..6c529fa43f4 100755 --- a/dashboard/src/components/widget/input/che-number-spinner.directive.ts +++ b/dashboard/src/components/widget/input/che-number-spinner.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/input/che-textarea.directive.ts b/dashboard/src/components/widget/input/che-textarea.directive.ts index 6c6bbf68889..e30b9d9bd59 100644 --- a/dashboard/src/components/widget/input/che-textarea.directive.ts +++ b/dashboard/src/components/widget/input/che-textarea.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/label-container/che-label-container.directive.ts b/dashboard/src/components/widget/label-container/che-label-container.directive.ts index cb0f3342e9f..ae92eeab4d1 100644 --- a/dashboard/src/components/widget/label-container/che-label-container.directive.ts +++ b/dashboard/src/components/widget/label-container/che-label-container.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/label/che-label.directive.ts b/dashboard/src/components/widget/label/che-label.directive.ts index 5b0555afc3f..b15fea921f7 100644 --- a/dashboard/src/components/widget/label/che-label.directive.ts +++ b/dashboard/src/components/widget/label/che-label.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/learn-more/che-learn-more-item.directive.ts b/dashboard/src/components/widget/learn-more/che-learn-more-item.directive.ts index d57cc5d0dfe..cfe80ce3fc7 100644 --- a/dashboard/src/components/widget/learn-more/che-learn-more-item.directive.ts +++ b/dashboard/src/components/widget/learn-more/che-learn-more-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/learn-more/che-learn-more-template.directive.ts b/dashboard/src/components/widget/learn-more/che-learn-more-template.directive.ts index 73d1fe82dc8..5989ec43b38 100644 --- a/dashboard/src/components/widget/learn-more/che-learn-more-template.directive.ts +++ b/dashboard/src/components/widget/learn-more/che-learn-more-template.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/learn-more/che-learn-more.controller.ts b/dashboard/src/components/widget/learn-more/che-learn-more.controller.ts index 227633f5e02..b91080dbbd3 100644 --- a/dashboard/src/components/widget/learn-more/che-learn-more.controller.ts +++ b/dashboard/src/components/widget/learn-more/che-learn-more.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/learn-more/che-learn-more.directive.ts b/dashboard/src/components/widget/learn-more/che-learn-more.directive.ts index f53634f7787..02e093ac58c 100644 --- a/dashboard/src/components/widget/learn-more/che-learn-more.directive.ts +++ b/dashboard/src/components/widget/learn-more/che-learn-more.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/link/che-link.directive.ts b/dashboard/src/components/widget/link/che-link.directive.ts index 759f4b5b2f4..d85187daa67 100644 --- a/dashboard/src/components/widget/link/che-link.directive.ts +++ b/dashboard/src/components/widget/link/che-link.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/list/che-list-header-column.directive.ts b/dashboard/src/components/widget/list/che-list-header-column.directive.ts index c8492bf385a..f37fe14378f 100644 --- a/dashboard/src/components/widget/list/che-list-header-column.directive.ts +++ b/dashboard/src/components/widget/list/che-list-header-column.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/list/che-list-header.directive.ts b/dashboard/src/components/widget/list/che-list-header.directive.ts index f11ff76f083..e3de6b283ff 100644 --- a/dashboard/src/components/widget/list/che-list-header.directive.ts +++ b/dashboard/src/components/widget/list/che-list-header.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/list/che-list-helper.factory.ts b/dashboard/src/components/widget/list/che-list-helper.factory.ts index c24cfc4ee07..126360aa612 100644 --- a/dashboard/src/components/widget/list/che-list-helper.factory.ts +++ b/dashboard/src/components/widget/list/che-list-helper.factory.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheListHelper} from './che-list-helper'; diff --git a/dashboard/src/components/widget/list/che-list-helper.mock.ts b/dashboard/src/components/widget/list/che-list-helper.mock.ts index acbf6781d90..c4ed99035a9 100644 --- a/dashboard/src/components/widget/list/che-list-helper.mock.ts +++ b/dashboard/src/components/widget/list/che-list-helper.mock.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/list/che-list-helper.spec.ts b/dashboard/src/components/widget/list/che-list-helper.spec.ts index bf7217f45d4..c85861ae47f 100644 --- a/dashboard/src/components/widget/list/che-list-helper.spec.ts +++ b/dashboard/src/components/widget/list/che-list-helper.spec.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheListHelper} from './che-list-helper'; diff --git a/dashboard/src/components/widget/list/che-list-helper.ts b/dashboard/src/components/widget/list/che-list-helper.ts index 3130ec33758..d6cfcfd4da7 100644 --- a/dashboard/src/components/widget/list/che-list-helper.ts +++ b/dashboard/src/components/widget/list/che-list-helper.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/list/che-list-item-checked.directive.ts b/dashboard/src/components/widget/list/che-list-item-checked.directive.ts index 060b28df951..b34a25f6fde 100644 --- a/dashboard/src/components/widget/list/che-list-item-checked.directive.ts +++ b/dashboard/src/components/widget/list/che-list-item-checked.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/list/che-list-item.directive.ts b/dashboard/src/components/widget/list/che-list-item.directive.ts index 1309b776d33..6acfbdeb3a3 100644 --- a/dashboard/src/components/widget/list/che-list-item.directive.ts +++ b/dashboard/src/components/widget/list/che-list-item.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/list/che-list-title.directive.ts b/dashboard/src/components/widget/list/che-list-title.directive.ts index ad6de2e33c0..d3fda02e121 100644 --- a/dashboard/src/components/widget/list/che-list-title.directive.ts +++ b/dashboard/src/components/widget/list/che-list-title.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/list/che-list.directive.ts b/dashboard/src/components/widget/list/che-list.directive.ts index 883b3e310e0..80da835d481 100644 --- a/dashboard/src/components/widget/list/che-list.directive.ts +++ b/dashboard/src/components/widget/list/che-list.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/loader/che-loader-crane.directive.ts b/dashboard/src/components/widget/loader/che-loader-crane.directive.ts index c473cfb0442..ecf1774d2f7 100644 --- a/dashboard/src/components/widget/loader/che-loader-crane.directive.ts +++ b/dashboard/src/components/widget/loader/che-loader-crane.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/loader/che-loader.directive.ts b/dashboard/src/components/widget/loader/che-loader.directive.ts index f89d0788284..e3258b2b7b7 100644 --- a/dashboard/src/components/widget/loader/che-loader.directive.ts +++ b/dashboard/src/components/widget/loader/che-loader.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/logs-output/che-logs-output.directive.ts b/dashboard/src/components/widget/logs-output/che-logs-output.directive.ts index 8ed9c25fd38..1a7b5bcfcb8 100644 --- a/dashboard/src/components/widget/logs-output/che-logs-output.directive.ts +++ b/dashboard/src/components/widget/logs-output/che-logs-output.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/notification/che-error-notification.directive.ts b/dashboard/src/components/widget/notification/che-error-notification.directive.ts index d41375e1119..c01d8fd6154 100644 --- a/dashboard/src/components/widget/notification/che-error-notification.directive.ts +++ b/dashboard/src/components/widget/notification/che-error-notification.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/notification/che-info-notification.directive.ts b/dashboard/src/components/widget/notification/che-info-notification.directive.ts index bc7c0acb928..2454dfb6359 100644 --- a/dashboard/src/components/widget/notification/che-info-notification.directive.ts +++ b/dashboard/src/components/widget/notification/che-info-notification.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/paging-button/paging-button.directive.ts b/dashboard/src/components/widget/paging-button/paging-button.directive.ts index 406596fa3d1..c5300339de6 100644 --- a/dashboard/src/components/widget/paging-button/paging-button.directive.ts +++ b/dashboard/src/components/widget/paging-button/paging-button.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {RemotePageLabels} from '../../api/paging-resource/remote-page-labels'; diff --git a/dashboard/src/components/widget/panel/che-panel.controller.ts b/dashboard/src/components/widget/panel/che-panel.controller.ts index 98ca5c65b5a..b43869a7483 100644 --- a/dashboard/src/components/widget/panel/che-panel.controller.ts +++ b/dashboard/src/components/widget/panel/che-panel.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/panel/che-panel.directive.ts b/dashboard/src/components/widget/panel/che-panel.directive.ts index 6d39ca19538..2c33fc3f5ce 100644 --- a/dashboard/src/components/widget/panel/che-panel.directive.ts +++ b/dashboard/src/components/widget/panel/che-panel.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/popover/che-toggle-button-popover.directive.spec.ts b/dashboard/src/components/widget/popover/che-toggle-button-popover.directive.spec.ts index 7c36db5fd43..71a25e3ca31 100644 --- a/dashboard/src/components/widget/popover/che-toggle-button-popover.directive.spec.ts +++ b/dashboard/src/components/widget/popover/che-toggle-button-popover.directive.spec.ts @@ -1,14 +1,13 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ - import {CheHttpBackend} from '../../api/test/che-http-backend'; interface ITestScope extends ng.IRootScopeService { diff --git a/dashboard/src/components/widget/popover/che-toggle-button-popover.directive.ts b/dashboard/src/components/widget/popover/che-toggle-button-popover.directive.ts index 8e85bddfb8d..01d0211d504 100644 --- a/dashboard/src/components/widget/popover/che-toggle-button-popover.directive.ts +++ b/dashboard/src/components/widget/popover/che-toggle-button-popover.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/popup/che-modal-popup.directive.ts b/dashboard/src/components/widget/popup/che-modal-popup.directive.ts index 6d396ce80cd..5cc028f14f7 100644 --- a/dashboard/src/components/widget/popup/che-modal-popup.directive.ts +++ b/dashboard/src/components/widget/popup/che-modal-popup.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/popup/che-popup.directive.ts b/dashboard/src/components/widget/popup/che-popup.directive.ts index dc843d1151f..19c2a542ca4 100644 --- a/dashboard/src/components/widget/popup/che-popup.directive.ts +++ b/dashboard/src/components/widget/popup/che-popup.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/search/che-search.directive.ts b/dashboard/src/components/widget/search/che-search.directive.ts index 6e794ca1ab8..ab70b28e080 100644 --- a/dashboard/src/components/widget/search/che-search.directive.ts +++ b/dashboard/src/components/widget/search/che-search.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/search/search-input.directive.ts b/dashboard/src/components/widget/search/search-input.directive.ts index a62f2a4cbe1..a803936d860 100644 --- a/dashboard/src/components/widget/search/search-input.directive.ts +++ b/dashboard/src/components/widget/search/search-input.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/select/che-select.directive.ts b/dashboard/src/components/widget/select/che-select.directive.ts index c96b54830af..d90d0c3ed4f 100644 --- a/dashboard/src/components/widget/select/che-select.directive.ts +++ b/dashboard/src/components/widget/select/che-select.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/selecter/che-selecter.controller.ts b/dashboard/src/components/widget/selecter/che-selecter.controller.ts index ef7252bd3ec..db203bbb488 100644 --- a/dashboard/src/components/widget/selecter/che-selecter.controller.ts +++ b/dashboard/src/components/widget/selecter/che-selecter.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/selecter/che-selecter.directive.ts b/dashboard/src/components/widget/selecter/che-selecter.directive.ts index cba8b8f7a61..7bc3f7a07ec 100644 --- a/dashboard/src/components/widget/selecter/che-selecter.directive.ts +++ b/dashboard/src/components/widget/selecter/che-selecter.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/show-area/che-show-area.directive.ts b/dashboard/src/components/widget/show-area/che-show-area.directive.ts index e86cf22c766..d894425db93 100644 --- a/dashboard/src/components/widget/show-area/che-show-area.directive.ts +++ b/dashboard/src/components/widget/show-area/che-show-area.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/slider/che-slider.directive.ts b/dashboard/src/components/widget/slider/che-slider.directive.ts index 0d50f22c99d..68b1ad3a907 100644 --- a/dashboard/src/components/widget/slider/che-slider.directive.ts +++ b/dashboard/src/components/widget/slider/che-slider.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/text-info/che-text-info.directive.ts b/dashboard/src/components/widget/text-info/che-text-info.directive.ts index 9959c399d0a..4f070ec816b 100644 --- a/dashboard/src/components/widget/text-info/che-text-info.directive.ts +++ b/dashboard/src/components/widget/text-info/che-text-info.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/toggle-button/che-toggle-button.directive.ts b/dashboard/src/components/widget/toggle-button/che-toggle-button.directive.ts index e05b10188c2..bc216bf7049 100644 --- a/dashboard/src/components/widget/toggle-button/che-toggle-button.directive.ts +++ b/dashboard/src/components/widget/toggle-button/che-toggle-button.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/toggle-button/che-toggle-joined-button.directive.ts b/dashboard/src/components/widget/toggle-button/che-toggle-joined-button.directive.ts index e4f0d71c749..dfca696b220 100644 --- a/dashboard/src/components/widget/toggle-button/che-toggle-joined-button.directive.ts +++ b/dashboard/src/components/widget/toggle-button/che-toggle-joined-button.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheToggleButton} from './che-toggle-button.directive'; diff --git a/dashboard/src/components/widget/toggle-button/che-toggle-joined.directive.ts b/dashboard/src/components/widget/toggle-button/che-toggle-joined.directive.ts index 4eb3790ea4c..c7c10b45ef8 100644 --- a/dashboard/src/components/widget/toggle-button/che-toggle-joined.directive.ts +++ b/dashboard/src/components/widget/toggle-button/che-toggle-joined.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheToggle} from './che-toggle.directive'; diff --git a/dashboard/src/components/widget/toggle-button/che-toggle.controller.ts b/dashboard/src/components/widget/toggle-button/che-toggle.controller.ts index 7743db18171..ec42f5c81c7 100644 --- a/dashboard/src/components/widget/toggle-button/che-toggle.controller.ts +++ b/dashboard/src/components/widget/toggle-button/che-toggle.controller.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/toggle-button/che-toggle.directive.ts b/dashboard/src/components/widget/toggle-button/che-toggle.directive.ts index 5d6ae426281..ade52f72002 100644 --- a/dashboard/src/components/widget/toggle-button/che-toggle.directive.ts +++ b/dashboard/src/components/widget/toggle-button/che-toggle.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; import {CheToggleController} from './che-toggle.controller'; diff --git a/dashboard/src/components/widget/toggle-button/toggle-single-button.directive.spec.ts b/dashboard/src/components/widget/toggle-button/toggle-single-button.directive.spec.ts index dca99e30586..15047303226 100644 --- a/dashboard/src/components/widget/toggle-button/toggle-single-button.directive.spec.ts +++ b/dashboard/src/components/widget/toggle-button/toggle-single-button.directive.spec.ts @@ -1,14 +1,13 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ - import {CheHttpBackend} from '../../api/test/che-http-backend'; interface ITestScope extends ng.IRootScopeService { diff --git a/dashboard/src/components/widget/toggle-button/toggle-single-button.directive.ts b/dashboard/src/components/widget/toggle-button/toggle-single-button.directive.ts index b13ad5de1c2..779fdcf6e34 100644 --- a/dashboard/src/components/widget/toggle-button/toggle-single-button.directive.ts +++ b/dashboard/src/components/widget/toggle-button/toggle-single-button.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/toolbar/che-toolbar.directive.ts b/dashboard/src/components/widget/toolbar/che-toolbar.directive.ts index 2c522f5f058..41201c9f973 100644 --- a/dashboard/src/components/widget/toolbar/che-toolbar.directive.ts +++ b/dashboard/src/components/widget/toolbar/che-toolbar.directive.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/components/widget/widget-config.ts b/dashboard/src/components/widget/widget-config.ts index 85f250b3609..3121fddc535 100644 --- a/dashboard/src/components/widget/widget-config.ts +++ b/dashboard/src/components/widget/widget-config.ts @@ -1,12 +1,12 @@ /* - * Copyright (c) 2015-2017 Codenvy, S.A. + * Copyright (c) 2015-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation */ 'use strict'; diff --git a/dashboard/src/webapp/WEB-INF/web.xml b/dashboard/src/webapp/WEB-INF/web.xml index 9fcceeb63eb..f15bbc1be17 100644 --- a/dashboard/src/webapp/WEB-INF/web.xml +++ b/dashboard/src/webapp/WEB-INF/web.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/ClassModel.java b/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/ClassModel.java index 63457fae0cf..ef96caaa7f8 100644 --- a/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/ClassModel.java +++ b/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/ClassModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.providers; diff --git a/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/DynaProviderGenerator.java b/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/DynaProviderGenerator.java index 82fb555fd2d..0c37a3f4e4d 100644 --- a/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/DynaProviderGenerator.java +++ b/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/DynaProviderGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.providers; diff --git a/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/DynaProviderMojo.java b/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/DynaProviderMojo.java index 962cdd2c27c..b111af975c2 100644 --- a/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/DynaProviderMojo.java +++ b/ide/che-core-dyna-provider-generator-maven-plugin/src/main/java/org/eclipse/che/providers/DynaProviderMojo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.providers; diff --git a/ide/che-core-ide-api/pom.xml b/ide/che-core-ide-api/pom.xml index 2c6bfc69842..025dfcb093c 100644 --- a/ide/che-core-ide-api/pom.xml +++ b/ide/che-core-ide-api/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ConnectionClosedInformer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ConnectionClosedInformer.java index 5e0e6b184ef..6b072509027 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ConnectionClosedInformer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ConnectionClosedInformer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProvider.java index 80263630173..920c7dde397 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProviderImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProviderImpl.java index a6b92d879c4..52ed78673b6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProviderImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProviderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/AbstractPerspectiveAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/AbstractPerspectiveAction.java index 04a4fdac64b..f1687017297 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/AbstractPerspectiveAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/AbstractPerspectiveAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Action.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Action.java index b09222db65a..9cac6777ef7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Action.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Action.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionEvent.java index 82ea9903775..3796c45148f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionGroup.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionGroup.java index 8febc211165..d993de6b6b6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionGroup.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionManager.java index 3002c9e7c36..aeb87e8ef70 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionSelectedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionSelectedHandler.java index 816bfe49d03..a7440e0ba90 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionSelectedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ActionSelectedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/AppCloseActionEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/AppCloseActionEvent.java index fae0cf46644..03c89824f1c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/AppCloseActionEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/AppCloseActionEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/CustomComponentAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/CustomComponentAction.java index 2f473f77448..4e181b119b0 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/CustomComponentAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/CustomComponentAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/DefaultActionGroup.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/DefaultActionGroup.java index 8a18871349a..ff1515c79e8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/DefaultActionGroup.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/DefaultActionGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/IdeActions.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/IdeActions.java index 38aa616d219..0ae24f5c62e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/IdeActions.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/IdeActions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Presentation.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Presentation.java index 133ed2e6c8e..286ccc3b93f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Presentation.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Presentation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ProjectAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ProjectAction.java index daf5c8b2abd..be8f98308c1 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ProjectAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ProjectAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PromisableAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PromisableAction.java index 74822cb58f3..2a226c47b3b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PromisableAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PromisableAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PropertyChangeEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PropertyChangeEvent.java index 5a2550d130d..383e56eb321 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PropertyChangeEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PropertyChangeEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PropertyChangeListener.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PropertyChangeListener.java index cc07ac94762..df27b347e27 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PropertyChangeListener.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/PropertyChangeListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Separator.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Separator.java index baa43d64a4c..a5c0e380aa9 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Separator.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Separator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ToggleAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ToggleAction.java index e94729eb7f7..22d71f1933f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ToggleAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/ToggleAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Toggleable.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Toggleable.java index 5663fa65718..65e1efca8b1 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Toggleable.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/action/Toggleable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/AppContext.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/AppContext.java index 084adcda77c..2986fb53db2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/AppContext.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/AppContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.app; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/CurrentUser.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/CurrentUser.java index 54c71042f49..e05d598039c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/CurrentUser.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/CurrentUser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.app; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/StartUpAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/StartUpAction.java index c28a22338f6..7d84c0d1b14 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/StartUpAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/app/StartUpAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.app; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/auth/OAuthServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/auth/OAuthServiceClient.java index 495e3677272..09dba40b2a3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/auth/OAuthServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/auth/OAuthServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.auth; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/auth/OAuthServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/auth/OAuthServiceClientImpl.java index d12bec0f1c6..eb5ef8b429f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/auth/OAuthServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/auth/OAuthServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.auth; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/autocomplete/AutoCompleteResources.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/autocomplete/AutoCompleteResources.java index 516d267cefc..415832b5b40 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/autocomplete/AutoCompleteResources.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/autocomplete/AutoCompleteResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.autocomplete; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/BaseCommandGoal.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/BaseCommandGoal.java index 819914f3044..b7e604166bf 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/BaseCommandGoal.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/BaseCommandGoal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandAddedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandAddedEvent.java index 4dd511694ee..527b43cf7dd 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandAddedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandAddedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandExecutor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandExecutor.java index 6355bba3aff..dda82f03237 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandExecutor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandExecutor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandGoal.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandGoal.java index 1092083d471..5bd3e548b47 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandGoal.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandGoal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandGoalRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandGoalRegistry.java index d4ac7dce213..0db384aa1a3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandGoalRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandGoalRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandImpl.java index 4a68b4ff732..0b3484b0e9f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandManager.java index 78359438c64..76f440ee7f8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandPage.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandPage.java index a7e7b5489cc..5beeeef1368 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandPage.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandProducer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandProducer.java index 1e39797b7c0..f4cf41d8fd4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandProducer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandProducer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandRemovedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandRemovedEvent.java index ec58376743e..3bcff8b4e0c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandRemovedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandRemovedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandType.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandType.java index 73dbd473dbc..a63ca582aa2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandType.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandTypeRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandTypeRegistry.java index d628bae077c..a911c0984bb 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandTypeRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandTypeRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandUpdatedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandUpdatedEvent.java index 6fd5fb86865..3adbbbf2126 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandUpdatedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandUpdatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandsLoadedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandsLoadedEvent.java index bd0696442d1..e15d55ccf9d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandsLoadedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/command/CommandsLoadedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.command; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/Component.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/Component.java index 4dbca01fdaa..1fe0a5c30da 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/Component.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/Component.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.component; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/StateComponent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/StateComponent.java index 2647f860976..37143a62191 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/StateComponent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/StateComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.component; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/WsAgentComponent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/WsAgentComponent.java index 713d4d024c6..45f67c19a9c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/WsAgentComponent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/component/WsAgentComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.component; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Anchor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Anchor.java index fd3e5087673..c3533817faf 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Anchor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Anchor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.constraints; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Constraints.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Constraints.java index a0385a50d87..ae529b792f2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Constraints.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Constraints.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.constraints; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Direction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Direction.java index 14ddf5abb10..f36b86c9719 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Direction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/constraints/Direction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.constraints; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/HasDataObject.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/HasDataObject.java index 53e02d4a359..c3ff5ee16f4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/HasDataObject.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/HasDataObject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/AbstractTreeNode.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/AbstractTreeNode.java index ffaa7dbf3f0..3e912a7a741 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/AbstractTreeNode.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/AbstractTreeNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/HasAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/HasAction.java index 1fa451142ba..e3355cf1682 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/HasAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/HasAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/HasAttributes.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/HasAttributes.java index 530b161ae0b..e6147e19d9a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/HasAttributes.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/HasAttributes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/MutableNode.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/MutableNode.java index 103489fb830..57961224aa1 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/MutableNode.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/MutableNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/Node.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/Node.java index 9a18f54429e..33e6b944bf0 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/Node.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/Node.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/NodeInterceptor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/NodeInterceptor.java index e44c97fc75d..75272874d0b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/NodeInterceptor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/NodeInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/TreeExpander.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/TreeExpander.java index ebfb2b93f0d..dae1330190a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/TreeExpander.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/TreeExpander.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/HasSettings.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/HasSettings.java index 9bedb0a8730..b384b6ddd47 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/HasSettings.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/HasSettings.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree.settings; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/NodeSettings.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/NodeSettings.java index 551fad6e967..4e779ebab4f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/NodeSettings.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/NodeSettings.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree.settings; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/SettingsProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/SettingsProvider.java index eafeec25d0a..95c06d8caf2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/SettingsProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/SettingsProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree.settings; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/impl/DummySettingsProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/impl/DummySettingsProvider.java index 196360c677a..6eb464dbdc8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/impl/DummySettingsProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/data/tree/settings/impl/DummySettingsProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.data.tree.settings.impl; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/Breakpoint.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/Breakpoint.java index 0d6d3b0eec0..8be6a4cf05e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/Breakpoint.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/Breakpoint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManager.java index 90b52b6fe5c..6ff08272030 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManagerObservable.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManagerObservable.java index 8b8b54f64f3..cf8d0cc4ccb 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManagerObservable.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManagerObservable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManagerObserver.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManagerObserver.java index e80b4fd45ae..fd284f21b8a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManagerObserver.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointManagerObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointRenderer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointRenderer.java index 85f4b55104e..f6c2007ef3e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointRenderer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointRendererFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointRendererFactory.java index 5c1c49f739c..3ea48a37aaf 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointRendererFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointRendererFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointStorage.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointStorage.java index 9d6b7be2e96..ce8dfea57ef 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointStorage.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/BreakpointStorage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfiguration.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfiguration.java index dc008872d50..4c37136636e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfiguration.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationPage.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationPage.java index 0a49f16f63d..1ef460d08ff 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationPage.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationType.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationType.java index 708debc01c4..b8196dd8f4b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationType.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationsManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationsManager.java index c74dad7770a..989e267854c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationsManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebugConfigurationsManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebuggerServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebuggerServiceClient.java index b679530d203..592750153cc 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebuggerServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebuggerServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebuggerServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebuggerServiceClientImpl.java index 9d657914d12..8c8bf4a54a7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebuggerServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/DebuggerServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/HasBreakpointRenderer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/HasBreakpointRenderer.java index ebd75e214ba..b77606c674c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/HasBreakpointRenderer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/debug/HasBreakpointRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.debug; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/CancelCallback.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/CancelCallback.java index a8a36e5e6cd..4d19cdbff20 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/CancelCallback.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/CancelCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ChoiceDialog.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ChoiceDialog.java index ccf35c71c67..1c12ef07d1c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ChoiceDialog.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ChoiceDialog.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ConfirmCallback.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ConfirmCallback.java index df656060e3e..57cfc9429a0 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ConfirmCallback.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ConfirmCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ConfirmDialog.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ConfirmDialog.java index 1b3321a175b..cffed9c2a09 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ConfirmDialog.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/ConfirmDialog.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/DialogFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/DialogFactory.java index 2556035ad1b..0aa7f129cd4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/DialogFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/DialogFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputCallback.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputCallback.java index 6a4502c7cfa..4d70219a671 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputCallback.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputDialog.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputDialog.java index 98bd513d226..e31015eb309 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputDialog.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputDialog.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputValidator.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputValidator.java index fa7dc67279a..3d79069ce6c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputValidator.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/InputValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/MessageDialog.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/MessageDialog.java index 86407009384..11ea08d18f2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/MessageDialog.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/dialogs/MessageDialog.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.dialogs; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/AbstractEditorPresenter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/AbstractEditorPresenter.java index 375cf209e1d..bc37b8ac129 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/AbstractEditorPresenter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/AbstractEditorPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/AsyncEditorProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/AsyncEditorProvider.java index c391bc93180..df9f21c313a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/AsyncEditorProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/AsyncEditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorAgent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorAgent.java index 15ae214b380..6bb3a083006 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorAgent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorInitException.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorInitException.java index dddd852b005..dd233999abc 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorInitException.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorInitException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorInput.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorInput.java index 13aacaa5b22..78962b9a04d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorInput.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorInput.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorLocalizationConstants.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorLocalizationConstants.java index 884fddec165..2953592fb17 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorLocalizationConstants.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorLocalizationConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorOpenedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorOpenedEvent.java index c9129d67a51..b65519ddb15 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorOpenedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorOpenedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorOpenedEventHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorOpenedEventHandler.java index 850713a557f..7187151bfb2 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorOpenedEventHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorOpenedEventHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorPartPresenter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorPartPresenter.java index cc999eb7f5c..df68b377553 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorPartPresenter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorPartPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorProvider.java index ef6936a05d3..7a29c80ee68 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorRegistry.java index 9ea4ad0873c..034ba88d274 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorWithAutoSave.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorWithAutoSave.java index ec0c0a7f017..fc444f2bcac 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorWithAutoSave.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorWithAutoSave.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorWithErrors.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorWithErrors.java index 01d8e7b4280..5b81ea650b3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorWithErrors.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/EditorWithErrors.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/OpenEditorCallbackImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/OpenEditorCallbackImpl.java index 0038962a230..20380bdabbd 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/OpenEditorCallbackImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/OpenEditorCallbackImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationGroup.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationGroup.java index ec2c85a3b44..efea731ba6c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationGroup.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationGroupImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationGroupImpl.java index 21f6cf1dd5c..8fa7d7f7b3a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationGroupImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationGroupImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModel.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModel.java index 0b0fa4a0a3d..6e672512b5f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModel.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModelHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModelHandler.java index 402f5a1782c..c7b2cca7123 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModelHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModelHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModelImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModelImpl.java index 388bb6cf3cf..8b3368285eb 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModelImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationModelImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationsIterator.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationsIterator.java index aad5afa9e42..934b4977e03 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationsIterator.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/AnnotationsIterator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ClearAnnotationModelEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ClearAnnotationModelEvent.java index 60e0035407a..0e4fb3e6e10 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ClearAnnotationModelEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ClearAnnotationModelEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ClearAnnotationModelHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ClearAnnotationModelHandler.java index 6a69e133df6..1813ac52f3a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ClearAnnotationModelHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ClearAnnotationModelHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/GutterAnnotationRenderer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/GutterAnnotationRenderer.java index 12de7620d3a..e433bf676dd 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/GutterAnnotationRenderer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/GutterAnnotationRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/HasAnnotationRendering.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/HasAnnotationRendering.java index 48a1ac1f24e..5d9a524c406 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/HasAnnotationRendering.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/HasAnnotationRendering.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/InlineAnnotationRenderer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/InlineAnnotationRenderer.java index 927f26dbf1d..1125a0e6ab8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/InlineAnnotationRenderer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/InlineAnnotationRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ListTooltipFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ListTooltipFactory.java index f43d1bab6f7..723b7e51a85 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ListTooltipFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/ListTooltipFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/MinimapAnnotationRenderer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/MinimapAnnotationRenderer.java index 0ce6b93ef68..7c503d2b407 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/MinimapAnnotationRenderer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/MinimapAnnotationRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/PositionHolder.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/PositionHolder.java index 0950ad7f574..b09b8402de4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/PositionHolder.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/PositionHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/QueryAnnotationsEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/QueryAnnotationsEvent.java index 453610b647e..e5ef923e459 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/QueryAnnotationsEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/QueryAnnotationsEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/QueryAnnotationsHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/QueryAnnotationsHandler.java index a00d704e66f..fb8cac30f56 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/QueryAnnotationsHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/QueryAnnotationsHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/RegionIterator.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/RegionIterator.java index b9da20dd29c..ca8a21e6335 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/RegionIterator.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/annotation/RegionIterator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/autosave/AutoSaveMode.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/autosave/AutoSaveMode.java index 85346c1a62e..38562d2e8c0 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/autosave/AutoSaveMode.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/autosave/AutoSaveMode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.autosave; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/ChangeInterceptorProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/ChangeInterceptorProvider.java index 25dd746a807..21e7bfa2a0f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/ChangeInterceptorProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/ChangeInterceptorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.changeintercept; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/CloseCStyleCommentChangeInterceptor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/CloseCStyleCommentChangeInterceptor.java index 503716f239d..0fc5c4202ca 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/CloseCStyleCommentChangeInterceptor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/CloseCStyleCommentChangeInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.changeintercept; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/TextChange.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/TextChange.java index 382bc7b1a5e..f98c5ffc964 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/TextChange.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/TextChange.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.changeintercept; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/TextChangeInterceptor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/TextChangeInterceptor.java index e4bd82b84db..88f0bffc238 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/TextChangeInterceptor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/changeintercept/TextChangeInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.changeintercept; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/AdditionalInfoCallback.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/AdditionalInfoCallback.java index e1e4283612f..4ff924edd6e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/AdditionalInfoCallback.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/AdditionalInfoCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistCallback.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistCallback.java index e1bbf333689..7d9bb233a8f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistCallback.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistProcessor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistProcessor.java index a83443663ca..94722169759 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistProcessor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistant.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistant.java index 0ad20fcf00a..81a0d61f33d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistant.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistantFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistantFactory.java index d9a1cda7793..979e3c8e77c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistantFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistantFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistantImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistantImpl.java index 2a857d1d705..750aeee4a45 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistantImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CodeAssistantImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/Completion.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/Completion.java index fe1e50f5902..76f4e65ca75 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/Completion.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/Completion.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionProposal.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionProposal.java index 59535899049..77699e63f13 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionProposal.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionProposal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionProposalExtension.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionProposalExtension.java index 5b7641e1b85..8cf8cde5ec6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionProposalExtension.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionProposalExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionReadyCallback.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionReadyCallback.java index a428209eaab..cf15314f09b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionReadyCallback.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionReadyCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionsSource.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionsSource.java index 61897d37b39..90578fe6c4c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionsSource.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/CompletionsSource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/DefaultChainedCodeAssistProcessor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/DefaultChainedCodeAssistProcessor.java index eb8fdd39066..3ab11a317c6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/DefaultChainedCodeAssistProcessor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/DefaultChainedCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/HasCompletionInformation.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/HasCompletionInformation.java index 07ea5091f9e..6e034f39813 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/HasCompletionInformation.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/codeassist/HasCompletionInformation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.codeassist; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/AbstractTextEditorProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/AbstractTextEditorProvider.java index d0439b637d8..6ad700be5c8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/AbstractTextEditorProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/AbstractTextEditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.defaulteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/DefaultTextEditorProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/DefaultTextEditorProvider.java index e59adb5c0bc..41a0ed82c6e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/DefaultTextEditorProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/DefaultTextEditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.defaulteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/EditorBuilder.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/EditorBuilder.java index a54204c4572..5e67eb4cd42 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/EditorBuilder.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/defaulteditor/EditorBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.defaulteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/AbstractDocument.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/AbstractDocument.java index 3f9030ab30a..dee8434c820 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/AbstractDocument.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/AbstractDocument.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.document; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/Document.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/Document.java index fc4de0e06a2..0e642ffd419 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/Document.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/Document.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.document; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentEventBus.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentEventBus.java index a6c35ff438d..0fc0f11a74f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentEventBus.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentEventBus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.document; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentHandle.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentHandle.java index a75585fcdb8..091261fbad3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentHandle.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentHandle.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.document; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentStorage.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentStorage.java index 2c49d8ef75d..bd7f71dec1b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentStorage.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentStorage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.document; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentStorageImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentStorageImpl.java index 15fecab6cb3..b17704d1d49 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentStorageImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/DocumentStorageImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.document; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/ReadOnlyDocument.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/ReadOnlyDocument.java index 4ae452dbaea..628fb3feaa6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/ReadOnlyDocument.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/ReadOnlyDocument.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.document; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/UseDocumentHandle.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/UseDocumentHandle.java index 8d83089eabd..de02915933b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/UseDocumentHandle.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/document/UseDocumentHandle.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.document; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/AutoSaveTextEditorConfiguration.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/AutoSaveTextEditorConfiguration.java index c9d64dc5a7e..28fc5fc2a78 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/AutoSaveTextEditorConfiguration.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/AutoSaveTextEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.editorconfig; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/DefaultTextEditorConfiguration.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/DefaultTextEditorConfiguration.java index aa03d39c333..fefab8658ff 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/DefaultTextEditorConfiguration.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/DefaultTextEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.editorconfig; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/EditorUpdateAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/EditorUpdateAction.java index dd2463c94fd..51b5aa43460 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/EditorUpdateAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/EditorUpdateAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.editorconfig; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/TextEditorConfiguration.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/TextEditorConfiguration.java index be0f77a5fcb..d6b9e4d5f30 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/TextEditorConfiguration.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/editorconfig/TextEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.editorconfig; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/BeforeSelectionChangeEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/BeforeSelectionChangeEvent.java index 32e08588faf..07dc7e33c43 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/BeforeSelectionChangeEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/BeforeSelectionChangeEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/BeforeSelectionChangeHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/BeforeSelectionChangeHandler.java index 1caf1340b04..401a8c55bf8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/BeforeSelectionChangeHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/BeforeSelectionChangeHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CompletionRequestEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CompletionRequestEvent.java index 9dea574dcbe..c3c080ad7c4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CompletionRequestEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CompletionRequestEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CompletionRequestHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CompletionRequestHandler.java index fda9dfc55cd..31db0687eca 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CompletionRequestHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CompletionRequestHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CursorActivityEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CursorActivityEvent.java index 986753df6cc..46dabc64011 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CursorActivityEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CursorActivityEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CursorActivityHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CursorActivityHandler.java index 38aaf84ded4..cade4a2e14d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CursorActivityHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/CursorActivityHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangedEvent.java index e89c561a121..ba50ba6a9f5 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangedHandler.java index 2df251a1c3a..5e2623225e2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangingEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangingEvent.java index 11745cac21e..d9330ca1b09 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangingEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangingEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangingHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangingHandler.java index 78b6bffcbd1..bfad09dbd8e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangingHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentChangingHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentReadyEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentReadyEvent.java index 0303965b00e..9e32ad642d1 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentReadyEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentReadyEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentReadyHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentReadyHandler.java index 4ee37def7d1..48670042d80 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentReadyHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/DocumentReadyHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/GutterClickEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/GutterClickEvent.java index bc52393fb21..947b495a32c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/GutterClickEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/GutterClickEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/GutterClickHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/GutterClickHandler.java index 957802f46b2..8d5ea3df902 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/GutterClickHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/GutterClickHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasBeforeSelectionChangeHandlers.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasBeforeSelectionChangeHandlers.java index aaaf2f14753..639b23465ff 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasBeforeSelectionChangeHandlers.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasBeforeSelectionChangeHandlers.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasCursorActivityHandlers.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasCursorActivityHandlers.java index 83f564d1bfa..ef06e961b43 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasCursorActivityHandlers.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasCursorActivityHandlers.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasDocumentReadyHandlers.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasDocumentReadyHandlers.java index f4e3cb4d829..be189f622ba 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasDocumentReadyHandlers.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasDocumentReadyHandlers.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasGutterClickHandlers.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasGutterClickHandlers.java index b2c61880191..7455cb0b8ee 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasGutterClickHandlers.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasGutterClickHandlers.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasViewPortChangeHandlers.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasViewPortChangeHandlers.java index 9265a38e05e..50f10513f98 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasViewPortChangeHandlers.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/HasViewPortChangeHandlers.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/TextChangeEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/TextChangeEvent.java index de52f4a3e85..a747339d5fe 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/TextChangeEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/TextChangeEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/TextChangeHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/TextChangeHandler.java index 87c9863cf9e..1867a5ee802 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/TextChangeHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/TextChangeHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/ViewPortChangeEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/ViewPortChangeEvent.java index 668460cc69f..7c5f8ff7068 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/ViewPortChangeEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/ViewPortChangeEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/ViewPortChangeHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/ViewPortChangeHandler.java index a095e9890e7..7b24c65bc1e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/ViewPortChangeHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/ViewPortChangeHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/doc/DocReadyWrapper.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/doc/DocReadyWrapper.java index 664333cf984..19de7c9c720 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/doc/DocReadyWrapper.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/events/doc/DocReadyWrapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.events.doc; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/ExtensionFileTypeIdentifier.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/ExtensionFileTypeIdentifier.java index 4e1d950389f..c02cd70be78 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/ExtensionFileTypeIdentifier.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/ExtensionFileTypeIdentifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.filetype; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FileNameFileTypeIdentifier.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FileNameFileTypeIdentifier.java index e05aa4a7811..eb0b9584d48 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FileNameFileTypeIdentifier.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FileNameFileTypeIdentifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.filetype; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FileTypeIdentifier.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FileTypeIdentifier.java index 6d94f8b6b35..96528c93d26 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FileTypeIdentifier.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FileTypeIdentifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.filetype; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FirstLineFileTypeIdentifier.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FirstLineFileTypeIdentifier.java index aeba53f133e..36f893c87b6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FirstLineFileTypeIdentifier.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/FirstLineFileTypeIdentifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.filetype; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/MultipleMethodFileIdentifier.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/MultipleMethodFileIdentifier.java index 10ff9b5f196..b314210cf04 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/MultipleMethodFileIdentifier.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/filetype/MultipleMethodFileIdentifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.filetype; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/formatter/ContentFormatter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/formatter/ContentFormatter.java index 4b86a02f13d..f9322778732 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/formatter/ContentFormatter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/formatter/ContentFormatter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.formatter; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/Gutter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/Gutter.java index d5f538fdf77..e170c2baef7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/Gutter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/Gutter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.gutter; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/Gutters.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/Gutters.java index 631a795ad6e..a27a702905b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/Gutters.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/Gutters.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.gutter; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/HasGutter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/HasGutter.java index 934f2ce2f12..73e02668817 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/HasGutter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/gutter/HasGutter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.gutter; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeyBinding.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeyBinding.java index bf9631f56f9..871d9f5492f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeyBinding.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeyBinding.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.keymap; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeyBindingAction.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeyBindingAction.java index f1b272a3349..f61c2755f79 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeyBindingAction.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeyBindingAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.keymap; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/Keymap.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/Keymap.java index 3c580b2f949..4ce8a376cdb 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/Keymap.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/Keymap.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.keymap; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeymapChangeEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeymapChangeEvent.java index 1ded6fbabcd..0f2d0a56715 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeymapChangeEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeymapChangeEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.keymap; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeymapChangeHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeymapChangeHandler.java index 4ad8457b0ac..c203179d487 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeymapChangeHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/keymap/KeymapChangeHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.keymap; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/HasLinkedMode.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/HasLinkedMode.java index 828caaa88e6..6f3f578e1a0 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/HasLinkedMode.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/HasLinkedMode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.link; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedMode.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedMode.java index 60dc8bdc317..585eeee909b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedMode.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedMode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.link; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModel.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModel.java index 61ee5492fdb..b446632a169 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModel.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.link; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModelData.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModelData.java index 233af7b4038..b7e9a351dbf 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModelData.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModelData.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.link; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModelGroup.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModelGroup.java index af4718e692f..0a58e2f732f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModelGroup.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/link/LinkedModelGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.link; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/minimap/HasMinimap.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/minimap/HasMinimap.java index 0b13c716cf9..25f892ef760 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/minimap/HasMinimap.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/minimap/HasMinimap.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.minimap; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/minimap/Minimap.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/minimap/Minimap.java index 96e6dfc1d44..71450acc38a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/minimap/Minimap.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/minimap/Minimap.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.minimap; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/CharacterScanner.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/CharacterScanner.java index abd248907f5..674c6447ea6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/CharacterScanner.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/CharacterScanner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/ConstantPartitioner.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/ConstantPartitioner.java index a9965cfae9b..f1db3c286b6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/ConstantPartitioner.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/ConstantPartitioner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DefaultPartitioner.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DefaultPartitioner.java index 27cee38acc2..33f177db91d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DefaultPartitioner.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DefaultPartitioner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPartitioner.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPartitioner.java index 5da8510fcbe..08647fdc899 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPartitioner.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPartitioner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPositionMap.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPositionMap.java index 6161a78d7e7..18c293b472f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPositionMap.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPositionMap.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPositionMapImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPositionMapImpl.java index a3911376132..0d33fd89595 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPositionMapImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/DocumentPositionMapImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/PartitionScanner.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/PartitionScanner.java index 2a879e10df0..656266044b6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/PartitionScanner.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/PartitionScanner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/PartitionerFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/PartitionerFactory.java index 8340a70a532..f9b29e605fc 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/PartitionerFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/PartitionerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/StringCharacterScanner.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/StringCharacterScanner.java index 3c31dfedf19..a695dd65735 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/StringCharacterScanner.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/StringCharacterScanner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/TokenScanner.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/TokenScanner.java index 9a01d9d41f7..b6578908cd5 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/TokenScanner.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/partition/TokenScanner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.partition; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/position/PositionConverter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/position/PositionConverter.java index a2851223ecc..5793bc4e76e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/position/PositionConverter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/position/PositionConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.position; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistAssistant.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistAssistant.java index b12a30d2ffe..21f5b2a2750 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistAssistant.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistAssistant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.quickfix; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistInvocationContext.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistInvocationContext.java index 0166dabd889..d43d27cce0e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistInvocationContext.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistInvocationContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.quickfix; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistProcessor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistProcessor.java index c1ec735d86a..90e258dd4cd 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistProcessor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.quickfix; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistantFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistantFactory.java index 8ed9c1495bc..f071849f51a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistantFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/quickfix/QuickAssistantFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.quickfix; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/DefaultReconciler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/DefaultReconciler.java index c725df927b5..b4d09836aaf 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/DefaultReconciler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/DefaultReconciler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.reconciler; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/Reconciler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/Reconciler.java index d340e52c28e..c99ed391b41 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/Reconciler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/Reconciler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.reconciler; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilerFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilerFactory.java index 3c4940abe48..9da746aa555 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilerFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.reconciler; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilerWithAutoSave.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilerWithAutoSave.java index a931e4944fe..ad15dd1aaa7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilerWithAutoSave.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilerWithAutoSave.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.reconciler; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilingStrategy.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilingStrategy.java index a25dd9968e0..28c54f774af 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilingStrategy.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/reconciler/ReconcilingStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.reconciler; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/ParameterInfo.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/ParameterInfo.java index 3d8490d50ba..8468922fc33 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/ParameterInfo.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/ParameterInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.signature; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureHelp.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureHelp.java index 7accc208658..c34801ef599 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureHelp.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureHelp.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.signature; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureHelpProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureHelpProvider.java index 501ec986c99..ecd0c3a1596 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureHelpProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureHelpProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.signature; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureInfo.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureInfo.java index 03ad186f2ce..c5152d90eb1 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureInfo.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/signature/SignatureInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.signature; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/BadLocationException.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/BadLocationException.java index da247f7a91d..02d95be54cf 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/BadLocationException.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/BadLocationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/BadPositionCategoryException.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/BadPositionCategoryException.java index 12e910fa1cb..808272d2e4b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/BadPositionCategoryException.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/BadPositionCategoryException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/LinearRange.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/LinearRange.java index ab48b55b86a..38d6d0dd884 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/LinearRange.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/LinearRange.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/Position.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/Position.java index aa36078ce53..fb2eb3b384d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/Position.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/Position.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/Region.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/Region.java index 838a0dbc978..5ef1b8f432c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/Region.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/Region.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/RegionImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/RegionImpl.java index 27370f28734..54ccd768fb2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/RegionImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/RegionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TextPosition.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TextPosition.java index cf20026472f..8025d5047d2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TextPosition.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TextPosition.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TextRange.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TextRange.java index a4393fbc8f0..89db7b6ddda 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TextRange.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TextRange.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TypedRegion.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TypedRegion.java index cf32046c6e3..bd7365aa284 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TypedRegion.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TypedRegion.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TypedRegionImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TypedRegionImpl.java index 59c189d62ce..ad21af0c37f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TypedRegionImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/TypedRegionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/annotation/Annotation.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/annotation/Annotation.java index 8715253bf5a..8a356d54ab4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/annotation/Annotation.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/text/annotation/Annotation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.text.annotation; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CanWrapLines.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CanWrapLines.java index 26931c1ac3f..7861eae8eed 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CanWrapLines.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CanWrapLines.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/ContentInitializedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/ContentInitializedHandler.java index 0fa049e7337..26854a3a8ee 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/ContentInitializedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/ContentInitializedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CursorModel.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CursorModel.java index d69e3895fc3..47bffe18978 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CursorModel.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CursorModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CursorModelWithHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CursorModelWithHandler.java index 00b7572ca3b..1a280b56731 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CursorModelWithHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/CursorModelWithHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorResources.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorResources.java index e897bf1c5f3..40de10f70c9 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorResources.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorWidget.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorWidget.java index 0f0aa1e8552..8f05edb409c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorWidget.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorWidgetFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorWidgetFactory.java index 5fee0381e40..aa3e9a8c64d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorWidgetFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/EditorWidgetFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HandlesTextOperations.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HandlesTextOperations.java index e90b7b28a6e..36dcd50f6c9 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HandlesTextOperations.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HandlesTextOperations.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HandlesUndoRedo.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HandlesUndoRedo.java index 8cf642027ca..4dcb93142fb 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HandlesUndoRedo.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HandlesUndoRedo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasKeyBindings.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasKeyBindings.java index 86fea3f74a3..ac14dc108e1 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasKeyBindings.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasKeyBindings.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasNotificationPanel.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasNotificationPanel.java index 6dda79a8f0b..339e96dd8ee 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasNotificationPanel.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasNotificationPanel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasReadOnlyProperty.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasReadOnlyProperty.java index 2c4ac2aaef4..5829dfdaf02 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasReadOnlyProperty.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasReadOnlyProperty.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasTextMarkers.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasTextMarkers.java index afe0367b2b7..679bb3cb9fc 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasTextMarkers.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/HasTextMarkers.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/LineStyler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/LineStyler.java index 1c653093f25..671edadd826 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/LineStyler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/LineStyler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditor.java index 75a3cb531ff..0c01356590a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditorOperations.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditorOperations.java index 57511f820fe..fa3cfd4b354 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditorOperations.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditorOperations.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditorPartView.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditorPartView.java index b388a956b97..3b6d7856bd3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditorPartView.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/TextEditorPartView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/UndoableEditor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/UndoableEditor.java index c108e553297..380a45612a3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/UndoableEditor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/editor/texteditor/UndoableEditor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.texteditor; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ActivePartChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ActivePartChangedEvent.java index 11afc5126aa..c7fb287c2fa 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ActivePartChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ActivePartChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ActivePartChangedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ActivePartChangedHandler.java index 6f5627dfc6a..9b410d20f94 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ActivePartChangedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ActivePartChangedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ConfigureProjectEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ConfigureProjectEvent.java index f515fb7a84d..a0e75d31486 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ConfigureProjectEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ConfigureProjectEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ConfigureProjectHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ConfigureProjectHandler.java index af6f63761d1..42ee1bf0d71 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ConfigureProjectHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ConfigureProjectHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorDirtyStateChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorDirtyStateChangedEvent.java index d9dc1c23c0a..85dc66c8748 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorDirtyStateChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorDirtyStateChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorDirtyStateChangedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorDirtyStateChangedHandler.java index 0fefffcd2c5..b400020ee01 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorDirtyStateChangedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorDirtyStateChangedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorSettingsChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorSettingsChangedEvent.java index c91cc38f34f..62800a3ae6e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorSettingsChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/EditorSettingsChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileContentUpdateEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileContentUpdateEvent.java index 8878543a33f..a9096693a3a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileContentUpdateEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileContentUpdateEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileContentUpdateHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileContentUpdateHandler.java index e912b783753..17468c6abfd 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileContentUpdateHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileContentUpdateHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileEvent.java index ca628f31f1c..e1345d4bf8e 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/FileEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/HttpSessionDestroyedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/HttpSessionDestroyedEvent.java index c8586d39ffe..9c368ec868f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/HttpSessionDestroyedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/HttpSessionDestroyedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/HttpSessionDestroyedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/HttpSessionDestroyedHandler.java index 4965816516d..13ebabe4cac 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/HttpSessionDestroyedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/HttpSessionDestroyedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ModuleCreatedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ModuleCreatedEvent.java index cc510853617..6e613c877c6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ModuleCreatedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ModuleCreatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/SelectionChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/SelectionChangedEvent.java index 48223931ea4..6c948fcd321 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/SelectionChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/SelectionChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/SelectionChangedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/SelectionChangedHandler.java index 591d166533f..c2b3ec4a9d5 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/SelectionChangedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/SelectionChangedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/WindowActionEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/WindowActionEvent.java index 484ef5669c1..904cef2ac44 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/WindowActionEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/WindowActionEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/WindowActionHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/WindowActionHandler.java index 2262d538566..115dc230412 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/WindowActionHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/WindowActionHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ClientServerEventService.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ClientServerEventService.java index db3a9fbd93f..69aee2ba672 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ClientServerEventService.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ClientServerEventService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ClientServerEventServiceImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ClientServerEventServiceImpl.java index 788fedec76e..4c2d660154e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ClientServerEventServiceImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ClientServerEventServiceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/DeletedFilesController.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/DeletedFilesController.java index a3c8960df7e..b11b0ad4d8e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/DeletedFilesController.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/DeletedFilesController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/EditorFileStatusNotificationOperation.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/EditorFileStatusNotificationOperation.java index fd9e0c92dd7..3728615e87e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/EditorFileStatusNotificationOperation.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/EditorFileStatusNotificationOperation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileOpenCloseEventListener.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileOpenCloseEventListener.java index 623fee3aa49..dd60c55254e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileOpenCloseEventListener.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileOpenCloseEventListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileTrackingEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileTrackingEvent.java index 255d9cf2645..fc60c50d0ef 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileTrackingEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileTrackingEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileWatcherExcludesOperation.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileWatcherExcludesOperation.java index 8a8baa3e9fb..471e5148299 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileWatcherExcludesOperation.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/FileWatcherExcludesOperation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/JsonRpcWebSocketAgentEventListener.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/JsonRpcWebSocketAgentEventListener.java index 5deb4f3a6c2..82b0bb1a4b7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/JsonRpcWebSocketAgentEventListener.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/JsonRpcWebSocketAgentEventListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ProjectTreeStateNotificationOperation.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ProjectTreeStateNotificationOperation.java index 389f376eebe..e5e06aeda44 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ProjectTreeStateNotificationOperation.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/ng/ProjectTreeStateNotificationOperation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.ng; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CreateProjectEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CreateProjectEvent.java index 410ae23d26e..a72bed34333 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CreateProjectEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CreateProjectEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CreateProjectHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CreateProjectHandler.java index 43d0eb4b52a..4a782eda483 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CreateProjectHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CreateProjectHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CurrentProjectChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CurrentProjectChangedEvent.java index fb2cfde9869..26614614e88 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CurrentProjectChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CurrentProjectChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CurrentProjectChangedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CurrentProjectChangedHandler.java index ff9c2da06e5..bdd98dcbfdc 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CurrentProjectChangedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/CurrentProjectChangedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/DeleteProjectEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/DeleteProjectEvent.java index 1e01d8a13a3..8087c41b605 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/DeleteProjectEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/DeleteProjectEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/DeleteProjectHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/DeleteProjectHandler.java index 592aa86be69..7b75ad5f6d2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/DeleteProjectHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/DeleteProjectHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/ProjectUpdatedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/ProjectUpdatedEvent.java index a8d78ec0b09..0a3afe78605 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/ProjectUpdatedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/event/project/ProjectUpdatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.event.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/DependencyDescription.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/DependencyDescription.java index 8949df429e2..c51d49ca8ce 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/DependencyDescription.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/DependencyDescription.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.extension; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/Extension.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/Extension.java index 87d600f5d03..4ba8a710a0f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/Extension.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/Extension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.extension; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionDescription.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionDescription.java index 03b50a33a89..05f837c6167 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionDescription.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionDescription.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.extension; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionGinModule.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionGinModule.java index 5bb9f35edd5..e13fafa8778 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionGinModule.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.extension; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionRegistry.java index e30c50a9a5f..ff3a8833c16 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.extension; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionsInitializedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionsInitializedEvent.java index ec765392236..2f1ae9cc53c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionsInitializedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/ExtensionsInitializedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.extension; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/SDK.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/SDK.java index 7f771bd9bb9..4e56ee8a789 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/SDK.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/extension/SDK.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.extension; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryAcceptedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryAcceptedEvent.java index a3f0fb062b2..66d06095e4f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryAcceptedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryAcceptedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.factory; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryAcceptedHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryAcceptedHandler.java index aa8d9ca6551..0fee23a2f77 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryAcceptedHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryAcceptedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.factory; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryServiceClient.java index 1f36121f3eb..820acd79a65 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/factory/FactoryServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.factory; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/filetypes/FileType.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/filetypes/FileType.java index d7878d64282..db0beee4539 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/filetypes/FileType.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/filetypes/FileType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.filetypes; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/filetypes/FileTypeRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/filetypes/FileTypeRegistry.java index f6ad5b034b6..85c2ae93872 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/filetypes/FileTypeRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/filetypes/FileTypeRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.filetypes; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/git/GitServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/git/GitServiceClient.java index f3916a46cd9..50a11cd90b4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/git/GitServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/git/GitServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.git; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/git/GitServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/git/GitServiceClientImpl.java index 975cd275e11..f7cbaf745a3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/git/GitServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/git/GitServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.git; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/hotkeys/HasHotKeyItems.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/hotkeys/HasHotKeyItems.java index e34a5901ecb..1eb748312f4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/hotkeys/HasHotKeyItems.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/hotkeys/HasHotKeyItems.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.hotkeys; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/hotkeys/HotKeyItem.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/hotkeys/HotKeyItem.java index f7f906adc36..7e3c147293a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/hotkeys/HotKeyItem.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/hotkeys/HotKeyItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.hotkeys; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/icon/Icon.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/icon/Icon.java index 7f71bddd8dc..1f86f09aa06 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/icon/Icon.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/icon/Icon.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.icon; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/icon/IconRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/icon/IconRegistry.java index 70e9dd29f10..8792b8516c8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/icon/IconRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/icon/IconRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.icon; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/importer/AbstractImporter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/importer/AbstractImporter.java index 61713a46ef1..1bb4ffce9be 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/importer/AbstractImporter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/importer/AbstractImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.importer; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/jsonrpc/WorkspaceMasterJsonRpcInitializer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/jsonrpc/WorkspaceMasterJsonRpcInitializer.java index a08cabdc9b0..6bbc4e9901f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/jsonrpc/WorkspaceMasterJsonRpcInitializer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/jsonrpc/WorkspaceMasterJsonRpcInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.jsonrpc; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/KeyBindingAgent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/KeyBindingAgent.java index 69615eeb5b4..4bb1f4bf67b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/KeyBindingAgent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/KeyBindingAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.keybinding; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/KeyBuilder.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/KeyBuilder.java index e77fb97290a..816abf9cf1c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/KeyBuilder.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/KeyBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.keybinding; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/Scheme.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/Scheme.java index f3df1264aea..e33a2beecb8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/Scheme.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/keybinding/Scheme.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.keybinding; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ActiveRuntime.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ActiveRuntime.java index d9e5a60ae12..4005e329230 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ActiveRuntime.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ActiveRuntime.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/CheWsAgentLinksModifier.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/CheWsAgentLinksModifier.java index 4a384d22a61..3f7a6415531 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/CheWsAgentLinksModifier.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/CheWsAgentLinksModifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/CommandOutputMessageUnmarshaller.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/CommandOutputMessageUnmarshaller.java index a485d76e497..c10c0f97ce9 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/CommandOutputMessageUnmarshaller.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/CommandOutputMessageUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/DevMachine.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/DevMachine.java index f14e0cbc1a8..d4fdd5dc412 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/DevMachine.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/DevMachine.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ExecAgentCommandManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ExecAgentCommandManager.java index 7bc324da25c..32c361eb506 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ExecAgentCommandManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ExecAgentCommandManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ExecAgentEventManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ExecAgentEventManager.java index 2bf78c84e4c..c5220190d8f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ExecAgentEventManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/ExecAgentEventManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineEntity.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineEntity.java index 922999b8050..5874000794f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineEntity.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineEntity.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineEntityImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineEntityImpl.java index ec1734f533b..3613853b665 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineEntityImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineEntityImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineServer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineServer.java index 9f4bc193bc5..fc907d3da30 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineServer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineServerProperties.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineServerProperties.java index 41d863e4402..6817c254e3f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineServerProperties.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/MachineServerProperties.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/OutputMessageUnmarshaller.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/OutputMessageUnmarshaller.java index 3e7b72db4b9..a7be3655e3e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/OutputMessageUnmarshaller.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/OutputMessageUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/RecipeServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/RecipeServiceClient.java index b8c8d38a19e..51f03cfbb43 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/RecipeServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/RecipeServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/RecipeServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/RecipeServiceClientImpl.java index b81fffba4b1..b7b4ceae8d6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/RecipeServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/RecipeServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentState.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentState.java index 5ed9d1a6f93..03bb1bc6e3c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentState.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentStateController.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentStateController.java index d21d2aa5655..c319cc48b5e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentStateController.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentStateController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentURLModifier.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentURLModifier.java index 25afe402a59..0d8e226ba7f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentURLModifier.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/WsAgentURLModifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/AbstractWsAgentStateHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/AbstractWsAgentStateHandler.java index 7332e96ef20..ecf830c2d0c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/AbstractWsAgentStateHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/AbstractWsAgentStateHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ActivateProcessOutputEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ActivateProcessOutputEvent.java index ba5df10334c..37a5226b2c7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ActivateProcessOutputEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ActivateProcessOutputEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/DevMachineStateEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/DevMachineStateEvent.java index f6a0ee5cc3e..ab1bdc9b392 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/DevMachineStateEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/DevMachineStateEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/MachineStateEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/MachineStateEvent.java index 61ad60f8b92..86d2c465ceb 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/MachineStateEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/MachineStateEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ProcessFinishedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ProcessFinishedEvent.java index f42e1f36214..7a46d56bfbe 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ProcessFinishedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ProcessFinishedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ProcessStartedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ProcessStartedEvent.java index 80f0cb2d01f..b5967201764 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ProcessStartedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/ProcessStartedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/WsAgentStateEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/WsAgentStateEvent.java index 33deafff405..6c5f9505cff 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/WsAgentStateEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/WsAgentStateEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/WsAgentStateHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/WsAgentStateHandler.java index dc474cb432d..0c9eb55da16 100755 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/WsAgentStateHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/events/WsAgentStateHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.events; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/AbstractExecAgentEventHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/AbstractExecAgentEventHandler.java index 968ceb5305f..ca061745b13 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/AbstractExecAgentEventHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/AbstractExecAgentEventHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ConnectedEventHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ConnectedEventHandler.java index 860e857210b..5786e118799 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ConnectedEventHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ConnectedEventHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ExecAgentConsumer.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ExecAgentConsumer.java index 1c04d28358f..52475391190 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ExecAgentConsumer.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ExecAgentConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/JsonRpcExecAgentCommandManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/JsonRpcExecAgentCommandManager.java index 38ec2c037c9..e2bf2429b11 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/JsonRpcExecAgentCommandManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/JsonRpcExecAgentCommandManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/JsonRpcExecAgentEventManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/JsonRpcExecAgentEventManager.java index 2235401b5f4..39a0f30c0a3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/JsonRpcExecAgentEventManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/JsonRpcExecAgentEventManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessDiedEventHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessDiedEventHandler.java index 834f37fb30d..80fc55bef1c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessDiedEventHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessDiedEventHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStartedEventHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStartedEventHandler.java index 6b0dcd6568d..4c180027f6f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStartedEventHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStartedEventHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStdErrEventHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStdErrEventHandler.java index 6faf26d3631..1ad5a66e160 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStdErrEventHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStdErrEventHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStdOutEventHandler.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStdOutEventHandler.java index 4c09ed6bf33..e8d31254395 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStdOutEventHandler.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/machine/execagent/ProcessStdOutEventHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.machine.execagent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/BaseMacro.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/BaseMacro.java index a3381004030..67deeb0fe38 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/BaseMacro.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/BaseMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.macro; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/Macro.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/Macro.java index cad42da8a51..1187d971947 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/Macro.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/Macro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.macro; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/MacroProcessor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/MacroProcessor.java index 7ff6f733d97..3221e63ed16 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/MacroProcessor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/MacroProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.macro; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/MacroRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/MacroRegistry.java index 5257537b57c..15f2d84fb4e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/MacroRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/macro/MacroRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.macro; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/mvp/Presenter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/mvp/Presenter.java index 503d4d61b28..61c8c5fdbc7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/mvp/Presenter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/mvp/Presenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.mvp; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/mvp/View.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/mvp/View.java index 3b8b31e5ef5..2fd52f3bd27 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/mvp/View.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/mvp/View.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.mvp; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/Notification.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/Notification.java index 974e721d331..7c3dd34c04b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/Notification.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/Notification.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.notification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationListener.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationListener.java index a09cd876558..324fc947769 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationListener.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.notification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationManager.java index 1d18678c530..d136e7dad5f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.notification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationObserver.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationObserver.java index 912cf94be3c..f91bdea8d6c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationObserver.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/NotificationObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.notification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/ReadState.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/ReadState.java index a856e5f868b..8ebd7e81102 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/ReadState.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/ReadState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.notification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/StatusNotification.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/StatusNotification.java index 26b2a4cab97..0ee290a2b5a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/StatusNotification.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/StatusNotification.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.notification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/StatusNotificationListener.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/StatusNotificationListener.java index a21a5dc9043..bb6892e08b6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/StatusNotificationListener.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/notification/StatusNotificationListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.notification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2Authenticator.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2Authenticator.java index 01242928864..e995ad56316 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2Authenticator.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2Authenticator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.oauth; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2AuthenticatorRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2AuthenticatorRegistry.java index d9b8bf78d78..31b4f91a191 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2AuthenticatorRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2AuthenticatorRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.oauth; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2AuthenticatorUrlProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2AuthenticatorUrlProvider.java index 2a901caab36..6ce03a123ce 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2AuthenticatorUrlProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/oauth/OAuth2AuthenticatorUrlProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.oauth; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/outputconsole/OutputConsole.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/outputconsole/OutputConsole.java index b5e613ac58a..349eaf91de6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/outputconsole/OutputConsole.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/outputconsole/OutputConsole.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.outputconsole; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/AbstractPartPresenter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/AbstractPartPresenter.java index 5e6d351ee49..762027d0eab 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/AbstractPartPresenter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/AbstractPartPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorMultiPartStack.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorMultiPartStack.java index ba78f1eb600..47633e6f999 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorMultiPartStack.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorMultiPartStack.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorMultiPartStackState.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorMultiPartStackState.java index 29e503b9344..b462a170d15 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorMultiPartStackState.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorMultiPartStackState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorPartStack.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorPartStack.java index 239dd4dbe7b..e7a767bbb98 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorPartStack.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorPartStack.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorTab.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorTab.java index 88bf69c0796..b032c2b4a9e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorTab.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/EditorTab.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/Focusable.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/Focusable.java index 8157d2eb4be..5b8b4fb1ce6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/Focusable.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/Focusable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartPresenter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartPresenter.java index 3a5496e6858..798d4086ffe 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartPresenter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStack.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStack.java index f846f487293..261e3202fe8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStack.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStack.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackStateChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackStateChangedEvent.java index 7d5aae5d3a1..737ff03b1c0 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackStateChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackStateChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackType.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackType.java index 2c1bc035893..3286495bf9d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackType.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackUIResources.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackUIResources.java index 789311f7bca..7f71658333f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackUIResources.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackUIResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackView.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackView.java index de36cf0f99d..d59d0ed54db 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackView.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PartStackView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/Perspective.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/Perspective.java index f4a1cafb008..1e1e014ed1a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/Perspective.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/Perspective.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PerspectiveManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PerspectiveManager.java index cfd6146c6f8..86c7caccd2d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PerspectiveManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PerspectiveManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PerspectiveView.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PerspectiveView.java index 368de3dd394..d24b623dd7a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PerspectiveView.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PerspectiveView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PropertyListener.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PropertyListener.java index 597ab1a2af0..0c1a0ebc5bb 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PropertyListener.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/PropertyListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/WorkspaceAgent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/WorkspaceAgent.java index 881434fb907..4f91223f8fa 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/WorkspaceAgent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/WorkspaceAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BaseActionDelegate.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BaseActionDelegate.java index e96226e8ad5..0b21ac03e0e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BaseActionDelegate.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BaseActionDelegate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts.base; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BasePresenter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BasePresenter.java index b3c9494a6c6..5fb5df222d6 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BasePresenter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BasePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts.base; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BaseView.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BaseView.java index d093ece9111..f3cd8921051 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BaseView.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/BaseView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts.base; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/MaximizePartEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/MaximizePartEvent.java index 7f4b1ebfc1e..1e18e3bab33 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/MaximizePartEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/MaximizePartEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts.base; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/ToolButton.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/ToolButton.java index 2555dc8f1d3..52cadc535ac 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/ToolButton.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/ToolButton.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.parts.base; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/ToolButton.ui.xml b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/ToolButton.ui.xml index 340ea3db10a..8134eec4905 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/ToolButton.ui.xml +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/parts/base/ToolButton.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/AbstractPreferencePagePresenter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/AbstractPreferencePagePresenter.java index 17986f62421..3c0c8156509 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/AbstractPreferencePagePresenter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/AbstractPreferencePagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.preferences; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/PreferencePagePresenter.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/PreferencePagePresenter.java index e31643260d7..9dbdbfa070f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/PreferencePagePresenter.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/PreferencePagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.preferences; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/PreferencesManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/PreferencesManager.java index 7715e13f6dd..b26ac7a1eb0 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/PreferencesManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/preferences/PreferencesManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.preferences; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/MutableProjectConfig.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/MutableProjectConfig.java index 312633f6164..c751847748c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/MutableProjectConfig.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/MutableProjectConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/NewProjectConfigImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/NewProjectConfigImpl.java index 7af85aa0c77..1a20e488154 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/NewProjectConfigImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/NewProjectConfigImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectImportersServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectImportersServiceClient.java index 818c20538d2..4eb1deb16a1 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectImportersServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectImportersServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectImportersServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectImportersServiceClientImpl.java index 6913c6a7872..1a3942d9d20 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectImportersServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectImportersServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectServiceClient.java index 31885b1ce09..06e8094f7ea 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectServiceClientImpl.java index d11adc82b67..b3d0d8b781b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTemplateServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTemplateServiceClient.java index ed0404a405f..999a09b1a3c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTemplateServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTemplateServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTemplateServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTemplateServiceClientImpl.java index cc2636172c3..c62715ae63e 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTemplateServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTemplateServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTypeServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTypeServiceClient.java index 0518ef03469..0f4f1a58777 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTypeServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTypeServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTypeServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTypeServiceClientImpl.java index 7b6414f6d46..494b429105b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTypeServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/ProjectTypeServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/QueryExpression.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/QueryExpression.java index 229b02b93be..9261e3c7da3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/QueryExpression.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/QueryExpression.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/ProjectTemplateRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/ProjectTemplateRegistry.java index 22776c827cd..1bd70aad7a5 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/ProjectTemplateRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/ProjectTemplateRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.type; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/ProjectTypeRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/ProjectTypeRegistry.java index 6494baf28a3..234b86b3205 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/ProjectTypeRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/ProjectTypeRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.type; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/PreSelectedProjectTypeManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/PreSelectedProjectTypeManager.java index 81d56dbb543..9463e1cf7ff 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/PreSelectedProjectTypeManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/PreSelectedProjectTypeManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.type.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardMode.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardMode.java index 01e5694f6bf..1dcb37ff98a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardMode.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardMode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.type.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardRegistrar.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardRegistrar.java index fa8b0b0b651..a2cf61b5952 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardRegistrar.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.type.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardRegistry.java index 109a17d4f56..c6ff1b1106b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/type/wizard/ProjectWizardRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.type.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportProjectNotificationSubscriberFactory.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportProjectNotificationSubscriberFactory.java index e5d25441135..9e0fa6e2d9d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportProjectNotificationSubscriberFactory.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportProjectNotificationSubscriberFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportWizardRegistrar.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportWizardRegistrar.java index 798317209cb..ecaa115b909 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportWizardRegistrar.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportWizardRegistry.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportWizardRegistry.java index cb7eaf5f82d..c787ae3688d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportWizardRegistry.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ImportWizardRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ProjectNotificationSubscriber.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ProjectNotificationSubscriber.java index 5cf04aff2bf..5207fe5a1e9 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ProjectNotificationSubscriber.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/project/wizard/ProjectNotificationSubscriber.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/recent/RecentList.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/recent/RecentList.java index a2cfeda724f..bcf15574783 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/recent/RecentList.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/recent/RecentList.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.recent; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/reference/FqnProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/reference/FqnProvider.java index 4ad400394f6..b828f17a55d 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/reference/FqnProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/reference/FqnProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.reference; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Container.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Container.java index 951d562ae55..de00b420bdc 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Container.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Container.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ExternalResourceDelta.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ExternalResourceDelta.java index 129f6e1a018..95504bb9855 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ExternalResourceDelta.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ExternalResourceDelta.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/File.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/File.java index 2613eb8693f..4b0f245ed06 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/File.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/File.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Folder.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Folder.java index 80e916de24f..6f784b3be7c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Folder.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Folder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ModificationTracker.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ModificationTracker.java index 52e64d61391..7b0ff5aca1c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ModificationTracker.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ModificationTracker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Project.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Project.java index f251dcc8a31..04221eec401 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Project.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Project.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/RenamingSupport.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/RenamingSupport.java index 921eba97a85..5f1f794f61a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/RenamingSupport.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/RenamingSupport.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Resource.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Resource.java index 5a075633723..46066f22964 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Resource.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/Resource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceChangedEvent.java index 6b621723a45..ae955fedcb2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceDelta.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceDelta.java index 167c16027d7..5cf02976890 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceDelta.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceDelta.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceInterceptor.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceInterceptor.java index 661e0380f54..8854c041e74 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceInterceptor.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceNameComparator.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceNameComparator.java index 5e7a0396162..b3e50fae98c 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceNameComparator.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourceNameComparator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourcePathComparator.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourcePathComparator.java index 3cef6f70e16..8f454712c4f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourcePathComparator.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/ResourcePathComparator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/SyntheticFile.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/SyntheticFile.java index e21205185cb..1b63806b414 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/SyntheticFile.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/SyntheticFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/VirtualFile.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/VirtualFile.java index 86e0914549d..f89ef6e47c4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/VirtualFile.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/VirtualFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/Marker.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/Marker.java index 1ddcf5e46ae..e6afb2150d8 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/Marker.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/Marker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources.marker; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/MarkerChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/MarkerChangedEvent.java index 8e51d83992e..9c69c26f886 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/MarkerChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/MarkerChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources.marker; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/PresentableTextMarker.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/PresentableTextMarker.java index a20b309dfce..375c50672eb 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/PresentableTextMarker.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/marker/PresentableTextMarker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources.marker; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/ClipboardManager.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/ClipboardManager.java index 60ad2faae3f..e2680de4af3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/ClipboardManager.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/ClipboardManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources.modification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CopyProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CopyProvider.java index 5010f487ff7..e831970a4b7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CopyProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CopyProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources.modification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CutProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CutProvider.java index 99b60d9ca94..0c203f890d3 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CutProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CutProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources.modification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CutResourceMarker.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CutResourceMarker.java index 07467a6ab96..013f60869f7 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CutResourceMarker.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/CutResourceMarker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources.modification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/PasteProvider.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/PasteProvider.java index e1aa36b29f6..4d74fed2bdf 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/PasteProvider.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/resources/modification/PasteProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.resources.modification; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/selection/Selection.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/selection/Selection.java index f57ca82d891..9a4cea9ceff 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/selection/Selection.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/selection/Selection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.selection; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/selection/SelectionAgent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/selection/SelectionAgent.java index 6a1202a6b67..6388b84be62 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/selection/SelectionAgent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/selection/SelectionAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.selection; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ssh/SshServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ssh/SshServiceClient.java index 6727ae7fa32..cb7eed5d667 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ssh/SshServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ssh/SshServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.ssh; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ssh/SshServiceClientImpl.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ssh/SshServiceClientImpl.java index f7dbe62178b..645ae3514e0 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ssh/SshServiceClientImpl.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ssh/SshServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.ssh; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/Style.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/Style.java index d9560805543..05ad5d4f9cf 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/Style.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/Style.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.theme; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/Theme.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/Theme.java index 5ff9a8bff7f..770cdf397a5 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/Theme.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/Theme.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.theme; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/ThemeAgent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/ThemeAgent.java index 0fd0b31e866..5a726a06600 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/ThemeAgent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/theme/ThemeAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.theme; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/AskCredentialsDialog.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/AskCredentialsDialog.java index d730b705c02..4b3414277ca 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/AskCredentialsDialog.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/AskCredentialsDialog.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ //TODO This is used in wizard/ProjectImporter, find a solution to move it to plugin-svn. package org.eclipse.che.ide.api.user; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/Credentials.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/Credentials.java index a48cf58229b..6bf6c8a6e4a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/Credentials.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/Credentials.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.user; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/PreferencesServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/PreferencesServiceClient.java index 7fe5c959a88..43ead4b2e28 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/PreferencesServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/PreferencesServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.user; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/UserProfileServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/UserProfileServiceClient.java index 9075f56a384..b252a92429b 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/UserProfileServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/UserProfileServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.user; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/UserServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/UserServiceClient.java index e43174c616c..a0f6dffaa17 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/UserServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/user/UserServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.user; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/AbstractWizard.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/AbstractWizard.java index ab3d92ba3ce..c1a144145db 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/AbstractWizard.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/AbstractWizard.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/AbstractWizardPage.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/AbstractWizardPage.java index d71be5e8a9f..7d820e44d53 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/AbstractWizardPage.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/AbstractWizardPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/Wizard.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/Wizard.java index 33236a3df87..d17570020db 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/Wizard.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/Wizard.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/WizardPage.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/WizardPage.java index d74ef376da1..0119aee35de 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/WizardPage.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/wizard/WizardPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.wizard; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/EnvironmentOutputMessageUnmarshaller.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/EnvironmentOutputMessageUnmarshaller.java index 741f3cb9620..78fdf45055a 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/EnvironmentOutputMessageUnmarshaller.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/EnvironmentOutputMessageUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/WorkspaceReadyEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/WorkspaceReadyEvent.java index 181d8a43502..eb171795292 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/WorkspaceReadyEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/WorkspaceReadyEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/WorkspaceServiceClient.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/WorkspaceServiceClient.java index 6b23040e514..5930f25b066 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/WorkspaceServiceClient.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/WorkspaceServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/EnvironmentOutputEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/EnvironmentOutputEvent.java index 0c3ca089a0c..a52eef260a4 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/EnvironmentOutputEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/EnvironmentOutputEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/MachineStatusChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/MachineStatusChangedEvent.java index 747b69b5d69..6b71c401782 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/MachineStatusChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/MachineStatusChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStartedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStartedEvent.java index 52bb3e47253..40cab9d6c3f 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStartedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStartedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStartingEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStartingEvent.java index 1a3ee9a4f4d..425edf20b24 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStartingEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStartingEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStatusChangedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStatusChangedEvent.java index a1a84b2af75..30b03871706 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStatusChangedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStatusChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace.event; diff --git a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStoppedEvent.java b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStoppedEvent.java index 30dc8bc96be..f2a0745dfb2 100644 --- a/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStoppedEvent.java +++ b/ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/workspace/event/WorkspaceStoppedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.workspace.event; diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/auth/Auth.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/auth/Auth.gwt.xml index b543964abf2..71d63a4cc5a 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/auth/Auth.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/auth/Auth.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/core/Core.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/core/Core.gwt.xml index d4087dabb50..9e8c6e3f527 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/core/Core.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/core/Core.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/core/model/Model.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/core/model/Model.gwt.xml index 2e95e8a4e26..d0f6b14e494 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/core/model/Model.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/core/model/Model.gwt.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/debug/Debug.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/debug/Debug.gwt.xml index 5e795f32c07..d70e39a085b 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/debug/Debug.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/debug/Debug.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/factory/Factory.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/factory/Factory.gwt.xml index 5e795f32c07..d70e39a085b 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/factory/Factory.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/factory/Factory.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/git/Git.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/git/Git.gwt.xml index 160d341c29f..81af82890ac 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/git/Git.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/git/Git.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/machine/Machine.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/machine/Machine.gwt.xml index c348d10ddb9..f31f5db9572 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/machine/Machine.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/machine/Machine.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/project/Project.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/project/Project.gwt.xml index 3bb7be5f31b..51f30cb3518 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/project/Project.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/project/Project.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/ssh/Ssh.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/ssh/Ssh.gwt.xml index de3b7b2636b..4d1e45754c5 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/ssh/Ssh.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/ssh/Ssh.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/testing/Testing.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/testing/Testing.gwt.xml index 5e795f32c07..d70e39a085b 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/testing/Testing.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/testing/Testing.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/user/User.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/user/User.gwt.xml index b543964abf2..71d63a4cc5a 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/user/User.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/user/User.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/workspace/Workspace.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/workspace/Workspace.gwt.xml index c66939c3621..f9e0228d207 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/workspace/Workspace.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/api/workspace/Workspace.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/Api.gwt.xml b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/Api.gwt.xml index 2ed43be7297..28e1fa7d126 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/Api.gwt.xml +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/Api.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/autocomplete/AutocompleteComponent.css b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/autocomplete/AutocompleteComponent.css index 246187fd2ea..1734d5fc1e4 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/autocomplete/AutocompleteComponent.css +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/autocomplete/AutocompleteComponent.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /* CSS for AutocompleteComponent.java */ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/editor/texteditor/Editor.css b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/editor/texteditor/Editor.css index 46142545809..a8083c61f3d 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/editor/texteditor/Editor.css +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/editor/texteditor/Editor.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external .annotation, .breakpoints; diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/arrow-bottom.svg b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/arrow-bottom.svg index 79c3905d174..5c284cf8992 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/arrow-bottom.svg +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/arrow-bottom.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/close-icon.svg b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/close-icon.svg index d553a130531..53660d380d2 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/close-icon.svg +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/close-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/collapse-expand-icon.svg b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/collapse-expand-icon.svg index 4e13361bb9c..6ed391ce2bf 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/collapse-expand-icon.svg +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/collapse-expand-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/erase.svg b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/erase.svg index dd905c21a80..e92abdcb556 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/erase.svg +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/erase.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/maximize-part.svg b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/maximize-part.svg index 87c44da7fdd..6ff2c57b37b 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/maximize-part.svg +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/maximize-part.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/partstack.css b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/partstack.css index fe399247de6..947296a3e1c 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/partstack.css +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/partstack.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .ide-PartStack-Tab { display: inline-block; diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/wrap-text.svg b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/wrap-text.svg index 4613cc04443..7cb9d3074b3 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/wrap-text.svg +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/parts/wrap-text.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/projectimporter/importer.css b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/projectimporter/importer.css index 5effbe0d928..6b99c9c4ac4 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/projectimporter/importer.css +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/projectimporter/importer.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .inputError { border-color: #ffe400; diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/ui/style.css b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/ui/style.css index c5dcf64fe46..d206ccc56ba 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/ui/style.css +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/ui/style.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /* Tabs */ diff --git a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/action/AbstractPerspectiveActionTest.java b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/action/AbstractPerspectiveActionTest.java index dee220cd37e..e2f2a1432f1 100644 --- a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/action/AbstractPerspectiveActionTest.java +++ b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/action/AbstractPerspectiveActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/action/DefaultActionGroupTest.java b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/action/DefaultActionGroupTest.java index 67bc68c884b..8cfafcf1863 100644 --- a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/action/DefaultActionGroupTest.java +++ b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/action/DefaultActionGroupTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.action; diff --git a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/editor/AnnotationIteratorTest.java b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/editor/AnnotationIteratorTest.java index 5fd159599a6..0b5efc65969 100644 --- a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/editor/AnnotationIteratorTest.java +++ b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/editor/AnnotationIteratorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor; diff --git a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/editor/changeintercept/changeintercept/CloseCStyleCommentChangeInterceptorTest.java b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/editor/changeintercept/changeintercept/CloseCStyleCommentChangeInterceptorTest.java index 71e6b2fd9fa..2c46f5a2f98 100644 --- a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/editor/changeintercept/changeintercept/CloseCStyleCommentChangeInterceptorTest.java +++ b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/editor/changeintercept/changeintercept/CloseCStyleCommentChangeInterceptorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.editor.changeintercept.changeintercept; diff --git a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/macro/BaseMacroTest.java b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/macro/BaseMacroTest.java index bbc8436cfbd..584d1099905 100644 --- a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/macro/BaseMacroTest.java +++ b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/macro/BaseMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.macro; diff --git a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/project/ProjectServiceClientImplTest.java b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/project/ProjectServiceClientImplTest.java index a945ac7f9da..41c7ac8001e 100644 --- a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/project/ProjectServiceClientImplTest.java +++ b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/project/ProjectServiceClientImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.project; diff --git a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/wizard/AbstractWizardPageTest.java b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/wizard/AbstractWizardPageTest.java index ea31c1b241e..68e5ab7d896 100644 --- a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/wizard/AbstractWizardPageTest.java +++ b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/wizard/AbstractWizardPageTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.wizard; diff --git a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/wizard/AbstractWizardTest.java b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/wizard/AbstractWizardTest.java index fbcbc019e93..d5b8a6e3efb 100644 --- a/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/wizard/AbstractWizardTest.java +++ b/ide/che-core-ide-api/src/test/java/org/eclipse/che/ide/api/wizard/AbstractWizardTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api.wizard; diff --git a/ide/che-core-ide-app/pom.xml b/ide/che-core-ide-app/pom.xml index cebde1666be..04b2b146b24 100644 --- a/ide/che-core-ide-app/pom.xml +++ b/ide/che-core-ide-app/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/CoreLocalizationConstant.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/CoreLocalizationConstant.java index 44322539ae0..c4e192117cc 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/CoreLocalizationConstant.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/CoreLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/Resources.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/Resources.java index 3f4209c0d32..6c99730dce5 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/Resources.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/Resources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ActionApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ActionApiModule.java index ddfa824cffe..0953d5eb904 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ActionApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ActionApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ActionManagerImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ActionManagerImpl.java index 2dcf3c77eef..7aca54aa784 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ActionManagerImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ActionManagerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/AddToFileWatcherExcludesAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/AddToFileWatcherExcludesAction.java index c85c4e35643..538a9657bf1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/AddToFileWatcherExcludesAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/AddToFileWatcherExcludesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CloseActiveEditorAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CloseActiveEditorAction.java index cdb31b64f54..13fc6ee13af 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CloseActiveEditorAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CloseActiveEditorAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CollapseAllAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CollapseAllAction.java index 29844611a39..870bda63e5a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CollapseAllAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CollapseAllAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CompleteAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CompleteAction.java index 9b6fb495229..2980770791d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CompleteAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CompleteAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ConvertFolderToProjectAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ConvertFolderToProjectAction.java index 92b95629a1e..b96e63056e3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ConvertFolderToProjectAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ConvertFolderToProjectAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CreateProjectAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CreateProjectAction.java index ab8931ac904..f877a4e969b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CreateProjectAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/CreateProjectAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DeleteResourceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DeleteResourceAction.java index 867b618d2ba..9e71ccf04a6 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DeleteResourceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DeleteResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadProjectAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadProjectAction.java index b7e3b4313de..1a2a6a222eb 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadProjectAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadProjectAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadResourceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadResourceAction.java index 3097a578c58..13865cd074b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadResourceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadWsAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadWsAction.java index b81aa4d18ea..4e51adad028 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadWsAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/DownloadWsAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/EditFileAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/EditFileAction.java index 410b71bfbb3..94a22a00ab3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/EditFileAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/EditFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/EditorActions.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/EditorActions.java index 4ef503e9699..ad2088c2774 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/EditorActions.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/EditorActions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ExpandEditorAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ExpandEditorAction.java index 820c61916c1..b36ed286fc1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ExpandEditorAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ExpandEditorAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/FormatterAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/FormatterAction.java index 7bab65f6cbd..1dd43ce42dd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/FormatterAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/FormatterAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/FullTextSearchAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/FullTextSearchAction.java index 1a76a48608d..29d7b1d3761 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/FullTextSearchAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/FullTextSearchAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/GoIntoAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/GoIntoAction.java index e32c7138897..ef31e1fd7d5 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/GoIntoAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/GoIntoAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/HotKeysListAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/HotKeysListAction.java index 9400585a1e5..6336611aaaa 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/HotKeysListAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/HotKeysListAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ImportProjectAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ImportProjectAction.java index 080d068b3a9..1177cb8ac52 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ImportProjectAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ImportProjectAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/LinkWithEditorAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/LinkWithEditorAction.java index 6b8c445a626..e2b3737a5fd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/LinkWithEditorAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/LinkWithEditorAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/NavigateToFileAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/NavigateToFileAction.java index e65960e4b2e..69f15e47367 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/NavigateToFileAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/NavigateToFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/OpenFileAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/OpenFileAction.java index 8bfd1661381..16bfb380e02 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/OpenFileAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/OpenFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ProjectConfigurationAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ProjectConfigurationAction.java index b9d1237df96..6e7bb9d93e1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ProjectConfigurationAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ProjectConfigurationAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RedoAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RedoAction.java index 8253fe20aa4..650a598e5c8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RedoAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RedoAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RefreshPathAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RefreshPathAction.java index f05b17a9a7e..8293b3d3e5a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RefreshPathAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RefreshPathAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RemoveFromFileWatcherExcludesAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RemoveFromFileWatcherExcludesAction.java index 1749eb39165..dea20bfd99d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RemoveFromFileWatcherExcludesAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RemoveFromFileWatcherExcludesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RenameItemAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RenameItemAction.java index 0fce8a6a2c9..753fd5ca36d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RenameItemAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RenameItemAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RunCommandAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RunCommandAction.java index 467dfa35505..a50e0fd7709 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RunCommandAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/RunCommandAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SaveAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SaveAction.java index 79368391545..5fd980c18d9 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SaveAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SaveAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SaveAllAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SaveAllAction.java index 2436ee40ab5..1fec47a730c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SaveAllAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SaveAllAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowConsoleTreeAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowConsoleTreeAction.java index 2e8404bbdf8..bb10666ba88 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowConsoleTreeAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowConsoleTreeAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowHiddenFilesAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowHiddenFilesAction.java index 23d8d37ad8d..b5e769d56db 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowHiddenFilesAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowHiddenFilesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowPreferencesAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowPreferencesAction.java index de97306db6c..0601c29f0d0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowPreferencesAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowPreferencesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowReferenceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowReferenceAction.java index d8c08425444..39e0a991181 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowReferenceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/ShowReferenceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SignatureHelpAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SignatureHelpAction.java index 25290e17e4b..d7494b3b530 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SignatureHelpAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SignatureHelpAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SoftWrapAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SoftWrapAction.java index 4f930539872..9bcb9272efe 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SoftWrapAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/SoftWrapAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/StopWorkspaceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/StopWorkspaceAction.java index 41b73a421da..932fdc351bc 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/StopWorkspaceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/StopWorkspaceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UndoAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UndoAction.java index 5169d6afe40..52d0c4a550e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UndoAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UndoAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UploadFileAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UploadFileAction.java index 944a65c2e72..1beaefe5670 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UploadFileAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UploadFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UploadFolderAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UploadFolderAction.java index cdb0ad61529..4280e1f73d4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UploadFolderAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/UploadFolderAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/WorkspaceSnapshotNotifier.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/WorkspaceSnapshotNotifier.java index cda7d21db34..012978e4865 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/WorkspaceSnapshotNotifier.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/WorkspaceSnapshotNotifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/CollapseTreeAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/CollapseTreeAction.java index 27c310aa4f5..deb146f1295 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/CollapseTreeAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/CollapseTreeAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.common; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/ExpandTreeAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/ExpandTreeAction.java index 66cf49eced1..e798b34f8f8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/ExpandTreeAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/ExpandTreeAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.common; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/MaximizePartAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/MaximizePartAction.java index 6d175d9b6cd..bf13be3c43f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/MaximizePartAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/MaximizePartAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.common; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/MinimizePartAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/MinimizePartAction.java index 110faf08f15..07b06cc5278 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/MinimizePartAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/MinimizePartAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.common; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/RestorePartAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/RestorePartAction.java index efbc1d6a9b3..b73f6b3c393 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/RestorePartAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/common/RestorePartAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.common; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionAction.java index e666ed034ea..a4f274c5675 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.find; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionPresenter.java index bbfbe65c82b..df402bcc9f9 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.find; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionView.java index 661e2b014c7..c9c3bd920e3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.find; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionViewImpl.java index 27f32b4d677..1ddbfaa7b57 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.find; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionViewImpl.ui.xml index eb85263d998..07512de265c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/actions/find/FindActionViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/EditorMessages.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/EditorMessages.java index 1a2400be14e..c368b4963e0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/EditorMessages.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/EditorMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/AbstractCommandEditorPage.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/AbstractCommandEditorPage.java index 3b08b5c8b23..7e098a2af4b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/AbstractCommandEditorPage.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/AbstractCommandEditorPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/CommandEditorPage.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/CommandEditorPage.java index dc296567317..2e72dbab0e9 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/CommandEditorPage.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/CommandEditorPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/commandline/CommandLinePage.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/commandline/CommandLinePage.java index 198036340a1..882a872fea0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/commandline/CommandLinePage.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/commandline/CommandLinePage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.commandline; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPage.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPage.java index 5682723cc33..b23fcb5da45 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPage.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageView.java index 24a8f43e9bc..68508c578cd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImpl.java index a2224dde601..3808a945b6e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImpl.ui.xml index 442ef9918ff..3f05418b3ea 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePage.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePage.java index 218d795df1f..bf2593c9184 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePage.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.name; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageView.java index 3c2c3c544c7..f184d0c07e6 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.name; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImpl.java index fa4c686d546..d8fdd188e62 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.name; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImpl.ui.xml index 9358a0c24e1..a53e2d637cb 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/previewurl/PreviewUrlPage.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/previewurl/PreviewUrlPage.java index 93bc7d1ba95..878fce07979 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/previewurl/PreviewUrlPage.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/previewurl/PreviewUrlPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.previewurl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcher.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcher.java index 2be85aa40dd..616e4830800 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcher.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcher.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcher.ui.xml index 69957fdd743..b15b35f4c27 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcher.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcher.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPage.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPage.java index ed6c454bf4b..7610f6acb0f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPage.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageView.java index 7cb8309c4cd..e459679f3b3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImpl.java index fe602d50ef4..cfede71c23e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImpl.ui.xml index 710a5af125f..3fbb96926ef 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/AbstractPageWithTextEditor.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/AbstractPageWithTextEditor.java index 4f2bd836f70..320747fb248 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/AbstractPageWithTextEditor.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/AbstractPageWithTextEditor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.text; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/EditorInputImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/EditorInputImpl.java index 1afa2195bc8..031320c1d1d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/EditorInputImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/EditorInputImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.text; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroCodeAssistProcessor.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroCodeAssistProcessor.java index 8b7652d3a04..7695de4c78f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroCodeAssistProcessor.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.text; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroCompletionProposal.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroCompletionProposal.java index 95fa5901abc..a9a19ec1e81 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroCompletionProposal.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroCompletionProposal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.text; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroEditorConfiguration.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroEditorConfiguration.java index 60419305982..968321c38c1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroEditorConfiguration.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/MacroEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.text; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorView.java index 0816b37d69e..b5541ce2ef3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.text; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorViewImpl.java index 2fa326d3d2d..bd25a464ada 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.text; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorViewImpl.ui.xml index 406b87287dd..09ee26372a6 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/editor/page/text/PageWithTextEditorViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/CommandExecutorImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/CommandExecutorImpl.java index 12891cf6c91..efb85d19456 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/CommandExecutorImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/CommandExecutorImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.execute; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/CommandsActionGroup.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/CommandsActionGroup.java index 26999f799c3..4bc41a53107 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/CommandsActionGroup.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/CommandsActionGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.execute; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecMessages.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecMessages.java index 71066376f2e..8749fdfdcb4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecMessages.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.execute; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandAction.java index 9eb3f81e2fa..af8770d7988 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.execute; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandActionFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandActionFactory.java index b61340a2cf2..903d6b113c0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandActionFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandActionFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.execute; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandActionManager.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandActionManager.java index 6e55f26f225..cc9002c0319 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandActionManager.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/ExecuteCommandActionManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.execute; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/GoalPopUpGroup.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/GoalPopUpGroup.java index 28cd7664e1d..dbea793776f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/GoalPopUpGroup.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/GoalPopUpGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.execute; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/GoalPopUpGroupFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/GoalPopUpGroupFactory.java index aa51db6baf5..f7dea012867 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/GoalPopUpGroupFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/execute/GoalPopUpGroupFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.execute; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerPresenter.java index 12c4810e0f2..684deeee6ae 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.explorer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerView.java index a4bd7bb0f4e..90a85615b67 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.explorer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerViewImpl.java index 7656f6fcd80..d4bed0fc140 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.explorer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerViewImpl.ui.xml index c565a1d31b6..69e6f67ebad 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsExplorerViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsTreeRenderer.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsTreeRenderer.java index 59963b42e26..47ada94de1c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsTreeRenderer.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/CommandsTreeRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.explorer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/ExplorerMessages.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/ExplorerMessages.java index 8126e15d9fa..26517fe5142 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/ExplorerMessages.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/explorer/ExplorerMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.explorer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/BuildGoal.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/BuildGoal.java index 85d88abd5c8..42a5d6ae7ee 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/BuildGoal.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/BuildGoal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/CommandGoalRegistryImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/CommandGoalRegistryImpl.java index 2573930088f..0b687bb6352 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/CommandGoalRegistryImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/CommandGoalRegistryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/CommonGoal.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/CommonGoal.java index 1dcc880193d..a54a4eff22f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/CommonGoal.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/CommonGoal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/DebugGoal.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/DebugGoal.java index c988451013c..96738210c0f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/DebugGoal.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/DebugGoal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/DeployGoal.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/DeployGoal.java index a4694cc5365..e5674a305de 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/DeployGoal.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/DeployGoal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/GoalMessages.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/GoalMessages.java index 93b12fd9782..92d64656c9f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/GoalMessages.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/GoalMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/RunGoal.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/RunGoal.java index 7b5dd34da63..363ca29270b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/RunGoal.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/RunGoal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/TestGoal.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/TestGoal.java index 87c6354c456..07ca0bc6c05 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/TestGoal.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/goal/TestGoal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.goal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/CommandManagerImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/CommandManagerImpl.java index 96770a99b02..db6528c507c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/CommandManagerImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/CommandManagerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.manager; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/CommandNameGenerator.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/CommandNameGenerator.java index b32df1cfc1b..0b6b92a7a3e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/CommandNameGenerator.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/CommandNameGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.manager; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/ProjectCommandManagerDelegate.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/ProjectCommandManagerDelegate.java index f64bc15c63b..76b5e61d60b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/ProjectCommandManagerDelegate.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/ProjectCommandManagerDelegate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.manager; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/WorkspaceCommandManagerDelegate.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/WorkspaceCommandManagerDelegate.java index 7dfe27d1e66..5412dbd1748 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/WorkspaceCommandManagerDelegate.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/manager/WorkspaceCommandManagerDelegate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.manager; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/AbstractCommandNode.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/AbstractCommandNode.java index 432992bf2dd..469c19c2626 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/AbstractCommandNode.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/AbstractCommandNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.node; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/CommandFileNode.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/CommandFileNode.java index f096ab2faa1..7c96e9a3a2e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/CommandFileNode.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/CommandFileNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.node; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/CommandGoalNode.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/CommandGoalNode.java index aebde397743..a60875426ff 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/CommandGoalNode.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/CommandGoalNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.node; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/ExecutableCommandNode.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/ExecutableCommandNode.java index cde81f59eb6..3acc07bd22f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/ExecutableCommandNode.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/ExecutableCommandNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.node; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/NodeFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/NodeFactory.java index 8bda3339d12..04accd681ec 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/NodeFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/node/NodeFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.node; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPalettePresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPalettePresenter.java index 0016a44fc17..493f9d53272 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPalettePresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPalettePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.palette; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteView.java index 532a55a24eb..8bd8b692755 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.palette; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteViewImpl.java index 539e13d6b32..1a244351bda 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.palette; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteViewImpl.ui.xml index 6b6470aae3c..52723fef636 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/CommandsPaletteViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/PaletteMessages.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/PaletteMessages.java index af6007d3e63..b66d26fc643 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/PaletteMessages.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/PaletteMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.palette; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/ShowCommandsPaletteAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/ShowCommandsPaletteAction.java index 8625bfc7cf0..f09cc3abfac 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/ShowCommandsPaletteAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/palette/ShowCommandsPaletteAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.palette; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerAction.java index 312dbc9a7b6..a5772c8cb31 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.producer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerActionFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerActionFactory.java index 29c13bb38fc..b8109b9d6c0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerActionFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerActionFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.producer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerActionManager.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerActionManager.java index 219f9c9e150..b933d233cd5 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerActionManager.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/CommandProducerActionManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.producer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/ProducerMessages.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/ProducerMessages.java index 503ba298ad4..9a09744f230 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/ProducerMessages.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/producer/ProducerMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.producer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandCreationGuide.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandCreationGuide.java index 53e23fcd1d9..612e18a4a18 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandCreationGuide.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandCreationGuide.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarPresenter.java index 45dc24e6d32..de134fc86e0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarView.java index de97a2eb29b..66d65f3b758 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarViewImpl.java index 187223bbf04..1f6d0e5d4fe 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarViewImpl.ui.xml index 5c5f3fda6e5..7e9a594d84b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/command/toolbar/CommandToolbarViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/AppContextImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/AppContextImpl.java index 1b2b0ad84e9..d8a7cbfe56d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/AppContextImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/AppContextImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.context; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/BrowserAddress.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/BrowserAddress.java index 160f4b2361e..5f94bab5bd2 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/BrowserAddress.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/BrowserAddress.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.context; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/QueryParameters.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/QueryParameters.java index f6456af34e1..c2b88668429 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/QueryParameters.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/context/QueryParameters.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.context; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/ClientServerEventModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/ClientServerEventModule.java index fa9649845d0..5dde584fa1c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/ClientServerEventModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/ClientServerEventModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.core; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/CoreGinModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/CoreGinModule.java index 716ed4733a2..fd3389f4832 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/CoreGinModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/CoreGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.core; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/FontAwesomeInjector.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/FontAwesomeInjector.java index 57248930548..47d6e50750b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/FontAwesomeInjector.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/FontAwesomeInjector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.core; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/JsonRpcModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/JsonRpcModule.java index 5c694c15194..5a411679013 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/JsonRpcModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/JsonRpcModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.core; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/StandardComponent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/StandardComponent.java index 6c9c527b1a3..94b3c08898b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/StandardComponent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/StandardComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.core; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/StandardComponentInitializer.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/StandardComponentInitializer.java index a3e6f5cad43..121698d42c2 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/StandardComponentInitializer.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/StandardComponentInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.core; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/UiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/UiModule.java index d0ee18f4419..bafba31f671 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/UiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/UiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.core; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/WebSocketModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/WebSocketModule.java index eedad24e167..55299cfde1b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/WebSocketModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/core/WebSocketModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.core; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointManagerImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointManagerImpl.java index eb73d8579a1..1653244e9b4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointManagerImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointManagerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointRendererImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointRendererImpl.java index 34a9a984be2..544f5026a1f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointRendererImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointRendererImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointResources.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointResources.java index 2932b207446..71c1c2f34c3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointResources.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointStorageImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointStorageImpl.java index 4a6be30032d..118d1449123 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointStorageImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/BreakpointStorageImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebugApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebugApiModule.java index a6451e05fee..304700e14d2 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebugApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebugApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/Debugger.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/Debugger.java index e193c203780..73bf65a9938 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/Debugger.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/Debugger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerDescriptor.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerDescriptor.java index db5a70e21b6..7d038909d55 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerDescriptor.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManager.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManager.java index 9418922fe83..9372728c60c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManager.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManagerObservable.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManagerObservable.java index eb68fcfe494..789b3dc10ae 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManagerObservable.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManagerObservable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManagerObserver.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManagerObserver.java index 665b2686b8a..12aa1a238d2 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManagerObserver.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerManagerObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerObservable.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerObservable.java index f7be37dc049..469496be836 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerObservable.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerObservable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerObserver.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerObserver.java index c3c8f19cb8d..5b9391c7acd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerObserver.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/debug/DebuggerObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.debug; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/download/DownloadContainer.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/download/DownloadContainer.java index d1c8d4d9c35..305c3d0f5ad 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/download/DownloadContainer.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/download/DownloadContainer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.download; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorAgentImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorAgentImpl.java index 8e5535096ec..2a019422242 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorAgentImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorAgentImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorApiModule.java index b85b3200c04..1cfb570a8c1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorInputImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorInputImpl.java index 6c70c53db7b..8263f4aab43 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorInputImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorInputImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorRegistryImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorRegistryImpl.java index 117cb63c742..07c6ebdff67 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorRegistryImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/EditorRegistryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/ResourceProvider.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/ResourceProvider.java index 4f6782d3956..0830b46dad4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/ResourceProvider.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/ResourceProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/autosave/AutoSaveModeImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/autosave/AutoSaveModeImpl.java index 78564059cb4..763ccbc2e8d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/autosave/AutoSaveModeImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/autosave/AutoSaveModeImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.autosave; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/codeassist/AdditionalInformationWidget.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/codeassist/AdditionalInformationWidget.java index a412464b6d6..950b9c63528 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/codeassist/AdditionalInformationWidget.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/codeassist/AdditionalInformationWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.codeassist; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/AbstractEditorMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/AbstractEditorMacro.java index b2fb68b7b09..55f55a66dae 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/AbstractEditorMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/AbstractEditorMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileBaseNameMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileBaseNameMacro.java index 020fef63bf4..23bc2b6e0be 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileBaseNameMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileBaseNameMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileNameMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileNameMacro.java index 3a0585711d6..29e3edb2975 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileNameMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileNameMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFilePathMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFilePathMacro.java index 62884470083..c2c332228c4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFilePathMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFilePathMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileRelativePathMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileRelativePathMacro.java index 442c78a1c75..911831f7eea 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileRelativePathMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileRelativePathMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectNameMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectNameMacro.java index 325db0fc440..f00adb78e62 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectNameMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectNameMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectTypeMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectTypeMacro.java index 21edbe2ca1c..df20853cc29 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectTypeMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectTypeMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPrefLocalizationConstant.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPrefLocalizationConstant.java index 0f48b69054c..99ca6454d56 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPrefLocalizationConstant.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPrefLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferencePresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferencePresenter.java index b7679e9589c..173cdf47432 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferencePresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferencePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceSection.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceSection.java index 47c24035002..984ffb8f6cd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceSection.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceSection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceView.java index 48d3c9ed37d..b7ff9905d29 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceViewImpl.java index dba011cccf1..0bd6e1667e6 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceViewImpl.ui.xml index 58493d91bb3..c5ac379a5c3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/preferences/EditorPreferenceViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/texteditor/infopanel/InfoPanel.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/texteditor/infopanel/InfoPanel.java index 598b6332c0a..ace5ceb093e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/texteditor/infopanel/InfoPanel.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/texteditor/infopanel/InfoPanel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.texteditor.infopanel; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/texteditor/infopanel/InfoPanel.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/texteditor/infopanel/InfoPanel.ui.xml index 9cecb84d9ca..306ef1f2f05 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/texteditor/infopanel/InfoPanel.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/editor/texteditor/infopanel/InfoPanel.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryExtension.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryExtension.java index 8b7c8875820..37c4b7027d6 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryExtension.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryResources.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryResources.java index 80e31cab802..f01505f4dd8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryResources.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryServiceClientImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryServiceClientImpl.java index 79b75f90451..80a3ada309d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryServiceClientImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/FactoryServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/accept/AcceptFactoryHandler.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/accept/AcceptFactoryHandler.java index b1d015acc0a..19cc813962b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/accept/AcceptFactoryHandler.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/accept/AcceptFactoryHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.accept; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/action/CreateFactoryAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/action/CreateFactoryAction.java index 0694ede6a2b..19c89d3e92e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/action/CreateFactoryAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/action/CreateFactoryAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.action; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryPresenter.java index 221833780d2..b4ac4463ad4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.configure; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryView.java index ab3168e9eb4..c6a908c8500 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.configure; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryViewImpl.java index 09ca6192342..35d3613544b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.configure; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryViewImpl.ui.xml index 03bffd8a9db..85270a59574 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/configure/CreateFactoryViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/inject/FactoryGinModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/inject/FactoryGinModule.java index df627ec8326..64c59a921f7 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/inject/FactoryGinModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/inject/FactoryGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.inject; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigAction.java index 2e8af1d3903..a4be12d1bc0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.json; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigPresenter.java index b99b5173926..fda7ed7a02a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.json; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigView.java index ce99ca956b6..0c95e534fb0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.json; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigViewImpl.java index aea7ba3a4e2..cb4e509fae9 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.json; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigViewImpl.ui.xml index d4b9c90dd1c..91ba6e94671 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/json/ImportFromConfigViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/utils/FactoryProjectImporter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/utils/FactoryProjectImporter.java index 782407defa9..d188d7ad667 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/utils/FactoryProjectImporter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/utils/FactoryProjectImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.utils; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/utils/InitialProjectImporter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/utils/InitialProjectImporter.java index e83541b7bab..da201a9147e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/utils/InitialProjectImporter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/utils/InitialProjectImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.utils; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartPresenter.java index 6a027c3e9cb..77b58d04992 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.welcome; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartView.java index 9d55603248d..28f361b3f33 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.welcome; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartViewImpl.java index 39e626b49d1..a5a4aeef6bc 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/GreetingPartViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.welcome; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/OpenWelcomePageAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/OpenWelcomePageAction.java index c4bba6b8fc8..b8113d5c483 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/OpenWelcomePageAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/OpenWelcomePageAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.welcome; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/TooltipHint.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/TooltipHint.java index 5723d903b35..1af734f3b30 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/TooltipHint.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/TooltipHint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.welcome; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/TooltipHint.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/TooltipHint.ui.xml index e4e48dbf54a..cb57fdcf00a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/TooltipHint.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/TooltipHint.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePagePresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePagePresenter.java index fbacc76845e..53896cda85b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePagePresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.welcome.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageView.java index 0c78e547098..5fc467f8ddc 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.welcome.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageViewImpl.java index 0bbd507f93c..8593ec805e7 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.factory.welcome.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageViewImpl.ui.xml index 9e135003266..199f588c2bd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/factory/welcome/preferences/ShowWelcomePreferencePageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/icon/DefaultIconsComponent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/icon/DefaultIconsComponent.java index 578bacc3033..cb7ab42f730 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/icon/DefaultIconsComponent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/icon/DefaultIconsComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.icon; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/icon/IconRegistryImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/icon/IconRegistryImpl.java index a03de3e606d..a2d2c9cefb3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/icon/IconRegistryImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/icon/IconRegistryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.icon; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewer.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewer.java index ade2bfb19a9..ff7589dc647 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewer.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.imageviewer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewerProvider.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewerProvider.java index 7c38a418ae9..25199a779f3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewerProvider.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewerProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.imageviewer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewerResources.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewerResources.java index dbb25921e26..18f5c1fc430 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewerResources.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/ImageViewerResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.imageviewer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/PreviewImageAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/PreviewImageAction.java index 02dcc758b0d..20db9cd8666 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/PreviewImageAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/imageviewer/PreviewImageAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.imageviewer; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/keybinding/KeyBindingManager.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/keybinding/KeyBindingManager.java index 8f4c88bafc0..1ca8a5625ff 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/keybinding/KeyBindingManager.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/keybinding/KeyBindingManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.keybinding; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/keybinding/SchemeImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/keybinding/SchemeImpl.java index 9bdbed8e240..f02fecad8d8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/keybinding/SchemeImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/keybinding/SchemeImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.keybinding; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineApiModule.java index 472557d1eb8..4b5e3ecb30a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineItem.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineItem.java index 04ce937b150..2b5e34fbb9a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineItem.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineResources.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineResources.java index 406f8d64e91..12c81645868 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineResources.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineStatusHandler.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineStatusHandler.java index 2c17640fc10..57971a8fd83 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineStatusHandler.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/MachineStatusHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/RecipeScriptDownloadServiceClient.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/RecipeScriptDownloadServiceClient.java index f5ca98da615..4d868d5600a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/RecipeScriptDownloadServiceClient.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/RecipeScriptDownloadServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/RecipeScriptDownloadServiceClientImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/RecipeScriptDownloadServiceClientImpl.java index e02f233cd5c..4fe8e0c6242 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/RecipeScriptDownloadServiceClientImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/RecipeScriptDownloadServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooser.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooser.java index e60a2e8745e..98a4f434e65 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooser.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine.chooser; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserView.java index ed14fca7b1d..3ec8a9fd661 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine.chooser; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserViewImpl.java index e48ae24d8c0..74b93eb619b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine.chooser; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserViewImpl.ui.xml index b06459afd1c..73a9fcef649 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/machine/chooser/MachineChooserViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/ContextMenu.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/ContextMenu.java index bb9d292f311..0a9ba1297fc 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/ContextMenu.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/ContextMenu.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuPresenter.java index 5ac15987ccb..a92245beebb 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuView.java index 88d5fcbfeef..85bae3743cb 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuViewImpl.java index 0a6659734ac..8c8d2e38b70 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MainMenuViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MenuBarItem.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MenuBarItem.java index 936517e0ad3..820b213d572 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MenuBarItem.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MenuBarItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MenuResources.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MenuResources.java index 0af1c9d98e3..79ca790f01a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MenuResources.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/MenuResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/PartMenu.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/PartMenu.java index a57a524325b..558fd0b5d1b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/PartMenu.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/PartMenu.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupPresenter.java index 20147d6b373..5d3520e16a4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupView.java index 2da771319ca..504f9d9d642 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupViewImpl.java index caa12c808cd..b10791a4d80 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/menu/StatusPanelGroupViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.menu; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFilePresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFilePresenter.java index 3145c062333..2356188de81 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFilePresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFilePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.navigation; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileView.java index 33a47e31a12..153f359afc1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.navigation; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileViewImpl.java index 0fdf2535ace..34ad6bbb90f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.navigation; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileViewImpl.ui.xml index 1528a07679d..43b76ab430e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/navigation/NavigateToFileViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/AbstractNewResourceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/AbstractNewResourceAction.java index 817654bcc1c..c5f18062b6b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/AbstractNewResourceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/AbstractNewResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.newresource; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/NewFileAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/NewFileAction.java index 839baac4876..93c33da5164 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/NewFileAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/NewFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.newresource; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/NewFolderAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/NewFolderAction.java index 9157eea9085..fa1bd852d48 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/NewFolderAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/newresource/NewFolderAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.newresource; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationApiModule.java index 2cd9644eff7..e5b855ea24d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.notification; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationContainer.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationContainer.java index b8422fa7615..b6062bd7e32 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationContainer.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationContainer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.notification; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationContainerItem.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationContainerItem.java index 5eacb4557b5..0072adcffa1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationContainerItem.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationContainerItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.notification; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerImpl.java index b291e3b4673..eb3473061dd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.notification; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerView.java index 476cc3a16c7..16d0511062e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.notification; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerViewImpl.java index 79ed13a50f0..6c276afbde9 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.notification; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerViewImpl.ui.xml index c7768bf0462..234784dd640 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/notification/NotificationManagerViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EditorTabContextMenu.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EditorTabContextMenu.java index 30887ca7d76..13a61d596b3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EditorTabContextMenu.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EditorTabContextMenu.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EditorTabContextMenuFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EditorTabContextMenuFactory.java index 3ffe550fed7..6267da39722 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EditorTabContextMenuFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EditorTabContextMenuFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EmptyEditorsPanel.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EmptyEditorsPanel.java index c6a46ac6660..ae0d7cedb4e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EmptyEditorsPanel.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EmptyEditorsPanel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.editor; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EmptyEditorsPanel.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EmptyEditorsPanel.ui.xml index d3f83a233af..f6515a193cc 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EmptyEditorsPanel.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/editor/EmptyEditorsPanel.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/TreeResourceRevealer.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/TreeResourceRevealer.java index 9f58dda44d8..5adfbae1a98 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/TreeResourceRevealer.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/TreeResourceRevealer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileBaseNameMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileBaseNameMacro.java index 51156d70ce2..315b976cf58 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileBaseNameMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileBaseNameMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileNameMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileNameMacro.java index e2a4c745356..6336f28a17b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileNameMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileNameMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileParentPathMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileParentPathMacro.java index 50385cb1bf9..b8d969b3099 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileParentPathMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileParentPathMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFilePathMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFilePathMacro.java index db2e858dd4e..897d906cd8d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFilePathMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFilePathMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileRelativePathMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileRelativePathMacro.java index d5618e0d7bc..b9612a8a664 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileRelativePathMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileRelativePathMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectNameMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectNameMacro.java index b7704162228..cd6659862bd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectNameMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectNameMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectTypeMacro.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectTypeMacro.java index 51b02963dc6..69464b394c4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectTypeMacro.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectTypeMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/synchronize/ChangeLocationWidget.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/synchronize/ChangeLocationWidget.java index a2c928baa84..214b04f6f23 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/synchronize/ChangeLocationWidget.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/synchronize/ChangeLocationWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.synchronize; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/synchronize/ProjectConfigSynchronized.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/synchronize/ProjectConfigSynchronized.java index e4dabde3952..7a7738990ce 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/synchronize/ProjectConfigSynchronized.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/explorer/project/synchronize/ProjectConfigSynchronized.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.synchronize; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/TabItemFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/TabItemFactory.java index 5ad50a09b55..090347212da 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/TabItemFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/TabItemFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.widgets; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidget.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidget.java index aaf87d2f448..27fa8510dca 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidget.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.widgets.editortab; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidget.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidget.ui.xml index 4d1647468be..7a0051d891e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidget.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidget.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/StyleInjector.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/StyleInjector.java index 8c7a51201c8..be526272722 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/StyleInjector.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/StyleInjector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.preferences; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearancePresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearancePresenter.java index e211566bae3..5a5d1a02eff 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearancePresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearancePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.preferences.pages.appearance; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceView.java index 42bb7cfec0c..5a7d918ced8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.preferences.pages.appearance; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceViewImpl.java index f060b1edd2c..ba20afa75c4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.preferences.pages.appearance; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceViewImpl.ui.xml index 93d772f4700..109ef567f9a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/preferences/pages/appearance/AppearanceViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelPresenter.java index ffb08e9d0b8..7e6d9af0fc8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.processes.panel; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelView.java index 429b174a084..429accad2ae 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.processes.panel; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelViewImpl.java index 1d86c0213f5..5127d2c1264 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.processes.panel; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelViewImpl.ui.xml index 63a3b75f5c7..c0ab787d7fb 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/processes/panel/ProcessesPanelViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ProjectApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ProjectApiModule.java index f0f7611259a..c8d518e09b7 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ProjectApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ProjectApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolder.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolder.java index 83642bc55f4..198bad4ce15 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolder.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolderRegistry.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolderRegistry.java index ce5d876c4a7..035321a421c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolderRegistry.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolderRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolderRegistryImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolderRegistryImpl.java index 38866495239..52b11c119c6 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolderRegistryImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/ResolvingProjectStateHolderRegistryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/SyntheticNode.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/SyntheticNode.java index adbffb81839..ac182dd2d4a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/SyntheticNode.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/SyntheticNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project.node; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/SyntheticNodeUpdateEvent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/SyntheticNodeUpdateEvent.java index fd8c5f59b6f..4fc67c17fdf 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/SyntheticNodeUpdateEvent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/SyntheticNodeUpdateEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project.node; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/DockerfileIconProvider.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/DockerfileIconProvider.java index 91d5ac7c0d7..02ee2a22c02 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/DockerfileIconProvider.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/DockerfileIconProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project.node.icon; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/FileIconProvider.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/FileIconProvider.java index 88c419eb7b8..18b1298f8d3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/FileIconProvider.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/FileIconProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project.node.icon; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/NodeIconProvider.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/NodeIconProvider.java index a5658e781b5..13b1ea169b4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/NodeIconProvider.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/node/icon/NodeIconProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project.node.icon; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/shared/NodesResources.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/shared/NodesResources.java index 3147cae99b4..547b5bb45c9 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/shared/NodesResources.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/project/shared/NodesResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.project.shared; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImportModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImportModule.java index 79e1e8a8762..984be2e798c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImportModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImportModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImportNotificationSubscriber.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImportNotificationSubscriber.java index 4dc2f3d1cd8..f570f5551e8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImportNotificationSubscriber.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImportNotificationSubscriber.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImporterResource.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImporterResource.java index 3739b78e8bb..2ad95a9c69a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImporterResource.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/ProjectImporterResource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizard.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizard.java index 861f8806cfd..a374d384999 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizard.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizard.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardFactory.java index 345f3bf2887..3d564b08bbe 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardRegistryImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardRegistryImpl.java index 1fda68b4dd1..01566d52dee 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardRegistryImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardRegistryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectImportOutputJsonRpcNotifier.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectImportOutputJsonRpcNotifier.java index 76bff5c8936..ec077e20301 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectImportOutputJsonRpcNotifier.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectImportOutputJsonRpcNotifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectImporter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectImporter.java index 388c4eda366..b24ff941109 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectImporter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectNotificationSubscriberImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectNotificationSubscriberImpl.java index a1ab89ed2f4..1af31db68c0 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectNotificationSubscriberImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectNotificationSubscriberImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectResolver.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectResolver.java index d27cd7a814c..22cfe9f1fc2 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectResolver.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/ProjectResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPagePresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPagePresenter.java index 8dd00851227..9c010ff1bb7 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPagePresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard.mainpage; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageView.java index 72c4ae6771c..cb43df7bd67 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard.mainpage; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageViewImpl.java index aa9ecb23991..f9c8f9c0163 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard.mainpage; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageViewImpl.ui.xml index 53f6b519b18..b4cc06ed29b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/projectimport/wizard/mainpage/MainPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/DeleteResourceManager.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/DeleteResourceManager.java index f2ebc56bc6a..5a15cd2fe55 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/DeleteResourceManager.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/DeleteResourceManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceApiModule.java index f4437b75531..4eb3fa78ec7 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceManagerComponent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceManagerComponent.java index e81250e90ea..4518b3aac2c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceManagerComponent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceManagerComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceManagerInitializer.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceManagerInitializer.java index 999fac16cec..1e306c5d1e7 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceManagerInitializer.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/ResourceManagerInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/CopyResourceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/CopyResourceAction.java index 137a4895597..cead517915f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/CopyResourceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/CopyResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.action; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/CutResourceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/CutResourceAction.java index c226f6c8bbd..7dc70d7fb00 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/CutResourceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/CutResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.action; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/PasteResourceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/PasteResourceAction.java index b352cfb9f0e..a36f9ece5db 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/PasteResourceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/PasteResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.action; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/RevealResourceAction.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/RevealResourceAction.java index bfd5b53b69a..d4d952cacac 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/RevealResourceAction.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/action/RevealResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.action; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ClipboardManagerImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ClipboardManagerImpl.java index 36feec5b096..608d780a2aa 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ClipboardManagerImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ClipboardManagerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ContainerImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ContainerImpl.java index f8834986e8d..59f7f686cfd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ContainerImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ContainerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/CopyPasteManager.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/CopyPasteManager.java index 9a8556e3804..1e56ad63737 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/CopyPasteManager.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/CopyPasteManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/FileImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/FileImpl.java index e01f0cfa74b..5b1ddba58bf 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/FileImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/FileImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/FolderImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/FolderImpl.java index 228f01ec838..b3bcc54ce6f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/FolderImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/FolderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/InMemoryResourceStore.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/InMemoryResourceStore.java index 46fd51808eb..047b4cd40af 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/InMemoryResourceStore.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/InMemoryResourceStore.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ProjectImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ProjectImpl.java index 79e78f677e2..7ddab490381 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ProjectImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ProjectImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceDeltaImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceDeltaImpl.java index 47e774c5835..bf85a1f0c79 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceDeltaImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceDeltaImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceImpl.java index d054e811cda..1ac3ac6ed47 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceManager.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceManager.java index 5d17b842ec3..5a9c5f61da3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceManager.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceStore.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceStore.java index 6cd541da8b6..7954caf53c8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceStore.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/impl/ResourceStore.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.impl; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/reveal/RevealResourceEvent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/reveal/RevealResourceEvent.java index 6645d5a5901..e4d00305617 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/reveal/RevealResourceEvent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/reveal/RevealResourceEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.reveal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathPresenter.java index 267943fd5bf..658a317009d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.selector; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathView.java index b28c67db322..e62bcf1ee9c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.selector; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathViewImpl.java index 6698f08326a..8b3c357d585 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resources.selector; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathViewImpl.ui.xml index 04b78d3e40a..7295e9c476e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/resources/selector/SelectPathViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/factory/FindResultNodeFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/factory/FindResultNodeFactory.java index 95cf90f93d3..b93f709c325 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/factory/FindResultNodeFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/factory/FindResultNodeFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.factory; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultGroupNode.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultGroupNode.java index 5eea630ece0..a97efd0a776 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultGroupNode.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultGroupNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.presentation; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultPresenter.java index f0c088df663..ad1bd03a5e5 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.presentation; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultView.java index e90f9f2f5fe..cf59555d806 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.presentation; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultViewImpl.java index 4106ec7ef24..a0b8a03cb88 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/presentation/FindResultViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.presentation; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/FolderNodeInterceptor.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/FolderNodeInterceptor.java index 50227b0209d..006e5451c5f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/FolderNodeInterceptor.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/FolderNodeInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.selectpath; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathPresenter.java index 54ba20c92f3..6e5339e5797 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.selectpath; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathView.java index d237c18dc4a..62fe341c2ec 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.selectpath; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathViewImpl.java index 05f8ad3029d..8b1249018e2 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.selectpath; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathViewImpl.ui.xml index f588a2e2d1a..f2d20891bf9 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/search/selectpath/SelectPathViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/selection/SelectionAgentImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/selection/SelectionAgentImpl.java index ba1474a439a..5443d8d3d60 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/selection/SelectionAgentImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/selection/SelectionAgentImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.selection; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/statepersistance/AppStateManager.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/statepersistance/AppStateManager.java index 1a353981e2a..ac29f074c4a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/statepersistance/AppStateManager.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/statepersistance/AppStateManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.statepersistance; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/statepersistance/PersistenceApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/statepersistance/PersistenceApiModule.java index d058dadd63c..51415670226 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/statepersistance/PersistenceApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/statepersistance/PersistenceApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.statepersistance; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/AddTerminalClickHandler.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/AddTerminalClickHandler.java index 00d330f597c..1b6ca9af7f4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/AddTerminalClickHandler.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/AddTerminalClickHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/CustomKeyDownTerminalHandler.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/CustomKeyDownTerminalHandler.java index 13a581af4d5..22b9812ad3a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/CustomKeyDownTerminalHandler.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/CustomKeyDownTerminalHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/HasAddTerminalClickHandler.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/HasAddTerminalClickHandler.java index 478274bdd19..5be2d8001b8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/HasAddTerminalClickHandler.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/HasAddTerminalClickHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalFactory.java index 7aae12a483c..5f9cc2ed8c5 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalGeometryJso.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalGeometryJso.java index 30ee9dab19d..125437e865f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalGeometryJso.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalGeometryJso.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalInitializePromiseHolder.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalInitializePromiseHolder.java index 6aed6bc3ecc..eedc6295e90 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalInitializePromiseHolder.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalInitializePromiseHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalInitializer.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalInitializer.java index ada21c29b1d..e6df2786aca 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalInitializer.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalJso.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalJso.java index 8225faa5302..7713a2fa6e3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalJso.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalJso.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalOptionsJso.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalOptionsJso.java index 6cb741e858e..0b3593a4e60 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalOptionsJso.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalOptionsJso.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalPresenter.java index 342dd476070..104aea98563 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalView.java index b8a24ed7b05..9dd630cb35f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalViewImpl.java index 2f59013eb18..2ca172caf29 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalViewImpl.ui.xml index 09682feeca0..f4028e50a8a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/terminal/TerminalViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipPresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipPresenter.java index f768f9e722e..3e1d1b2d300 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipPresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.upload.folder; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipView.java index f694bef50db..a2787960d27 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.upload.folder; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipViewImpl.java index 981b827c83b..71663b3fe9f 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.upload.folder; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipViewImpl.ui.xml index 52cbe02ae6d..56ef329134b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/upload/folder/UploadFolderFromZipViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/AskCredentialsDialogImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/AskCredentialsDialogImpl.java index e16c5f112ff..7f4b413da9d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/AskCredentialsDialogImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/AskCredentialsDialogImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.user; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/AskCredentialsDialogImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/AskCredentialsDialogImpl.ui.xml index e961c748ff8..ba87df32f6e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/AskCredentialsDialogImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/AskCredentialsDialogImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/ProfileComponent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/ProfileComponent.java index 348cbc22b9f..a031b565ec3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/ProfileComponent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/ProfileComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.user; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserApiModule.java index 2e30ee77227..b2348dfff1c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.user; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserProfileServiceClientImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserProfileServiceClientImpl.java index 3cb91606db5..ab966ae3116 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserProfileServiceClientImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserProfileServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.user; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserServiceClientImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserServiceClientImpl.java index e119e29ea93..b9552247df1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserServiceClientImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/user/UserServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.user; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/DefaultWorkspaceComponent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/DefaultWorkspaceComponent.java index 6af7d83ab1e..6854c495485 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/DefaultWorkspaceComponent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/DefaultWorkspaceComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/FactoryWorkspaceComponent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/FactoryWorkspaceComponent.java index 9abd6941083..67f883914cc 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/FactoryWorkspaceComponent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/FactoryWorkspaceComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/PartStackPresenterFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/PartStackPresenterFactory.java index b12a3271400..209dbe892d5 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/PartStackPresenterFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/PartStackPresenterFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/PartStackViewFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/PartStackViewFactory.java index 91f5931b6b7..8245964f3bd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/PartStackViewFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/PartStackViewFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchControllerFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchControllerFactory.java index ee219c39bb7..7b735c3e5d8 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchControllerFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchControllerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchPartController.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchPartController.java index dc96ba46ec2..429a73e9c3e 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchPartController.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchPartController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchPartControllerImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchPartControllerImpl.java index 7cfc1a0d0b8..b12da446836 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchPartControllerImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchPartControllerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchResources.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchResources.java index fce96f2c721..4e8774d498c 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchResources.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkBenchResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceApiModule.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceApiModule.java index 12bcbf0230c..06e9b4fbf89 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceApiModule.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceComponent.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceComponent.java index 51d77e3d249..3ee58da51db 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceComponent.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceComponentProvider.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceComponentProvider.java index 656b86de594..85126a82f56 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceComponentProvider.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceComponentProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceEventsHandler.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceEventsHandler.java index 555b0f20d46..68f34d672f3 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceEventsHandler.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceEventsHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceImpl.java index fdf3e326473..59ba5916de4 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspacePresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspacePresenter.java index ce1ac8254af..f4592cfaf67 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspacePresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspacePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceServiceClientImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceServiceClientImpl.java index 5e33fb33eba..8b9b263580d 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceServiceClientImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceView.java index 7cea0f27e00..0648827db0b 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceViewImpl.java index 6a806fafe8b..9a390d1ca73 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceViewImpl.ui.xml index d54e9a073c0..bb7b076edfd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceWidgetFactory.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceWidgetFactory.java index aa2438df3b8..53bf6867b99 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceWidgetFactory.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/WorkspaceWidgetFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspacePresenter.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspacePresenter.java index b996f2122c6..e98ed1b5365 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspacePresenter.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspacePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.create; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceView.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceView.java index 087d75943bb..d058b6f0aa1 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceView.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.create; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImpl.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImpl.java index cca52182853..9483db25291 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImpl.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.create; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImpl.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImpl.ui.xml index d88d5304bad..514a0bf827a 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImpl.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/perspectives/project/ProjectPerspective.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/perspectives/project/ProjectPerspective.java index 0d38815a184..2c16dc90739 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/perspectives/project/ProjectPerspective.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/perspectives/project/ProjectPerspective.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.perspectives.project; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/start/StartWorkspaceNotification.java b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/start/StartWorkspaceNotification.java index 480b9b6a4c0..a2761aa3b51 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/start/StartWorkspaceNotification.java +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/start/StartWorkspaceNotification.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.start; diff --git a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/start/StartWorkspaceNotification.ui.xml b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/start/StartWorkspaceNotification.ui.xml index efe5f68030a..d13cf29c4cd 100644 --- a/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/start/StartWorkspaceNotification.ui.xml +++ b/ide/che-core-ide-app/src/main/java/org/eclipse/che/ide/workspace/start/StartWorkspaceNotification.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/CoreLocalizationConstant.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/CoreLocalizationConstant.properties index 210338d810d..66ddd7af186 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/CoreLocalizationConstant.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/CoreLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ############### CreateProjectFromTemplateForm ############### diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/about/AboutLocalizationConstant.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/about/AboutLocalizationConstant.properties index 03836e3b7ad..18986568694 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/about/AboutLocalizationConstant.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/about/AboutLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # about.view.title = About Codenvy diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/about.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/about.svg index 4b115391716..59df622e6fe 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/about.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/about.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/copy.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/copy.svg index acbe02bacb0..1f75689e1ab 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/copy.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/copy.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/cut.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/cut.svg index be977c098d3..24fda2d63b2 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/cut.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/cut.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/delete.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/delete.svg index ca1a33bc8d2..1ef20e1b19a 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/delete.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/delete.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/evaluate.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/evaluate.svg index 541f5bb8021..57ab944b312 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/evaluate.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/evaluate.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/find-actions.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/find-actions.svg index 8992ff98cc4..5520459ef0f 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/find-actions.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/find-actions.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/find.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/find.svg index abc35dea8f1..2151366d6a8 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/find.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/find.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/format.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/format.svg index 0e57a67db81..8b760c67eb1 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/format.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/format.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/fullscreen-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/fullscreen-icon.svg index 8b163b42d53..b851cee2efd 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/fullscreen-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/fullscreen-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/importGroup.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/importGroup.svg index 23853067006..02d300b45c9 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/importGroup.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/importGroup.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/importProjectFromLocation.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/importProjectFromLocation.svg index 095be3f544e..237b397d1ef 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/importProjectFromLocation.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/importProjectFromLocation.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/navigate-to-file.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/navigate-to-file.svg index b0dd647b79f..4078bcd40df 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/navigate-to-file.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/navigate-to-file.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/new-resource.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/new-resource.svg index 1c0b96bf2cc..0ca4d092c36 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/new-resource.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/new-resource.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/newProject.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/newProject.svg index c9464805496..4cf5a2dc4ae 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/newProject.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/newProject.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/paste.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/paste.svg index fbe52933c64..cbfe242e970 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/paste.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/paste.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/preferences.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/preferences.svg index 7ef529e25d0..0071de0cd0c 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/preferences.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/preferences.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/project-configuration.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/project-configuration.svg index 2d18ed0435f..e9abebd3b4a 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/project-configuration.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/project-configuration.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/redo.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/redo.svg index 9dcfac84fdb..a26b92056c4 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/redo.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/redo.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/refresh.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/refresh.svg index 39c324bf523..cbf99e44895 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/refresh.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/refresh.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/rename.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/rename.svg index e552072c51f..76f2e2eefe5 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/rename.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/rename.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/save.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/save.svg index 81eadebc656..ce30e5c3894 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/save.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/save.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/showHiddenFiles.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/showHiddenFiles.svg index 57f300424bd..97a47168d6b 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/showHiddenFiles.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/showHiddenFiles.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/undo.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/undo.svg index bf325cb2d57..45f0bf0a6a9 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/undo.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/undo.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/upload-file.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/upload-file.svg index 628f52ad12e..7b5ac844d5f 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/upload-file.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/upload-file.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/zip-folder.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/zip-folder.svg index aee4059ebf3..b40be7947c1 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/zip-folder.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/actions/zip-folder.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/blank.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/blank.svg index 8a6fd65f4ba..68fb8d3d03b 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/blank.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/blank.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/editor/EditorMessages.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/editor/EditorMessages.properties index e18f58f2918..2eec011aa66 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/editor/EditorMessages.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/editor/EditorMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # editor.description=Che Command Editor diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/editor/styles.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/editor/styles.css index 9a8c767d2d0..4dfa27943ce 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/editor/styles.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/editor/styles.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .sectionLabel { margin: 8px 0 8px 20px; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/execute/ExecMessages.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/execute/ExecMessages.properties index 7fea81b51b6..4878ce88404 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/execute/ExecMessages.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/execute/ExecMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # action.commands.title=Commands diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/ExplorerMessages.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/ExplorerMessages.properties index 1a3663871f2..97df0b03c47 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/ExplorerMessages.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/ExplorerMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # explorer.part.title=Commands diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/add-command-button.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/add-command-button.svg index f1fa87a6ec5..1fab74c901f 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/add-command-button.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/add-command-button.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/duplicate-command-button.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/duplicate-command-button.svg index f8187656e4e..0d20a28f4a6 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/duplicate-command-button.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/duplicate-command-button.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/remove-command-button.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/remove-command-button.svg index 35695a0c37e..9873e16293f 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/remove-command-button.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/explorer/remove-command-button.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/palette/PaletteMessages.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/palette/PaletteMessages.properties index 54be7ac5494..c0b75dc2299 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/palette/PaletteMessages.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/palette/PaletteMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # action.show_palette.title=Commands Palette diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/palette/styles.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/palette/styles.css index 8a966883391..bb294f0cf4a 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/palette/styles.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/palette/styles.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @url magnifierIcon magnifier; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/producer/ProducerMessages.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/producer/ProducerMessages.properties index 8eaf120c81f..f7d51547ead 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/producer/ProducerMessages.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/producer/ProducerMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # action.commands.title=Commands diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/ToolbarMessages.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/ToolbarMessages.properties index cd362495abe..04ffe0c7937 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/ToolbarMessages.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/ToolbarMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # guide.label=Create {0} command diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/button.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/button.css index caf6bf7f408..d464d3dd5e5 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/button.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/button.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .button { width: 32px; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/processes/styles.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/processes/styles.css index 50abd1e7243..ba5673fd684 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/processes/styles.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/toolbar/processes/styles.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .toolbarButton { float: left; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/type/CommandTypeMessages.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/type/CommandTypeMessages.properties index 1e000280919..f9a458151a2 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/type/CommandTypeMessages.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/type/CommandTypeMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # type.registry.message.already_registered=Command type with ID {0} is already registered diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/type/styles.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/type/styles.css index 8aa746a155d..ae2c20e0727 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/type/styles.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/command/type/styles.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .chooserPopup { background-color: textFieldBackgroundColor; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/console/clear.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/console/clear.svg index 7876422a3d5..23828620b82 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/console/clear.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/console/clear.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/debug/breakpoint.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/debug/breakpoint.css index f8961df29cd..b8cfffa3c9e 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/debug/breakpoint.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/debug/breakpoint.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external *; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/default.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/default.svg index 2de6c1f3c2d..af667ee022b 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/default.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/default.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/file.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/file.svg index c70da33db04..f29acc9b16a 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/file.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/file.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/folder.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/folder.svg index 116082295e1..bff617244ff 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/folder.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/folder.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/image-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/image-icon.svg index 7e4d8a4cee9..264e353f9eb 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/image-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/image-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/json.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/json.svg index 61605bf90c2..8c3e9b3e916 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/json.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/json.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/md.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/md.svg index 7944c60ef39..b2dcd764f68 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/md.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/md.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/project.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/project.svg index 69c6dbf18bd..970d97ee8c4 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/project.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/project.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/projectFolder.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/projectFolder.svg index 917ab695381..cca34c0d050 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/projectFolder.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/defaulticons/projectFolder.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/editor/preferences/EditorPrefLocalizationConstant.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/editor/preferences/EditorPrefLocalizationConstant.properties index 17bad4b4b47..95c54963a28 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/editor/preferences/EditorPrefLocalizationConstant.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/editor/preferences/EditorPrefLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/Factory.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/Factory.css index e5bf1695d2b..fc267544390 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/Factory.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/Factory.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval errorColor org.eclipse.che.ide.api.theme.Style.getErrorColor(); diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/cog-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/cog-icon.svg index 3b5ba7ca00f..b897df093d0 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/cog-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/cog-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/execute.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/execute.svg index f6ad839a036..48c5155f7ea 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/execute.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/execute.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/export-config.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/export-config.svg index df10b6055b7..c42e370a037 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/export-config.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/factory/export-config.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/hotkeys/print_template.html b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/hotkeys/print_template.html index 0ee12707ef1..a1caa27ecea 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/hotkeys/print_template.html +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/hotkeys/print_template.html @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/imageviewer/imageViewer.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/imageviewer/imageViewer.css index ad1673bb793..9658b2d1806 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/imageviewer/imageViewer.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/imageviewer/imageViewer.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /* Annotated CSS for the Editor presenter. */ @url background imageViewerBackground; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/console/clear-logs.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/console/clear-logs.svg index 6d0c700a10b..d944e84e6c3 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/console/clear-logs.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/console/clear-logs.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/cube.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/cube.svg index 6e0e8e57970..256d32627ba 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/cube.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/cube.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/edit-commands.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/edit-commands.svg index cc591560b67..91d79a3801c 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/edit-commands.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/edit-commands.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/machine.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/machine.css index b7c529e19e2..d1053d040ca 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/machine.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/machine.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval categoryHeaderButtonColor org.eclipse.che.ide.api.theme.Style.theme.categoryHeaderButtonColor(); @eval editorTabIconColor org.eclipse.che.ide.api.theme.Style.getEditorTabIconColor(); diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/add-terminal.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/add-terminal.svg index 147480ba014..b24a60b6bab 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/add-terminal.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/add-terminal.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/clear-outputs.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/clear-outputs.svg index 5fdb38c0b7a..589514fc452 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/clear-outputs.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/clear-outputs.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/line-wrap.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/line-wrap.svg index c1e638cf60e..e243a11d415 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/line-wrap.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/line-wrap.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/output-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/output-icon.svg index b7827ad447e..1ef4e733045 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/output-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/output-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/re-run.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/re-run.svg index 020524a1080..1e48dfcd215 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/re-run.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/re-run.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/scroll-to-bottom.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/scroll-to-bottom.svg index 9030e1f33fb..b019f3ec3ed 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/scroll-to-bottom.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/scroll-to-bottom.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/stop.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/stop.svg index 7476a8e1661..fad0d375c29 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/stop.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/stop.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/terminal-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/terminal-icon.svg index 88eb9cc94a8..c31aeed766a 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/terminal-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/terminal-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/terminal-tree-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/terminal-tree-icon.svg index ab1e797ac2c..c59b285c673 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/terminal-tree-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/process/terminal-tree-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/project-perspective.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/project-perspective.svg index 1ec943b4ecb..0af0ec6eb25 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/project-perspective.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/machine/project-perspective.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/menu/menu.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/menu/menu.css index 68b99d97c20..f5110dbff0b 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/menu/menu.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/menu/menu.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .menuBarTable { float: left; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/menu/submenu.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/menu/submenu.svg index 0d9d5585644..ea61a4c46d1 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/menu/submenu.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/menu/submenu.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/fail.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/fail.svg index 2dbeeddbbe1..79b5ac95ad7 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/fail.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/fail.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/notification.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/notification.css index 6baeacc29c9..8bb3cff62a5 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/notification.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/notification.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval notificationPopupSuccessBackground org.eclipse.che.ide.api.theme.Style.theme.notificationPopupSuccessBackground(); @eval notificationPopupFailBackground org.eclipse.che.ide.api.theme.Style.theme.notificationPopupFailBackground(); diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/progress.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/progress.svg index e7d3d9d72bd..876e30c8170 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/progress.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/progress.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/success.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/success.svg index 93e3a1863b3..92ca9c4bc5d 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/success.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/success.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/warning.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/warning.svg index 2dbeeddbbe1..79b5ac95ad7 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/warning.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/notification/warning.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/che-logo.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/che-logo.svg index d37c67c6870..e00eecadef6 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/che-logo.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/che-logo.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/output-part-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/output-part-icon.svg index fb9fcaec354..42a28290196 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/output-part-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/output-part-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/project-explorer-part-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/project-explorer-part-icon.svg index b541c9906fc..e105868ef4b 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/project-explorer-part-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/part/project-explorer-part-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/node/icon/dockerfile.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/node/icon/dockerfile.svg index 1a69bf4d413..1eb4c7117c7 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/node/icon/dockerfile.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/node/icon/dockerfile.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/properties/ProjectExplorerLocalizationConstant.properties b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/properties/ProjectExplorerLocalizationConstant.properties index c07978dc6cb..d5f1eac1663 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/properties/ProjectExplorerLocalizationConstant.properties +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/properties/ProjectExplorerLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # project.properties.view.title=Project Properties diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/file.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/file.svg index c70da33db04..f29acc9b16a 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/file.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/file.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/hiddenSimpleFolder.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/hiddenSimpleFolder.svg index 726ed709dad..23752f3af15 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/hiddenSimpleFolder.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/hiddenSimpleFolder.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/notValidProjectFolder.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/notValidProjectFolder.svg index 8f73b4037e4..b32bb21cec0 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/notValidProjectFolder.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/notValidProjectFolder.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/projectFolder.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/projectFolder.svg index 917ab695381..cca34c0d050 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/projectFolder.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/projectFolder.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/simpleFolder.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/simpleFolder.svg index 06f74920b27..1c992bbc817 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/simpleFolder.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/project/shared/simpleFolder.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projectimport/ImporterPage.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projectimport/ImporterPage.css index b7a38f542fe..f42a5edf0ff 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projectimport/ImporterPage.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projectimport/ImporterPage.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external .inputError; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projecttype/wizard/Wizard.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projecttype/wizard/Wizard.css index f271bf989a3..e3eb0a889dd 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projecttype/wizard/Wizard.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projecttype/wizard/Wizard.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .inputError { border-color: error !important; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projecttype/wizard/categoriespage/MainPage.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projecttype/wizard/categoriespage/MainPage.css index caf763e96cd..e46a1b4f638 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projecttype/wizard/categoriespage/MainPage.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/projecttype/wizard/categoriespage/MainPage.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external .inputError; diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/resources/selector/pathSelector.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/resources/selector/pathSelector.css index 2d5b63154c8..da0c882c90b 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/resources/selector/pathSelector.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/resources/selector/pathSelector.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval windowFooterBorderColor org.eclipse.che.ide.api.theme.Style.getWindowFooterBorderColor(); diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/texteditor/multi-file-icon.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/texteditor/multi-file-icon.svg index 4c76cff94e8..25b2b3c8821 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/texteditor/multi-file-icon.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/texteditor/multi-file-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/workspace/perspectives/general/WorkBench.css b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/workspace/perspectives/general/WorkBench.css index a45e85af920..4f2e7c222a8 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/workspace/perspectives/general/WorkBench.css +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/workspace/perspectives/general/WorkBench.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /******************************************************************************* * diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/workspace/recipe.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/workspace/recipe.svg index 3dfbddf30a8..9ef99c7d5b1 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/workspace/recipe.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/workspace/recipe.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/xml/xml.svg b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/xml/xml.svg index af162ca8915..bdac8f7ae8b 100644 --- a/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/xml/xml.svg +++ b/ide/che-core-ide-app/src/main/resources/org/eclipse/che/ide/xml/xml.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ActionManagerTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ActionManagerTest.java index 27a32cf9f7d..5e18aafb529 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ActionManagerTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ActionManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ConvertFolderToProjectActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ConvertFolderToProjectActionTest.java index f41999364d6..4149338c2dc 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ConvertFolderToProjectActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ConvertFolderToProjectActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/DefaultGroupTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/DefaultGroupTest.java index f111cfcfe91..8e1e3798a28 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/DefaultGroupTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/DefaultGroupTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/DownloadWsActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/DownloadWsActionTest.java index ae234be0390..7410fa15cee 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/DownloadWsActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/DownloadWsActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/FullTextSearchActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/FullTextSearchActionTest.java index 10490ce5f36..0e3a17eace9 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/FullTextSearchActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/FullTextSearchActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/LinkWithEditorActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/LinkWithEditorActionTest.java index 535d36567af..2413a046ab0 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/LinkWithEditorActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/LinkWithEditorActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/RenameItemActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/RenameItemActionTest.java index c4338726f5a..72354db7496 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/RenameItemActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/RenameItemActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/RunCommandActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/RunCommandActionTest.java index dd175379ea6..9349e98d67b 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/RunCommandActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/RunCommandActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ShowReferenceActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ShowReferenceActionTest.java index 51927aa347a..957171ecfc9 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ShowReferenceActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/ShowReferenceActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/StopWorkspaceActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/StopWorkspaceActionTest.java index 2c4934d4a91..7e934ad5169 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/StopWorkspaceActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/StopWorkspaceActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/WorkspaceSnapshotNotifierTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/WorkspaceSnapshotNotifierTest.java index ea329d0b345..8915a08dd44 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/WorkspaceSnapshotNotifierTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/WorkspaceSnapshotNotifierTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/common/CollapseTreeActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/common/CollapseTreeActionTest.java index c0967ee77f4..8d8be6dccea 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/common/CollapseTreeActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/common/CollapseTreeActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.common; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/common/ExpandTreeActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/common/ExpandTreeActionTest.java index c0bd9b9558c..96c47a14bd4 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/common/ExpandTreeActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/actions/common/ExpandTreeActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.actions.common; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/client/StartUpActionsParserTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/client/StartUpActionsParserTest.java index 67fd9d6ce61..7b7d34f13fb 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/client/StartUpActionsParserTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/client/StartUpActionsParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.client; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/CommandEditorProviderTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/CommandEditorProviderTest.java index 81117fd5f02..7f505a2addd 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/CommandEditorProviderTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/CommandEditorProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/CommandEditorTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/CommandEditorTest.java index 98bd9056f90..e1e1f16ab09 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/CommandEditorTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/CommandEditorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageTest.java index fcca9866485..421bee55ace 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.goal; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImplTest.java index cd19739b39e..80d685bbaa3 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/goal/GoalPageViewImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.goal; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/name/NamePageTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/name/NamePageTest.java index 58c06004a8f..bd9f6c75568 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/name/NamePageTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/name/NamePageTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.name; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImplTest.java index 84ff1831f6d..8428ed5f7c0 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/name/NamePageViewImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.name; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcherTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcherTest.java index 56f8582c102..b69369ea00e 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcherTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectSwitcherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.project; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageTest.java index 0c5e15469a5..63bf7ed774d 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.project; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImplTest.java index 9142e92f013..ead959ad168 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/editor/page/project/ProjectsPageViewImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.editor.page.project; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/explorer/CommandsExplorerPresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/explorer/CommandsExplorerPresenterTest.java index 967207c83f2..80c919f04b8 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/explorer/CommandsExplorerPresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/explorer/CommandsExplorerPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.explorer; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/palette/CommandsPalettePresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/palette/CommandsPalettePresenterTest.java index 3fe5870e09b..845b0e1545f 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/palette/CommandsPalettePresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/palette/CommandsPalettePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.palette; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/palette/ShowCommandsPaletteActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/palette/ShowCommandsPaletteActionTest.java index 59ef0f041d1..12665ac791d 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/palette/ShowCommandsPaletteActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/palette/ShowCommandsPaletteActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.palette; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/ExecuteCommandPresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/ExecuteCommandPresenterTest.java index 07c32252dd1..9ea3fbcc7ee 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/ExecuteCommandPresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/ExecuteCommandPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar.commands; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/AbstractMenuItemTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/AbstractMenuItemTest.java index 841fc00bd6d..286d6e38073 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/AbstractMenuItemTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/AbstractMenuItemTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar.commands.button; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/CommandItemTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/CommandItemTest.java index 607eff34f61..137c5650e45 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/CommandItemTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/CommandItemTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar.commands.button; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/ExecuteCommandButtonItemsProviderTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/ExecuteCommandButtonItemsProviderTest.java index 3f497791016..3487cf00079 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/ExecuteCommandButtonItemsProviderTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/ExecuteCommandButtonItemsProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar.commands.button; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/MachineItemTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/MachineItemTest.java index f2a730fcc7d..36cfc87aa09 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/MachineItemTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/commands/button/MachineItemTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar.commands.button; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/previews/PreviewUrlTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/previews/PreviewUrlTest.java index e9a8360cc9e..60a4c96f55b 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/previews/PreviewUrlTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/toolbar/previews/PreviewUrlTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.toolbar.previews; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/type/custom/CustomCommandTypeTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/type/custom/CustomCommandTypeTest.java index 289ed443a44..0701098b1d4 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/type/custom/CustomCommandTypeTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/type/custom/CustomCommandTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.type.custom; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/type/custom/CustomPagePresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/type/custom/CustomPagePresenterTest.java index ff6b9c8888e..0b80968d6c5 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/type/custom/CustomPagePresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/command/type/custom/CustomPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.command.type.custom; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/AbstractEditorMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/AbstractEditorMacroTest.java index 80c368fab51..d8065354bce 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/AbstractEditorMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/AbstractEditorMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileBaseNameMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileBaseNameMacroTest.java index ecf99d887d6..44f3085fc9f 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileBaseNameMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileBaseNameMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileNameMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileNameMacroTest.java index 7bcacdb7d0c..cc9ea487f4d 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileNameMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileNameMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFilePathMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFilePathMacroTest.java index 3021b7f2d58..836221ac187 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFilePathMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFilePathMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileRelativePathMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileRelativePathMacroTest.java index af8633e5b68..fa0c71e7ba0 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileRelativePathMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentFileRelativePathMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectNameMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectNameMacroTest.java index 8d119661cc3..42ef012b3f7 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectNameMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectNameMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectTypeMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectTypeMacroTest.java index f4c2880d4bc..d3216701939 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectTypeMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/macro/EditorCurrentProjectTypeMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/synchronization/EditorContentSynchronizerImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/synchronization/EditorContentSynchronizerImplTest.java index 7639c5d445a..c159f19b24c 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/synchronization/EditorContentSynchronizerImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/synchronization/EditorContentSynchronizerImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.synchronization; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/synchronization/EditorGroupSynchronizationImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/synchronization/EditorGroupSynchronizationImplTest.java index 810be8a3019..c683062360f 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/synchronization/EditorGroupSynchronizationImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/editor/synchronization/EditorGroupSynchronizationImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.synchronization; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/keybinding/KeyBindingManagerTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/keybinding/KeyBindingManagerTest.java index 425e65a72e0..f83884d291a 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/keybinding/KeyBindingManagerTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/keybinding/KeyBindingManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.keybinding; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/machine/MachineItemTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/machine/MachineItemTest.java index c8d5f806535..2e8d955790c 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/machine/MachineItemTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/machine/MachineItemTest.java @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + *******************************************************************************/ package org.eclipse.che.ide.machine; /******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/machine/MachineStatusHandlerTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/machine/MachineStatusHandlerTest.java index aab304f069e..f0b0f63b824 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/machine/MachineStatusHandlerTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/machine/MachineStatusHandlerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.machine; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerHostNameMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerHostNameMacroTest.java index f11a3fd9a6a..a978fa284c7 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerHostNameMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerHostNameMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerMacroTest.java index eb47c498061..aeaadef84e7 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerPortMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerPortMacroTest.java index f8e3b2cc92b..580a015b708 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerPortMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerPortMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerProtocolMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerProtocolMacroTest.java index a9ee5d6459e..643d2f230d5 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerProtocolMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/macro/ServerProtocolMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/navigation/NavigateToFilePresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/navigation/NavigateToFilePresenterTest.java index 737a33e4161..0602cdefe2a 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/navigation/NavigateToFilePresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/navigation/NavigateToFilePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.navigation; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/newresource/AbstractNewResourceActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/newresource/AbstractNewResourceActionTest.java index 551576d52bb..a6cfc6abcc3 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/newresource/AbstractNewResourceActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/newresource/AbstractNewResourceActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.newresource; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/newresource/NewFolderActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/newresource/NewFolderActionTest.java index b31ed5ea626..c816dd18fe8 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/newresource/NewFolderActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/newresource/NewFolderActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.newresource; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/notification/NotificationManagerImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/notification/NotificationManagerImplTest.java index 303877804ca..509dab221b7 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/notification/NotificationManagerImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/notification/NotificationManagerImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.notification; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/PartStackPresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/PartStackPresenterTest.java index 433e6dff260..91c0a35c4c9 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/PartStackPresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/PartStackPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/PartStackViewImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/PartStackViewImplTest.java index 1a2256ed798..524a3e36f1a 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/PartStackViewImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/PartStackViewImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/TestFocusManager.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/TestFocusManager.java index 199f0a7532d..f382029ba60 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/TestFocusManager.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/TestFocusManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/editor/EditorPartStackPresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/editor/EditorPartStackPresenterTest.java index 8659dce4ae7..c8b57bf2a11 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/editor/EditorPartStackPresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/editor/EditorPartStackPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.editor; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/editor/multipart/EditorMultiPartStackPresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/editor/multipart/EditorMultiPartStackPresenterTest.java index 060ace3a16f..a5864197bf1 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/editor/multipart/EditorMultiPartStackPresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/editor/multipart/EditorMultiPartStackPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.editor.multipart; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/AbstractExplorerMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/AbstractExplorerMacroTest.java index 55094e950a6..0ebdbb4f788 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/AbstractExplorerMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/AbstractExplorerMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileBaseNameMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileBaseNameMacroTest.java index 124c450c8be..cbcdc9d76a7 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileBaseNameMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileBaseNameMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileNameMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileNameMacroTest.java index 3b8cbe31af9..d80b1a51367 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileNameMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileNameMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileParentPathMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileParentPathMacroTest.java index a72230711a7..91fa8242df1 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileParentPathMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileParentPathMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFilePathMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFilePathMacroTest.java index d5dbfd96b30..7bc64931b46 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFilePathMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFilePathMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileRelativePathMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileRelativePathMacroTest.java index 076fa3fc0b8..4f6a5f27bb3 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileRelativePathMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentFileRelativePathMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectNameMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectNameMacroTest.java index 9d7ce3546da..6134d661299 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectNameMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectNameMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectTypeMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectTypeMacroTest.java index d2b23320077..745407e7632 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectTypeMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/macro/ExplorerCurrentProjectTypeMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/synchronize/ChangeLocationWidgetTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/synchronize/ChangeLocationWidgetTest.java index f3a6eeb4cf6..a708bebd892 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/synchronize/ChangeLocationWidgetTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/synchronize/ChangeLocationWidgetTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.synchronize; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/synchronize/ProjectConfigSynchronizedTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/synchronize/ProjectConfigSynchronizedTest.java index 2ff7dcf46f9..82dec76109e 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/synchronize/ProjectConfigSynchronizedTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/explorer/project/synchronize/ProjectConfigSynchronizedTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.explorer.project.synchronize; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidgetTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidgetTest.java index 28820a9fbca..8639b351599 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidgetTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/widgets/editortab/EditorTabWidgetTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.widgets.editortab; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/widgets/partbutton/PartButtonWidgetTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/widgets/partbutton/PartButtonWidgetTest.java index 75cbea25fc1..8c70cc9ebb0 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/widgets/partbutton/PartButtonWidgetTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/part/widgets/partbutton/PartButtonWidgetTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.part.widgets.partbutton; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/processes/NewTerminalActionTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/processes/NewTerminalActionTest.java index 4aa899ae699..29064a3fb22 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/processes/NewTerminalActionTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/processes/NewTerminalActionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.processes; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardTest.java index 90194994722..8d190a6a199 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ImportWizardTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ProjectImportOutputJsonRpcNotifierTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ProjectImportOutputJsonRpcNotifierTest.java index a1fea87d97e..647fa77ec0f 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ProjectImportOutputJsonRpcNotifierTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ProjectImportOutputJsonRpcNotifierTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ProjectImporterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ProjectImporterTest.java index 828c9f423ce..399e727254a 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ProjectImporterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/wizard/ProjectImporterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.wizard; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/zip/ZipImporterPagePresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/zip/ZipImporterPagePresenterTest.java index 8ac69de898b..4e24412ada8 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/zip/ZipImporterPagePresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projectimport/zip/ZipImporterPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projectimport.zip; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/BlankProjectWizardRegistrarTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/BlankProjectWizardRegistrarTest.java index da79c3a0ebe..cb5939eae04 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/BlankProjectWizardRegistrarTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/BlankProjectWizardRegistrarTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projecttype; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/wizard/PreSelectedProjectTypeManagerImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/wizard/PreSelectedProjectTypeManagerImplTest.java index 47d31992de3..0094d1393a4 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/wizard/PreSelectedProjectTypeManagerImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/wizard/PreSelectedProjectTypeManagerImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projecttype.wizard; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/wizard/ProjectWizardTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/wizard/ProjectWizardTest.java index 1f9a8da21fa..235ef361013 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/wizard/ProjectWizardTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/projecttype/wizard/ProjectWizardTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.projecttype.wizard; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/reference/ShowReferencePresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/reference/ShowReferencePresenterTest.java index c2168755b0a..268c63fb495 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/reference/ShowReferencePresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/reference/ShowReferencePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.reference; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/FullTextSearchPresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/FullTextSearchPresenterTest.java index 0a63fbe6e2c..cf4386d861a 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/FullTextSearchPresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/FullTextSearchPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/presentation/FindResultPresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/presentation/FindResultPresenterTest.java index d01067ef3bf..5adc6eadcec 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/presentation/FindResultPresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/presentation/FindResultPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.presentation; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/selectpath/SelectPathPresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/selectpath/SelectPathPresenterTest.java index 625d56ee73f..dacd9dbe718 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/selectpath/SelectPathPresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/search/selectpath/SelectPathPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.search.selectpath; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/selection/TestSelectionAgent.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/selection/TestSelectionAgent.java index 37c21cbcbf6..06c5c3ed3f3 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/selection/TestSelectionAgent.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/selection/TestSelectionAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.selection; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/statepersistance/AppStateManagerTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/statepersistance/AppStateManagerTest.java index cf6d37137b1..214decfdf0f 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/statepersistance/AppStateManagerTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/statepersistance/AppStateManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.statepersistance; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/terminal/TerminalViewImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/terminal/TerminalViewImplTest.java index 2d8f35f8463..e68de86ad4a 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/terminal/TerminalViewImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/terminal/TerminalViewImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.terminal; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/upload/file/UploadFileViewImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/upload/file/UploadFileViewImplTest.java index 66f227d3b12..46ae9715c92 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/upload/file/UploadFileViewImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/upload/file/UploadFileViewImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.upload.file; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/CreateWorkspacePresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/CreateWorkspacePresenterTest.java index 187dfd37b75..af9d8e26dc1 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/CreateWorkspacePresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/CreateWorkspacePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.create; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImplTest.java index 58bbee009fb..7ce7ef6632e 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/CreateWorkspaceViewImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.create; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/recipewidget/RecipeWidgetImplTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/recipewidget/RecipeWidgetImplTest.java index 837c6dc9a4a..62f631e4a47 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/recipewidget/RecipeWidgetImplTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/create/recipewidget/RecipeWidgetImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.create.recipewidget; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/macro/WorkspaceNameMacroTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/macro/WorkspaceNameMacroTest.java index 3abbab5c875..85859162865 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/macro/WorkspaceNameMacroTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/macro/WorkspaceNameMacroTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.macro; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/AbstractPerspectivePersistenceTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/AbstractPerspectivePersistenceTest.java index 50fe00fc89c..73b1af41a66 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/AbstractPerspectivePersistenceTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/AbstractPerspectivePersistenceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.perspectives.general; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/AbstractPerspectiveTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/AbstractPerspectiveTest.java index 9e411070e35..f95d5d674c9 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/AbstractPerspectiveTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/AbstractPerspectiveTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.perspectives.general; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/PerspectiveManagerTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/PerspectiveManagerTest.java index 9e17aaf8daa..cf56f6f71ab 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/PerspectiveManagerTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/general/PerspectiveManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.perspectives.general; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/project/ProjectPerspectiveTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/project/ProjectPerspectiveTest.java index d7f52d72361..57143d45266 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/project/ProjectPerspectiveTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/perspectives/project/ProjectPerspectiveTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.perspectives.project; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/start/StartWorkspacePresenterTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/start/StartWorkspacePresenterTest.java index bdf9a5bb535..9a85393b546 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/start/StartWorkspacePresenterTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/start/StartWorkspacePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.start; diff --git a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/state/WorkspacePresenterPersistenceTest.java b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/state/WorkspacePresenterPersistenceTest.java index 8f1f3f9ce71..7e3ba42fb0a 100644 --- a/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/state/WorkspacePresenterPersistenceTest.java +++ b/ide/che-core-ide-app/src/test/java/org/eclipse/che/ide/workspace/state/WorkspacePresenterPersistenceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.workspace.state; diff --git a/ide/che-core-ide-generators/pom.xml b/ide/che-core-ide-generators/pom.xml index 6b5573d383c..3e073f2e290 100644 --- a/ide/che-core-ide-generators/pom.xml +++ b/ide/che-core-ide-generators/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/DtoFactoryVisitorRegistryGenerator.java b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/DtoFactoryVisitorRegistryGenerator.java index 7dce280fd85..e6d76571eb5 100644 --- a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/DtoFactoryVisitorRegistryGenerator.java +++ b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/DtoFactoryVisitorRegistryGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/ExtensionManagerGenerator.java b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/ExtensionManagerGenerator.java index 24d14692772..85ba45fbb37 100644 --- a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/ExtensionManagerGenerator.java +++ b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/ExtensionManagerGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/ExtensionRegistryGenerator.java b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/ExtensionRegistryGenerator.java index 76e6d358f2f..00c13628b24 100644 --- a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/ExtensionRegistryGenerator.java +++ b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/ExtensionRegistryGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/GeneratorUtils.java b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/GeneratorUtils.java index 04cc1027c46..5cc62452aed 100644 --- a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/GeneratorUtils.java +++ b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/GeneratorUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/GwtXmlGenerator.java b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/GwtXmlGenerator.java index a6ef9958e60..fc3029a0b64 100644 --- a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/GwtXmlGenerator.java +++ b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/GwtXmlGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/IDEInjectorGenerator.java b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/IDEInjectorGenerator.java index 0c88b2a56ae..3752756ab07 100644 --- a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/IDEInjectorGenerator.java +++ b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/IDEInjectorGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/IgnoreUnExistedResourcesReflectionConfigurationBuilder.java b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/IgnoreUnExistedResourcesReflectionConfigurationBuilder.java index b18dee7cdd7..9fedd8fdbe8 100644 --- a/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/IgnoreUnExistedResourcesReflectionConfigurationBuilder.java +++ b/ide/che-core-ide-generators/src/main/java/org/eclipse/che/util/IgnoreUnExistedResourcesReflectionConfigurationBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/GwtXmlGeneratorTest.java b/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/GwtXmlGeneratorTest.java index b2c22227a43..7b13b25fe82 100644 --- a/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/GwtXmlGeneratorTest.java +++ b/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/GwtXmlGeneratorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/TestExtensionManagerGenerator.java b/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/TestExtensionManagerGenerator.java index b71130294af..dd75d503c24 100644 --- a/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/TestExtensionManagerGenerator.java +++ b/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/TestExtensionManagerGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/TestGeneratorUtils.java b/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/TestGeneratorUtils.java index c3a7e96e860..4a286886f17 100644 --- a/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/TestGeneratorUtils.java +++ b/ide/che-core-ide-generators/src/test/java/org/eclipse/che/util/TestGeneratorUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.util; diff --git a/ide/che-core-ide-generators/src/test/resources/logback-test.xml b/ide/che-core-ide-generators/src/test/resources/logback-test.xml index 66532473f0b..5b0ed77dc0e 100644 --- a/ide/che-core-ide-generators/src/test/resources/logback-test.xml +++ b/ide/che-core-ide-generators/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/pom.xml b/ide/che-core-ide-stacks/pom.xml index 213fee2ff8b..0833bddfeff 100644 --- a/ide/che-core-ide-stacks/pom.xml +++ b/ide/che-core-ide-stacks/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-android.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-android.svg index b0b092c6cf4..b92340b0006 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-android.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-android.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-blank.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-blank.svg index d2d587586b6..491a1230e68 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-blank.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-blank.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-che.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-che.svg index fbe31e73f33..9778cf56fc0 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-che.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-che.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-go.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-go.svg index 0acc214290a..58b2ef89fc2 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-go.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-go.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-hadoop.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-hadoop.svg index 40a05081f7f..da68a96bb90 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-hadoop.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-hadoop.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-java-mysql.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-java-mysql.svg index 78a9c5c0c97..4023f213ba0 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-java-mysql.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-java-mysql.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-java.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-java.svg index b66a2ea09c2..383bf585d35 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-java.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-java.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-node.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-node.svg index 1b3bf412e3a..35a4e9860f1 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-node.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-node.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-php.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-php.svg index ac60f5219fc..2977c9d32a6 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-php.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-php.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-ruby.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-ruby.svg index 2bbc213aec6..e1afc8a979e 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-ruby.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-ruby.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-spring-boot.svg b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-spring-boot.svg index 7dcecf308eb..897f2a6ddf2 100644 --- a/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-spring-boot.svg +++ b/ide/che-core-ide-stacks/src/main/resources/stacks-images/type-spring-boot.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-templates/pom.xml b/ide/che-core-ide-templates/pom.xml index f49d71a4264..901db21b3f0 100644 --- a/ide/che-core-ide-templates/pom.xml +++ b/ide/che-core-ide-templates/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/pom.xml b/ide/che-core-ide-ui/pom.xml index a0384aa45da..63b278f33da 100644 --- a/ide/che-core-ide-ui/pom.xml +++ b/ide/che-core-ide-ui/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Constants.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Constants.java index 50044aafc8d..4875fe75e4b 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Constants.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Resources.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Resources.java index dcd729f001e..11a964e5247 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Resources.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Resources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/ShiftableTextArea.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/ShiftableTextArea.java index 65c2ba46a30..3190d940450 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/ShiftableTextArea.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/ShiftableTextArea.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Styles.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Styles.java index 4bd4f3d7fe0..a53dd72d4bf 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Styles.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/Styles.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/TextBox.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/TextBox.java index e2afab09e3f..83ed5f121e6 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/TextBox.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/TextBox.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/UILocalizationConstant.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/UILocalizationConstant.java index 6cdad6cacd1..428829ccae5 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/UILocalizationConstant.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/UILocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ButtonResources.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ButtonResources.java index 6d3598d5946..97beb702db0 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ButtonResources.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ButtonResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.button; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButton.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButton.java index 40d43c9455e..3966e009fd9 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButton.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButton.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.button; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonFactory.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonFactory.java index a0c7ee2ced7..9c574f6bcb6 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonFactory.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.button; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonImpl.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonImpl.java index 00be73d5220..7077ec24dc8 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonImpl.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.button; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonImpl.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonImpl.ui.xml index 02f59fa270d..54e6cf4ec23 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonImpl.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ConsoleButtonImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogPresenter.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogPresenter.java index 520d13905bf..c33a72648ca 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogPresenter.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.choice; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogView.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogView.java index 8ce04b2e1c9..deba4abaf66 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogView.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.choice; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogViewImpl.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogViewImpl.java index 3c050b39a31..4b270a64858 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogViewImpl.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.choice; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogViewImpl.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogViewImpl.ui.xml index 9503ff484c5..e1ae27a37a7 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogViewImpl.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/choice/ChoiceDialogViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooter.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooter.java index 727ab71c1e3..2882c833541 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooter.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.confirm; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooter.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooter.ui.xml index f652698372b..5148d415eaa 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooter.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooter.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogPresenter.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogPresenter.java index ae762b86473..88134938171 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogPresenter.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.confirm; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogView.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogView.java index fa730038004..d2b1b62583e 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogView.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.confirm; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewImpl.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewImpl.java index 0c010cf73a1..8e9c6f874ee 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewImpl.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.confirm; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewImpl.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewImpl.ui.xml index a915cf6474c..2aa342dcf59 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewImpl.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooter.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooter.java index 29fd39cf276..9d1996363d5 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooter.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.input; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooter.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooter.ui.xml index f652698372b..5148d415eaa 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooter.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooter.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogPresenter.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogPresenter.java index 2ab45aba9f8..d1e6b7599b5 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogPresenter.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.input; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogView.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogView.java index 1135545d758..16485495512 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogView.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.input; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewImpl.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewImpl.java index 0a8f67a8671..0dc964fa2d1 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewImpl.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.input; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewImpl.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewImpl.ui.xml index ab70447da6f..d66da09ef93 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewImpl.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooter.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooter.java index 5c1351c01b4..aeb85f45708 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooter.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.message; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooter.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooter.ui.xml index a1ffda7050a..ad6fe224f0b 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooter.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooter.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogPresenter.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogPresenter.java index 0b565e5a8b2..cbcc8716905 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogPresenter.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.message; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogView.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogView.java index c57e2839d03..44084d0edef 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogView.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.message; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewImpl.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewImpl.java index b0829e83978..8070074e513 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewImpl.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.message; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewImpl.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewImpl.ui.xml index 725f23fc4a3..9e69ba88b6f 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewImpl.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/BaseListItem.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/BaseListItem.java index 8ef3c9ab076..fbc1facbaa4 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/BaseListItem.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/BaseListItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dropdown; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/DropdownList.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/DropdownList.java index 4dcfc3afb90..328c2dc3987 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/DropdownList.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/DropdownList.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dropdown; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/DropdownList.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/DropdownList.ui.xml index a213151ec00..608f7940b2f 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/DropdownList.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/dropdown/DropdownList.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/Tab.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/Tab.java index f1daf7ad0a0..c6ee659f2f2 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/Tab.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/Tab.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.multisplitpanel.tab; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabItemFactory.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabItemFactory.java index ceeb42f0c02..3bb46f2fcb4 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabItemFactory.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabItemFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.multisplitpanel.tab; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabWidget.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabWidget.java index a3795052dba..ad9b3c2a38a 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabWidget.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.multisplitpanel.tab; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabWidget.ui.xml b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabWidget.ui.xml index 7b5d46b0df4..767f5db30b7 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabWidget.ui.xml +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/multisplitpanel/tab/TabWidget.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java index b60d56ff56c..77e2e9ad164 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.window; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/CodenvyUI.gwt.xml b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/CodenvyUI.gwt.xml index d35ed9e4d52..13fe565cc22 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/CodenvyUI.gwt.xml +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/CodenvyUI.gwt.xml @@ -1,13 +1,13 @@ diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/Styles.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/Styles.css index 3577858630f..6588e0b62d3 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/Styles.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/Styles.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ input.inputError { border-bottom: 1px solid errorColor !important; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/button/button.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/button/button.css index a983d9cf36a..9efa0edd813 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/button/button.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/button/button.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .activeConsoleButton { fill: #69d6f5; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/buttonLoader/buttonLoader.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/buttonLoader/buttonLoader.css index aed5e9f6f37..3d7cdd3f8f4 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/buttonLoader/buttonLoader.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/buttonLoader/buttonLoader.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @url loader loader; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/cellTable.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/cellTable.css index 9d85958dff5..cb1188b7136 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/cellTable.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/cellTable.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @def selectionBorderWidth 2px; .cellTableWidget { diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/cellTree.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/cellTree.css index fd5e1ab2aa2..78a09442f7b 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/cellTree.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/cellTree.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .cellTreeItem { font-family: alternativeFontFamily; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/dataGrid.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/dataGrid.css index f43cb1af6b4..8ca183e2cf3 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/dataGrid.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/cellview/dataGrid.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @def selectionBorderWidth 2px; .dataGridWidget { diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/constants.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/constants.css index 22e41884cba..bf033d3e67d 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/constants.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/constants.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /* * The constants defined in this CSS file can be used by any other diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/dropdown/expansionIcon.svg b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/dropdown/expansionIcon.svg index 16d1440fd2e..fe6ded5d27e 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/dropdown/expansionIcon.svg +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/dropdown/expansionIcon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/dropdown/styles.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/dropdown/styles.css index 4229164ed5b..745678d997e 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/dropdown/styles.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/dropdown/styles.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .menu { background-color: openedFilesDropdownListBackgroundColor; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/list/CategoriesList.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/list/CategoriesList.css index b1bb8a02443..71ca37a4a52 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/list/CategoriesList.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/list/CategoriesList.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @def menuListBorderPx 1px; @def listHeaderLeftPadding 10px; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/list/arrowExpansionIcon.svg b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/list/arrowExpansionIcon.svg index abe090c7dca..c306ab89bb4 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/list/arrowExpansionIcon.svg +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/list/arrowExpansionIcon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/logo/che-logo.svg b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/logo/che-logo.svg index c876d0b9aef..cf634340025 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/logo/che-logo.svg +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/logo/che-logo.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/menubutton/button.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/menubutton/button.css index cbb2a4f901e..c948d256002 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/menubutton/button.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/menubutton/button.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .menuButton { border: menuButtonBorder; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/multisplitpanel/menu/multi-file-icon.svg b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/multisplitpanel/menu/multi-file-icon.svg index 4c76cff94e8..25b2b3c8821 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/multisplitpanel/menu/multi-file-icon.svg +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/multisplitpanel/menu/multi-file-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/multisplitpanel/menu/style.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/multisplitpanel/menu/style.css index b03be05ea90..b53dacd47a0 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/multisplitpanel/menu/style.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/multisplitpanel/menu/style.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .listItemPanel { background-color: openedFilesDropdownListBackgroundColor; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/popup/popup.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/popup/popup.css index 6aa65ac9bb1..edf2cf322ab 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/popup/popup.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/popup/popup.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .popup { position: absolute; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/radiobuttongroup/radio-button-group.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/radiobuttongroup/radio-button-group.css index a22b7d88338..f1e55346e1b 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/radiobuttongroup/radio-button-group.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/radiobuttongroup/radio-button-group.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .mainPanel { position: relative; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/TreeStyles.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/TreeStyles.css index b930886efcc..5d6797f15b1 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/TreeStyles.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/TreeStyles.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval projectExplorerJointContainerFill org.eclipse.che.ide.api.theme.Style.theme.projectExplorerJointContainerFill(); @eval projectExplorerJointContainerShadow org.eclipse.che.ide.api.theme.Style.theme.projectExplorerJointContainerShadow(); diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/iconCollapsed.svg b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/iconCollapsed.svg index fdc054f2dd0..18803d3c2f3 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/iconCollapsed.svg +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/iconCollapsed.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/iconExpanded.svg b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/iconExpanded.svg index cd4505d43be..ec23973d4c3 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/iconExpanded.svg +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/smartTree/iconExpanded.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/switcher/switcher.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/switcher/switcher.css index 55782368cdd..c62d2c596f9 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/switcher/switcher.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/switcher/switcher.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval primaryButtonBackground org.eclipse.che.ide.api.theme.Style.theme.getPrimaryButtonBackground(); @eval buttonBackground org.eclipse.che.ide.api.theme.Style.theme.getButtonBackground(); diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/toolbar/popup-menu.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/toolbar/popup-menu.css index c87e3334193..faea6f01c00 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/toolbar/popup-menu.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/toolbar/popup-menu.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /**************************************************************************************** POPUP MENU diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/toolbar/toolbar.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/toolbar/toolbar.css index 244b5948d0f..4884abb1938 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/toolbar/toolbar.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/toolbar/toolbar.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external .blueColored, .greenColored, .redColored, .changeOnHover; @eval greenIconColor org.eclipse.che.ide.api.theme.Style.getSuccessEventColor(); diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/Window.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/Window.css index ba55e70ccc4..8e5c8f2046c 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/Window.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/Window.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @def animationDuration 300ms; diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/close-icon.svg b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/close-icon.svg index 55a1be3b656..ba495a7c470 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/close-icon.svg +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/close-icon.svg @@ -1,14 +1,14 @@ diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/button/ConsoleButtonImplTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/button/ConsoleButtonImplTest.java index 5462af701f1..b24af02a3c5 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/button/ConsoleButtonImplTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/button/ConsoleButtonImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.button; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/BaseTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/BaseTest.java index 99624a07680..6db06d8efa8 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/BaseTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/BaseTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooterTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooterTest.java index 77b2bf9f8e7..5904b9484b3 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooterTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogFooterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.confirm; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogPresenterTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogPresenterTest.java index 9d377e33e0c..68737d4f291 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogPresenterTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.confirm; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewTest.java index e3345d28a04..447a7f0cb96 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/confirm/ConfirmDialogViewTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.confirm; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooterTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooterTest.java index ba74b302f33..d3e9b45d19d 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooterTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogFooterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.input; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogPresenterTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogPresenterTest.java index cb947ec282c..216d4c4e48b 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogPresenterTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.input; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewTest.java index 8fd567ec7ae..2e7c690942b 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/input/InputDialogViewTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.input; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooterTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooterTest.java index a8e9bdaaa25..02704fe59bc 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooterTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogFooterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.message; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogPresenterTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogPresenterTest.java index 375ae7a2bd1..fbf4e9fb815 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogPresenterTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.message; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewTest.java index 708d3aa9f56..83ec7d6874e 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/dialogs/message/MessageDialogViewTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.dialogs.message; diff --git a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/tooltip/TooltipWidgetImplTest.java b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/tooltip/TooltipWidgetImplTest.java index 2077d81c5b8..122d0b8b4cf 100644 --- a/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/tooltip/TooltipWidgetImplTest.java +++ b/ide/che-core-ide-ui/src/test/java/org/eclipse/che/ide/ui/tooltip/TooltipWidgetImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.tooltip; diff --git a/ide/che-core-orion-editor/pom.xml b/ide/che-core-orion-editor/pom.xml index f31af7cdaa5..612e20e9b0e 100644 --- a/ide/che-core-orion-editor/pom.xml +++ b/ide/che-core-orion-editor/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/Action.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/Action.java index dda84855b0d..cfdfc627a95 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/Action.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/Action.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/ContentAssistWidget.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/ContentAssistWidget.java index b5e61492398..b81206dcbba 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/ContentAssistWidget.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/ContentAssistWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/ContentAssistWidgetFactory.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/ContentAssistWidgetFactory.java index 38b2d8aaac6..686c98744a2 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/ContentAssistWidgetFactory.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/ContentAssistWidgetFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/EditorInitializePromiseHolder.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/EditorInitializePromiseHolder.java index 744c42e1853..5c714ff2136 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/EditorInitializePromiseHolder.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/EditorInitializePromiseHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeyMode.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeyMode.java index dbaa74e239b..78b52380ae5 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeyMode.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeyMode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeyModeInstances.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeyModeInstances.java index ad77fd4ad9b..f92315f97c7 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeyModeInstances.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeyModeInstances.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeymodeDisplayConstants.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeymodeDisplayConstants.java index bb1255c7030..3e1329c1544 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeymodeDisplayConstants.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/KeymodeDisplayConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionAnnotationSeverityProvider.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionAnnotationSeverityProvider.java index 64189fa333a..af1ca8580e6 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionAnnotationSeverityProvider.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionAnnotationSeverityProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionBreakpointRuler.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionBreakpointRuler.java index 27eeb77ac42..c4a3ae60d1f 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionBreakpointRuler.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionBreakpointRuler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionContentTypeRegistrant.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionContentTypeRegistrant.java index 633af8650a8..ae44d86b18f 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionContentTypeRegistrant.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionContentTypeRegistrant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionCursorModel.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionCursorModel.java index 126c16b5b44..8fcf686ba5b 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionCursorModel.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionCursorModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionDocument.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionDocument.java index ee4dacdaf36..6637560878b 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionDocument.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionDocument.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorBuilder.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorBuilder.java index 8ded313ca7e..df92cbea168 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorBuilder.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorExtension.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorExtension.java index efe365d13d0..0dee03110c0 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorExtension.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorInit.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorInit.java index b872d2a8f8c..db71a089c93 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorInit.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorInit.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorPresenter.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorPresenter.java index 313159f739d..a9831787086 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorPresenter.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorWidget.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorWidget.java index a53b131f6dd..3688a0733a2 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorWidget.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorWidget.ui.xml b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorWidget.ui.xml index 0fb76b34c3f..4c20774c233 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorWidget.ui.xml +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEditorWidget.ui.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEventConstants.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEventConstants.java index 213c89b209b..6c7d7b3e552 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEventConstants.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionEventConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionHoverHandler.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionHoverHandler.java index d0ecc7fd173..785d0e992e8 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionHoverHandler.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionHoverHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionHoverRegistrant.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionHoverRegistrant.java index 0fad931aff9..e79ad51a3c1 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionHoverRegistrant.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionHoverRegistrant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionLineStyler.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionLineStyler.java index 41f8ac64476..7f8cc24421d 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionLineStyler.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionLineStyler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionOccurrencesHandler.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionOccurrencesHandler.java index 90230a3cb24..8935d552551 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionOccurrencesHandler.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionOccurrencesHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionOccurrencesRegistrant.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionOccurrencesRegistrant.java index eb2f1d8c4a2..ee7e5e44931 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionOccurrencesRegistrant.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionOccurrencesRegistrant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionResource.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionResource.java index d80d8816979..206433f2374 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionResource.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionResource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionSettingsController.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionSettingsController.java index 3c1ca163c04..9c0404848c9 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionSettingsController.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionSettingsController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionUndoRedo.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionUndoRedo.java index 26c5ac9da52..341b43ca7ed 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionUndoRedo.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/OrionUndoRedo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/TemporaryKeyBindingsManager.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/TemporaryKeyBindingsManager.java index e8e60d8de70..5a9e00aacee 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/TemporaryKeyBindingsManager.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/TemporaryKeyBindingsManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/HasScrollHandlers.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/HasScrollHandlers.java index 728214895b1..8d4823bdaaa 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/HasScrollHandlers.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/HasScrollHandlers.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.events; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/ScrollEvent.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/ScrollEvent.java index 22e5b448703..9e81b14292a 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/ScrollEvent.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/ScrollEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.events; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/ScrollHandler.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/ScrollHandler.java index acca0aa5de3..6d088c25f5f 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/ScrollHandler.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/events/ScrollHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.events; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/incremental/find/IncrementalFindReportStatusObserver.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/incremental/find/IncrementalFindReportStatusObserver.java index d7567a80d9d..ae6339de8c1 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/incremental/find/IncrementalFindReportStatusObserver.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/incremental/find/IncrementalFindReportStatusObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.incremental.find; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/JavaHighlightingOrionPlugin.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/JavaHighlightingOrionPlugin.java index ad96d619800..5acba99394f 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/JavaHighlightingOrionPlugin.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/JavaHighlightingOrionPlugin.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.inject; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionCodeEditWidgetProvider.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionCodeEditWidgetProvider.java index 1d58f3d6137..81129366b34 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionCodeEditWidgetProvider.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionCodeEditWidgetProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.inject; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionEditorGinModule.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionEditorGinModule.java index 511e134f45a..74b881d34ad 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionEditorGinModule.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionEditorGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.inject; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionEditorOptionsOverlayProvider.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionEditorOptionsOverlayProvider.java index 007c06f2dfa..b0d73b31c5c 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionEditorOptionsOverlayProvider.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionEditorOptionsOverlayProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.inject; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionPlugin.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionPlugin.java index c0a5b147038..43540e257e8 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionPlugin.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/inject/OrionPlugin.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.inject; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/AnnotationStylerOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/AnnotationStylerOverlay.java index 2cc4746ada1..19218ea82d8 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/AnnotationStylerOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/AnnotationStylerOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/ModelChangedEventOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/ModelChangedEventOverlay.java index 75e6406fec7..f9778208d12 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/ModelChangedEventOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/ModelChangedEventOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationIteratorOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationIteratorOverlay.java index 61f0993ba66..a6f443ac61b 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationIteratorOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationIteratorOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationModelOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationModelOverlay.java index 412258b929c..de726958128 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationModelOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationModelOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationOverlay.java index 1f8191f1a3d..c7442671ce8 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationTypeOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationTypeOverlay.java index 93c86900e9d..a74893d0d88 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationTypeOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationTypeOverlay.java @@ -1,14 +1,13 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ - package org.eclipse.che.ide.editor.orion.client.jso; import com.google.gwt.core.client.JavaScriptObject; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationsOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationsOverlay.java index 3b39d6745df..8144bd65072 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationsOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAnnotationsOverlay.java @@ -1,15 +1,14 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ - package org.eclipse.che.ide.editor.orion.client.jso; import com.google.gwt.core.client.JavaScriptObject; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAttributesOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAttributesOverlay.java index 7f8b86c23b0..9404bf26deb 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAttributesOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionAttributesOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionCodeEditWidgetOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionCodeEditWidgetOverlay.java index 5f7539096fc..704c141e798 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionCodeEditWidgetOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionCodeEditWidgetOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionContentAssistOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionContentAssistOverlay.java index 3b36170411d..445b7120fc1 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionContentAssistOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionContentAssistOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionContentTypeOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionContentTypeOverlay.java index 27fba41546d..f841a305178 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionContentTypeOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionContentTypeOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorOptionsOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorOptionsOverlay.java index 6f3cfcac5f3..00da9e90208 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorOptionsOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorOptionsOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorOverlay.java index 0db3e7035d7..ee1eeef81c6 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorViewOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorViewOverlay.java index 7b348058f03..a43c95610d1 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorViewOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEditorViewOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEventOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEventOverlay.java index 0f14978597d..86527f89370 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEventOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEventOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEventTargetOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEventTargetOverlay.java index 8edb265e965..2cfb10e3633 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEventTargetOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionEventTargetOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionExtRulerOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionExtRulerOverlay.java index ef63958a325..6c01978b496 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionExtRulerOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionExtRulerOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionFindIteratorOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionFindIteratorOverlay.java index 97194e0a680..b5e28920366 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionFindIteratorOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionFindIteratorOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionFindOptionsOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionFindOptionsOverlay.java index 04e28d1d9c2..f16901013a8 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionFindOptionsOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionFindOptionsOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHighlightingConfigurationOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHighlightingConfigurationOverlay.java index 88c5378f88d..f88e42c38e9 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHighlightingConfigurationOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHighlightingConfigurationOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHoverContextOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHoverContextOverlay.java index 6f346596c80..bcaa2bf5b98 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHoverContextOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHoverContextOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHoverOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHoverOverlay.java index 7226666c565..ba76bcf9e70 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHoverOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionHoverOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionInputChangedEventOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionInputChangedEventOverlay.java index 994c7341a35..13896422bd7 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionInputChangedEventOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionInputChangedEventOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingModule.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingModule.java index afcc26d834c..af64ed94e04 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingModule.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingOverlay.java index a169eab498a..6c928447c8b 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingsRelationOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingsRelationOverlay.java index 62979d955dd..83ac0b6925e 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingsRelationOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyBindingsRelationOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyModeOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyModeOverlay.java index 670848f777b..101ebd3edec 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyModeOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyModeOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyStrokeOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyStrokeOverlay.java index c872b7c30cf..9dd2c20d145 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyStrokeOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionKeyStrokeOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModeOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModeOverlay.java index 079bcd61688..eb26eb820cc 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModeOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModeOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelDataOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelDataOverlay.java index 17de89d4e92..6e4125da0bc 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelDataOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelDataOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelGroupOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelGroupOverlay.java index 2f9c3814429..0662e94f350 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelGroupOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelGroupOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelOverlay.java index 764eb24a9ca..45a17c2dbfb 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelPositionOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelPositionOverlay.java index 16b05799ee6..b8fb814569d 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelPositionOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionLinkedModelPositionOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionModelChangedEventOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionModelChangedEventOverlay.java index 6df16ba3047..b4d17b50360 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionModelChangedEventOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionModelChangedEventOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionOccurrenceContextOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionOccurrenceContextOverlay.java index 16f54025658..c63d402a119 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionOccurrenceContextOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionOccurrenceContextOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionOccurrenceOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionOccurrenceOverlay.java index bc6f2b219f3..6e3ed4288b1 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionOccurrenceOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionOccurrenceOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionPixelPositionOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionPixelPositionOverlay.java index 390df8ceb96..9e1bc9a1900 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionPixelPositionOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionPixelPositionOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionProblemOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionProblemOverlay.java index eb906301ce0..52a36b70dce 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionProblemOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionProblemOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionRulerClickEventOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionRulerClickEventOverlay.java index 7716b57c5dd..87ad5446592 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionRulerClickEventOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionRulerClickEventOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionSelectionEventOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionSelectionEventOverlay.java index 494b09ac1dc..d98be62b05e 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionSelectionEventOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionSelectionEventOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionSelectionOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionSelectionOverlay.java index 8d3d7988522..e517d89964f 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionSelectionOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionSelectionOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionServiceRegistryOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionServiceRegistryOverlay.java index 76460c9723b..e9cbd90c9b0 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionServiceRegistryOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionServiceRegistryOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionStyleOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionStyleOverlay.java index b9d10f72bd4..36a7bf82883 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionStyleOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionStyleOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextChangeOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextChangeOverlay.java index 67481ad2a5a..f8963da27e6 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextChangeOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextChangeOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextModelOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextModelOverlay.java index bdec9005715..107e6719162 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextModelOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextModelOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextThemeOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextThemeOverlay.java index d62b9dfa9b8..34126a83ca3 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextThemeOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextThemeOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewOptionsOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewOptionsOverlay.java index b11af362412..f1a7d9aa86c 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewOptionsOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewOptionsOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewOverlay.java index 02b8a20c89f..276ce4ed80a 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewShowOptionsOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewShowOptionsOverlay.java index b486a28ad52..071384bf4ee 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewShowOptionsOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionTextViewShowOptionsOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionUndoStackOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionUndoStackOverlay.java index f332fc86d79..5a93621a09d 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionUndoStackOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionUndoStackOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionUndoStackSizeOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionUndoStackSizeOverlay.java index 5c3b677f7cf..a9ed7988f34 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionUndoStackSizeOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/OrionUndoStackSizeOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/StatusMessageReporterOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/StatusMessageReporterOverlay.java index bc3f6bf7aae..c054dd1163e 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/StatusMessageReporterOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/StatusMessageReporterOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/UiUtilsOverlay.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/UiUtilsOverlay.java index c7d0c965bc5..8777c739551 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/UiUtilsOverlay.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/jso/UiUtilsOverlay.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.jso; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/menu/EditorContextMenu.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/menu/EditorContextMenu.java index 12456316c7a..f5875ed926e 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/menu/EditorContextMenu.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/menu/EditorContextMenu.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.menu; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/ElementWidget.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/ElementWidget.java index c3dfc6499ee..b96260ba279 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/ElementWidget.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/ElementWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.signature; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelpResources.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelpResources.java index a10a7a81e2c..7afb94ef05e 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelpResources.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelpResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.signature; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelpView.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelpView.java index a5f570847b1..4ed8e51ef85 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelpView.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelpView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.orion.client.signature; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessage.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessage.java index d24db46b2df..681b9e754d9 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessage.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.status.message; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessageObserver.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessageObserver.java index 3c1d2b586b3..528191feb9e 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessageObserver.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessageObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.status.message; diff --git a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessageReporter.java b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessageReporter.java index 615827f8ee9..3c94476974e 100644 --- a/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessageReporter.java +++ b/ide/che-core-orion-editor/src/main/java/org/eclipse/che/ide/status/message/StatusMessageReporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.status.message; diff --git a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/OrionEditor.gwt.xml b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/OrionEditor.gwt.xml index f251a5b4983..c82d13d10eb 100644 --- a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/OrionEditor.gwt.xml +++ b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/OrionEditor.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/incremental-find-container.css b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/incremental-find-container.css index cdedde153c4..f5453dbec35 100644 --- a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/incremental-find-container.css +++ b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/incremental-find-container.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .incrementalFindContainer { min-width: 194px; diff --git a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/orion-codenvy-theme.css b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/orion-codenvy-theme.css index 9e38f229336..d8b498cbd23 100644 --- a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/orion-codenvy-theme.css +++ b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/orion-codenvy-theme.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external *; @eval matchingSearchBlockBackgroundColor org.eclipse.che.ide.api.theme.Style.theme.matchingSearchBlockBackgroundColor(); diff --git a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelp.css b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelp.css index 7ac6f81048f..e4fce34e860 100644 --- a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelp.css +++ b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/signature/SignatureHelp.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .main .parameter-hints-widget { z-index: 10; diff --git a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/signature/arrow.svg b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/signature/arrow.svg index e53e091ed64..b4524bf667f 100644 --- a/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/signature/arrow.svg +++ b/ide/che-core-orion-editor/src/main/resources/org/eclipse/che/ide/editor/orion/client/signature/arrow.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/pom.xml b/ide/commons-gwt/pom.xml index b65fea53b5b..1f8485db03a 100644 --- a/ide/commons-gwt/pom.xml +++ b/ide/commons-gwt/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/java/com/google/gwt/webworker/client/messages/Message.java b/ide/commons-gwt/src/main/java/com/google/gwt/webworker/client/messages/Message.java index c2949e44377..61bf41e4e7c 100644 --- a/ide/commons-gwt/src/main/java/com/google/gwt/webworker/client/messages/Message.java +++ b/ide/commons-gwt/src/main/java/com/google/gwt/webworker/client/messages/Message.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package com.google.gwt.webworker.client.messages; diff --git a/ide/commons-gwt/src/main/java/com/google/gwt/webworker/client/messages/MessageFilter.java b/ide/commons-gwt/src/main/java/com/google/gwt/webworker/client/messages/MessageFilter.java index 760c7efcb17..470a6d7fc05 100644 --- a/ide/commons-gwt/src/main/java/com/google/gwt/webworker/client/messages/MessageFilter.java +++ b/ide/commons-gwt/src/main/java/com/google/gwt/webworker/client/messages/MessageFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package com.google.gwt.webworker.client.messages; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Delayer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Delayer.java index e8300731e8c..abb4cd970a7 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Delayer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Delayer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.async; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Task.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Task.java index 65099c50b63..d9b25943e82 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Task.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Task.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.async; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/ThrottledDelayer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/ThrottledDelayer.java index 070c2855295..08fb1e120f0 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/ThrottledDelayer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/ThrottledDelayer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.async; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Throttler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Throttler.java index 380ed20cb5c..68a99e6f3a8 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Throttler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/async/Throttler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.async; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/BiFunction.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/BiFunction.java index 86352a7e462..f847da0c311 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/BiFunction.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/BiFunction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/BiOperation.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/BiOperation.java index 8b5eb418444..81bdacbab20 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/BiOperation.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/BiOperation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Function.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Function.java index a32039b1f5c..f2e5d3da9bb 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Function.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Function.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/FunctionException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/FunctionException.java index 32e3caa281f..e3453385b80 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/FunctionException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/FunctionException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Operation.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Operation.java index 0a57e921a10..5abf502f0ff 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Operation.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Operation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/OperationException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/OperationException.java index 4df4245783a..dc2bc9ac714 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/OperationException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/OperationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Promise.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Promise.java index ecf1667b0fa..96913a99884 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Promise.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Promise.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/PromiseError.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/PromiseError.java index ceceddd942d..4943063a752 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/PromiseError.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/PromiseError.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/PromiseProvider.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/PromiseProvider.java index d38ed977788..d3e1a515cdf 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/PromiseProvider.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/PromiseProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Thenable.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Thenable.java index c28baa7b0c8..cd28cd9a04d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Thenable.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/Thenable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/callback/AsyncPromiseHelper.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/callback/AsyncPromiseHelper.java index 28d3bb826ad..6d8d714f1b7 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/callback/AsyncPromiseHelper.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/callback/AsyncPromiseHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.callback; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/callback/CallbackPromiseHelper.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/callback/CallbackPromiseHelper.java index d0255707dcf..23b25bac1ca 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/callback/CallbackPromiseHelper.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/callback/CallbackPromiseHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.callback; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/Executor.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/Executor.java index b977a364beb..3ecab41bff0 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/Executor.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/Executor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.js; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromise.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromise.java index 14b716b63d1..74d230b1672 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromise.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromise.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.js; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromiseError.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromiseError.java index 48be9100564..56a9c63233a 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromiseError.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromiseError.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.js; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromiseProvider.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromiseProvider.java index 3d3d9b22eb8..4c2873616d6 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromiseProvider.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/JsPromiseProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.js; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/Promises.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/Promises.java index b3b80515fcc..a0b6364f6c4 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/Promises.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/Promises.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.js; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/RejectFunction.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/RejectFunction.java index 415e130085b..564eca55b11 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/RejectFunction.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/RejectFunction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.js; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/ResolveFunction.java b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/ResolveFunction.java index 20eaa152bbc..f15168681ae 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/ResolveFunction.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/api/promises/client/js/ResolveFunction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.promises.client.js; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/CommandLine.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/CommandLine.java index 0837154db14..ed68c776f08 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/CommandLine.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/CommandLine.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/DelayedTask.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/DelayedTask.java index bb77588b8f5..2a794d06e7f 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/DelayedTask.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/DelayedTask.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/FontAwesome.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/FontAwesome.java index fb422dcd24c..c9bf9b5d2dd 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/FontAwesome.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/FontAwesome.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/GwtXmlUtils.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/GwtXmlUtils.java index 82c3895b6c1..7a45f81179e 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/GwtXmlUtils.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/GwtXmlUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.commons; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/ParsingResponseException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/ParsingResponseException.java index c0d139ceeca..1d967cb9360 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/ParsingResponseException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/ParsingResponseException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.commons; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/JobNotFoundException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/JobNotFoundException.java index 7eab1bf2c9f..600b8e4e1b8 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/JobNotFoundException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/JobNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.commons.exception; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/ServerDisconnectedException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/ServerDisconnectedException.java index 34a26c729be..6b02b284359 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/ServerDisconnectedException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/ServerDisconnectedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.commons.exception; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/ServerException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/ServerException.java index 6fafc7044d9..5dd1fa21626 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/ServerException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/ServerException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.commons.exception; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/UnauthorizedException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/UnauthorizedException.java index 3d0a6e73b74..370aa8459b6 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/UnauthorizedException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/UnauthorizedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.commons.exception; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/UnmarshallerException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/UnmarshallerException.java index 87035f9f8c4..e8e869da7e4 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/UnmarshallerException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/commons/exception/UnmarshallerException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.commons.exception; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/ClientDtoFactoryVisitor.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/ClientDtoFactoryVisitor.java index 95b7c439989..67d2ccc265e 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/ClientDtoFactoryVisitor.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/ClientDtoFactoryVisitor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.dto; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoFactory.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoFactory.java index 8d9e9f6a018..8c8396495c1 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoFactory.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.dto; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoFactoryVisitor.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoFactoryVisitor.java index b20f2bcb8a0..e50ca582ad4 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoFactoryVisitor.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoFactoryVisitor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.dto; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoGen.gwt.xml b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoGen.gwt.xml index 866b62ae1f8..4ce5d73a504 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoGen.gwt.xml +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoGen.gwt.xml @@ -1,13 +1,13 @@ diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoProvider.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoProvider.java index 104003dfb7a..2265e8ef068 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoProvider.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/dto/DtoProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.dto; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/FuzzyMatches.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/FuzzyMatches.java index b42c80cc2be..6fadbd535ed 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/FuzzyMatches.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/FuzzyMatches.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.filters; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/Match.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/Match.java index 61d6bc91af9..8c1e29bf78c 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/Match.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/Match.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.filters; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/Matcher.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/Matcher.java index 26d3793a09c..169abb3dc6f 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/Matcher.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/filters/Matcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.filters; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/json/JsonHelper.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/json/JsonHelper.java index 2762ac5ad4f..9b3c52cad8d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/json/JsonHelper.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/json/JsonHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.json; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ClientSideRequestProcessor.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ClientSideRequestProcessor.java index f8cb1274fef..dc8b8dba464 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ClientSideRequestProcessor.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ClientSideRequestProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ClientSideTimeoutActionRunner.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ClientSideTimeoutActionRunner.java index 59b92e90f26..2ee02a4f229 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ClientSideTimeoutActionRunner.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ClientSideTimeoutActionRunner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcComposer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcComposer.java index 7878160b7bf..2512b1d1acf 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcComposer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcComposer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcMarshaller.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcMarshaller.java index f848c661d4a..043c0b1ab4f 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcMarshaller.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcMarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcQualifier.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcQualifier.java index cfa15f9ea08..f6c4bf65a44 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcQualifier.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcQualifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcUnmarshaller.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcUnmarshaller.java index c0b23cf7225..6ade5958b6f 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcUnmarshaller.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/ElementalJsonRpcUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/JsonRpcInitializer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/JsonRpcInitializer.java index 0347e5ca5fc..03245cca42f 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/JsonRpcInitializer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/JsonRpcInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/WebSocketJsonRpcInitializer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/WebSocketJsonRpcInitializer.java index 23975537fc6..f059478eb9e 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/WebSocketJsonRpcInitializer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/jsonrpc/WebSocketJsonRpcInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/resource/Path.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/resource/Path.java index 08050785491..5c39072a39e 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/resource/Path.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/resource/Path.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resource; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequest.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequest.java index 36ccea0af38..fa11c0a3329 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequest.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestCallback.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestCallback.java index 41d2b088d99..6f07b6cb1fb 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestCallback.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestFactory.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestFactory.java index 3bbe39591c2..fd7f8dea6a9 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestFactory.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestLoader.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestLoader.java index 7c250d2acf6..21c17c1742e 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestLoader.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/AsyncRequestLoader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/DtoUnmarshaller.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/DtoUnmarshaller.java index 805f73ada8d..1ad541a7301 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/DtoUnmarshaller.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/DtoUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/DtoUnmarshallerFactory.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/DtoUnmarshallerFactory.java index f8bd2ba1a0c..1c013b7470c 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/DtoUnmarshallerFactory.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/DtoUnmarshallerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPHeader.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPHeader.java index eaf001e9b5c..ba3a3a41154 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPHeader.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPHeader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPMethod.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPMethod.java index 6418751e5f3..f0fd8da8520 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPMethod.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPMethod.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPStatus.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPStatus.java index 8b308fa66b5..bdc4275d16a 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPStatus.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/HTTPStatus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/LocationUnmarshaller.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/LocationUnmarshaller.java index 84fe0656904..6f251e443dd 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/LocationUnmarshaller.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/LocationUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/Marshallable.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/Marshallable.java index 09ada3d26f9..20d582a7d0d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/Marshallable.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/Marshallable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RequestStatusHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RequestStatusHandler.java index 75f5ed43072..a040fde80c8 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RequestStatusHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RequestStatusHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestContext.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestContext.java index 7a30a0518c5..e1ac772b912 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestContext.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestContextProvider.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestContextProvider.java index 12cbc265812..a163e52b130 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestContextProvider.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestContextProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestServiceInfo.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestServiceInfo.java index 44bd28ddfa7..170a75b9949 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestServiceInfo.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/RestServiceInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringMapListUnmarshaller.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringMapListUnmarshaller.java index 687e7a2819f..de9c30717d2 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringMapListUnmarshaller.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringMapListUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringMapUnmarshaller.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringMapUnmarshaller.java index 0761f31d2e7..5c16f5f785d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringMapUnmarshaller.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringMapUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringUnmarshaller.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringUnmarshaller.java index eaae810e63b..4bec19b71cb 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringUnmarshaller.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/StringUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/Unmarshallable.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/Unmarshallable.java index f6d3230773b..fda88f830c9 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/Unmarshallable.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/Unmarshallable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/UrlBuilder.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/UrlBuilder.java index 59e880bf9b3..69f39231ee7 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/UrlBuilder.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/rest/UrlBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/runtime/Assert.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/runtime/Assert.java index 0c276df824a..87d42cc9f63 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/runtime/Assert.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/runtime/Assert.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.runtime; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/runtime/AssertionFailedException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/runtime/AssertionFailedException.java index 1ebbe578123..ed28f7b6ef3 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/runtime/AssertionFailedException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/runtime/AssertionFailedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.runtime; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/DialogBoxResources.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/DialogBoxResources.java index fa768e56260..7688459c08b 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/DialogBoxResources.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/DialogBoxResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomComboBox.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomComboBox.java index b0cc219b61f..bd101e3c500 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomComboBox.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomComboBox.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.listbox; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomListBox.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomListBox.java index 2f6bee2d50e..19242cfa738 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomListBox.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomListBox.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.listbox; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomListBoxResources.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomListBoxResources.java index 704c4b7fe5a..708eac9e281 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomListBoxResources.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/listbox/CustomListBoxResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.listbox; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/DownloadWorkspaceOutputEvent.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/DownloadWorkspaceOutputEvent.java index 7259fd58936..df48465ac86 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/DownloadWorkspaceOutputEvent.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/DownloadWorkspaceOutputEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/LoaderPresenter.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/LoaderPresenter.java index 6729d8e70b3..bf2c8e8d2dc 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/LoaderPresenter.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/LoaderPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoader.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoader.java index 14991981367..86fe922352d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoader.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderFactory.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderFactory.java index 55b1fcf1767..87f94380325 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderFactory.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderImpl.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderImpl.java index 0582f45749a..22eedd923cf 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderImpl.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderImpl.ui.xml b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderImpl.ui.xml index 16747dae716..50df55bff35 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderImpl.ui.xml +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderMessages.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderMessages.java index d24555ad5fc..a911d5afe41 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderMessages.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/PopupLoaderMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/LoaderFactory.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/LoaderFactory.java index 4837145f7d2..78f2f48eb50 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/LoaderFactory.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/LoaderFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders.request; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/MessageLoader.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/MessageLoader.java index 478264fbad5..844d371f120 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/MessageLoader.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/MessageLoader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders.request; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/MessageLoaderResources.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/MessageLoaderResources.java index 6875ba6e604..370979413fb 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/MessageLoaderResources.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/loaders/request/MessageLoaderResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.loaders.request; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/BaseNodeRenderer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/BaseNodeRenderer.java index 296f067e756..15b8ace4b85 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/BaseNodeRenderer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/BaseNodeRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.tree; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/NodeRenderer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/NodeRenderer.java index 43d5404e1d0..9d7f6aa1139 100755 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/NodeRenderer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/NodeRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.tree; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/SelectionModel.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/SelectionModel.java index 75b99c59493..9136732c2f7 100755 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/SelectionModel.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/tree/SelectionModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.tree; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ClipboardButtonBuilder.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ClipboardButtonBuilder.java index 41437df45b3..4a5a9ebeebb 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ClipboardButtonBuilder.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ClipboardButtonBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.zeroclipboard; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ClipboardButtonBuilderImpl.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ClipboardButtonBuilderImpl.java index 8f7c4478040..5953e3edcb8 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ClipboardButtonBuilderImpl.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ClipboardButtonBuilderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.zeroclipboard; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardConstant.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardConstant.java index e90661be6a3..af4cc712930 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardConstant.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.zeroclipboard; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardResources.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardResources.java index d00399c4ea7..6fdf6f18dd0 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardResources.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ui.zeroclipboard; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/AnimationController.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/AnimationController.java index 6300fe6c72f..41b218c7991 100755 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/AnimationController.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/AnimationController.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Arrays.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Arrays.java index aa747234090..2aca10f6a07 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Arrays.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Arrays.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Base64.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Base64.java index a695788c2ef..e1e46aa6f2c 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Base64.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Base64.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Bytes.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Bytes.java index 64fd51afa84..a7036160c80 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Bytes.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/Bytes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/NameUtils.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/NameUtils.java index ff4c4487dc5..c9cc824e9ff 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/NameUtils.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/NameUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/UIUtil.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/UIUtil.java index b89528ca1cc..a37facfd1c0 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/UIUtil.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/UIUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/UUID.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/UUID.java index a93e0e2c32f..ff4f9d326ef 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/UUID.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/UUID.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/input/KeyMapUtil.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/input/KeyMapUtil.java index 4f85c2a295d..b3e53dfb164 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/input/KeyMapUtil.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/input/KeyMapUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.input; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/input/MackeyMapUtil.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/input/MackeyMapUtil.java index 2bc033bddf4..40d77b6b330 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/input/MackeyMapUtil.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/input/MackeyMapUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.input; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/BrowserLogger.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/BrowserLogger.java index 2f598f579b2..dd3cbbe6bca 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/BrowserLogger.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/BrowserLogger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.loging; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/DummyLogger.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/DummyLogger.java index f1511d08497..142583284e1 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/DummyLogger.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/DummyLogger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.loging; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/Logger.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/Logger.java index 7a7f05d1881..4ae011497a6 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/Logger.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/loging/Logger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.loging; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/BrowserLocalStorageImpl.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/BrowserLocalStorageImpl.java index f517900e81a..26b1e4e0076 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/BrowserLocalStorageImpl.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/BrowserLocalStorageImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.storage; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/BrowserLocalStorageProviderImpl.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/BrowserLocalStorageProviderImpl.java index d4082d069b2..700697a376c 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/BrowserLocalStorageProviderImpl.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/BrowserLocalStorageProviderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.storage; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/DummyLocalStorageImpl.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/DummyLocalStorageImpl.java index bf2411117c5..2dfc438a76e 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/DummyLocalStorageImpl.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/DummyLocalStorageImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.storage; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/DummyLocalStorageProviderImpl.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/DummyLocalStorageProviderImpl.java index 9dcc8f32271..328c46c7ea6 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/DummyLocalStorageProviderImpl.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/DummyLocalStorageProviderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.storage; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/LocalStorage.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/LocalStorage.java index ff9722d77e9..0b473d9b068 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/LocalStorage.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/LocalStorage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.storage; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/LocalStorageProvider.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/LocalStorageProvider.java index a4d4358c2c6..3d409060963 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/LocalStorageProvider.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/util/storage/LocalStorageProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util.storage; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/AbstractMessageBus.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/AbstractMessageBus.java index 0996252e08e..00bcd50eaa7 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/AbstractMessageBus.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/AbstractMessageBus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MachineMessageBus.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MachineMessageBus.java index 2a2a8080ecd..77659485666 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MachineMessageBus.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MachineMessageBus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/Message.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/Message.java index f8617674188..6acfde9e20a 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/Message.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/Message.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBuilder.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBuilder.java index c97a7dfa221..be8a1cbd473 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBuilder.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBus.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBus.java index 5fdd30620ee..e61e2ae1fbe 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBus.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBusImpl.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBusImpl.java index 68a532f7ed8..523a6a07f80 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBusImpl.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBusImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBusProvider.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBusProvider.java index 2439295142d..9c451900d5e 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBusProvider.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/MessageBusProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/WebSocket.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/WebSocket.java index 054b3866094..f05cfb3683d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/WebSocket.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/WebSocket.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/WebSocketException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/WebSocketException.java index cd6f320dde3..a86c737620d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/WebSocketException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/WebSocketException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionClosedHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionClosedHandler.java index 560939402e7..525a0e8ee72 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionClosedHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionClosedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.events; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionErrorHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionErrorHandler.java index 6f791bb3e9d..0423b0e27c9 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionErrorHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionErrorHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.events; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionOpenedHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionOpenedHandler.java index 1db5211ea87..ed02dad4dad 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionOpenedHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ConnectionOpenedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.events; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageHandler.java index 9cb7d437e59..3de8991c5ca 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.events; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageReceivedEvent.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageReceivedEvent.java index de8ee5b5afa..c83ef79540d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageReceivedEvent.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageReceivedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.events; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageReceivedHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageReceivedHandler.java index d62460969e9..ee480f53dd2 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageReceivedHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/MessageReceivedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.events; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ReplyHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ReplyHandler.java index f4813abc57f..5d0c44cbc95 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ReplyHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/ReplyHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.events; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/WebSocketClosedEvent.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/WebSocketClosedEvent.java index 048ecd7caf1..fbf2e40c5b6 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/WebSocketClosedEvent.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/events/WebSocketClosedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.events; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketEndpoint.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketEndpoint.java index cf35b079d1a..30e5418c6eb 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketEndpoint.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketEndpoint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketMessageTransmitter.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketMessageTransmitter.java index 01a11025914..28e3fa7377f 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketMessageTransmitter.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketMessageTransmitter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/DelayableWebSocketConnection.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/DelayableWebSocketConnection.java index 5b695f0e6c1..15ead79763d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/DelayableWebSocketConnection.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/DelayableWebSocketConnection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/MessagesReSender.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/MessagesReSender.java index b83055b9111..3b1d49f8b9c 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/MessagesReSender.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/MessagesReSender.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/UrlResolver.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/UrlResolver.java index d4a01c34fc1..dfceebd3b94 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/UrlResolver.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/UrlResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketActionManager.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketActionManager.java index 136b5da56ab..2f55ae650c8 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketActionManager.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketActionManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnection.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnection.java index 4f55805fe6d..c08167c13c7 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnection.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionManager.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionManager.java index c9bb6fdaa2a..ad5ba6b6a48 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionManager.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionSustainer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionSustainer.java index c5000b372f3..62dbda6d093 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionSustainer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionSustainer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketDispatcher.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketDispatcher.java index e4cdbde9dd0..e1f999610b2 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketDispatcher.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketDispatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketEndpoint.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketEndpoint.java index 565f2a6e0cc..093c830e895 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketEndpoint.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketEndpoint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketFactory.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketFactory.java index 6ea20f62ef2..c14584ff1a0 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketFactory.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketInitializer.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketInitializer.java index 58a10b321a9..f6c475d3f22 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketInitializer.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketJsoWrapper.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketJsoWrapper.java index 50639b3b39d..2df22aefe92 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketJsoWrapper.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketJsoWrapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketPropertyManager.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketPropertyManager.java index 84fa3d96560..1b76e3ee160 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketPropertyManager.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/impl/WebSocketPropertyManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/DtoUnmarshaller.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/DtoUnmarshaller.java index 683da98c988..eb2b6d0ce42 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/DtoUnmarshaller.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/DtoUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/Pair.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/Pair.java index 499fd404ba9..256a9124dfc 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/Pair.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/Pair.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/RequestCallback.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/RequestCallback.java index c00f3bf9be8..ca76f341abe 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/RequestCallback.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/RequestCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/StringUnmarshallerWS.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/StringUnmarshallerWS.java index d9200abdd0a..5da5d71cf7d 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/StringUnmarshallerWS.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/StringUnmarshallerWS.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/SubscriptionHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/SubscriptionHandler.java index f31b848bdf4..4caad5aa95b 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/SubscriptionHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/SubscriptionHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/Unmarshallable.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/Unmarshallable.java index f2384681943..97a5b040a7f 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/Unmarshallable.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/Unmarshallable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.rest; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/exceptions/ServerException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/exceptions/ServerException.java index 7b426bd4726..12f9ffb0203 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/exceptions/ServerException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/exceptions/ServerException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.rest.exceptions; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/exceptions/UnauthorizedException.java b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/exceptions/UnauthorizedException.java index 6edd7bc91d2..33737f5a830 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/exceptions/UnauthorizedException.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/ide/websocket/rest/exceptions/UnauthorizedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.rest.exceptions; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/providers/DynaObject.java b/ide/commons-gwt/src/main/java/org/eclipse/che/providers/DynaObject.java index e51c8f2c1ab..7584baa9955 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/providers/DynaObject.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/providers/DynaObject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.providers; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/providers/DynaProvider.java b/ide/commons-gwt/src/main/java/org/eclipse/che/providers/DynaProvider.java index b26b5cecef2..28fc2e42c11 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/providers/DynaProvider.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/providers/DynaProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.providers; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/ModuleHolder.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/ModuleHolder.java index 8c6af168251..b8946faab83 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/ModuleHolder.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/ModuleHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequireJsLoader.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequireJsLoader.java index 9f37546429d..2feae457c98 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequireJsLoader.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequireJsLoader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/Requirejs.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/Requirejs.java index 1eccca1dcd6..b19865642df 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/Requirejs.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/Requirejs.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsCallback.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsCallback.java index b15ef18dbff..f0b91bd0620 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsCallback.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsErrorHandler.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsErrorHandler.java index c5d25cf83ac..f2c6ca0a055 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsErrorHandler.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsErrorHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsModule.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsModule.java index 47e09e4c176..d6a0f050ad0 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsModule.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/RequirejsModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/AssocitativeJsObject.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/AssocitativeJsObject.java index c1cbaebfd71..97ac84c7dd5 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/AssocitativeJsObject.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/AssocitativeJsObject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/BundlesConfigProperty.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/BundlesConfigProperty.java index 465c4260ada..f8f1fe29c50 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/BundlesConfigProperty.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/BundlesConfigProperty.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ConfigConfigProperty.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ConfigConfigProperty.java index ede2a87ec7b..b3e4169f363 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ConfigConfigProperty.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ConfigConfigProperty.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ConfigItem.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ConfigItem.java index 8125f8e80ef..605d09e7658 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ConfigItem.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ConfigItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/MapConfigProperty.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/MapConfigProperty.java index b3cb55c80e3..75941937f71 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/MapConfigProperty.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/MapConfigProperty.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/MapItem.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/MapItem.java index 13f223de577..3defeff89b8 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/MapItem.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/MapItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/PathsConfigProperty.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/PathsConfigProperty.java index e69f78f5e4a..936e6d9cf26 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/PathsConfigProperty.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/PathsConfigProperty.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/RequirejsConfig.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/RequirejsConfig.java index 31b2afab5c9..d91ecfbd2a9 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/RequirejsConfig.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/RequirejsConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ShimConfigProperty.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ShimConfigProperty.java index 61e373f4ccf..2a2d52babc3 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ShimConfigProperty.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ShimConfigProperty.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ShimItem.java b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ShimItem.java index 3aec293922f..8c2c58030c7 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ShimItem.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/requirejs/conf/ShimItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.requirejs.conf; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/JsOAuthWindow.java b/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/JsOAuthWindow.java index a527e4f6be0..8ca2aaedff7 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/JsOAuthWindow.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/JsOAuthWindow.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/OAuthCallback.java b/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/OAuthCallback.java index d417036cb3e..849ea86b480 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/OAuthCallback.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/OAuthCallback.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/OAuthStatus.java b/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/OAuthStatus.java index 6d3bee84d8c..44efeb0ba9f 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/OAuthStatus.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/security/oauth/OAuthStatus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/ide/commons-gwt/src/main/java/org/eclipse/che/test/GwtReflectionUtils.java b/ide/commons-gwt/src/main/java/org/eclipse/che/test/GwtReflectionUtils.java index a592c58f20e..0f697022ad3 100644 --- a/ide/commons-gwt/src/main/java/org/eclipse/che/test/GwtReflectionUtils.java +++ b/ide/commons-gwt/src/main/java/org/eclipse/che/test/GwtReflectionUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.test; diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/Requirejs.gwt.xml b/ide/commons-gwt/src/main/resources/org/eclipse/che/Requirejs.gwt.xml index d0ddc04269a..68aa354717c 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/Requirejs.gwt.xml +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/Requirejs.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/api/promises/Promises.gwt.xml b/ide/commons-gwt/src/main/resources/org/eclipse/che/api/promises/Promises.gwt.xml index da0eeaf1b85..14c113fcf7d 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/api/promises/Promises.gwt.xml +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/api/promises/Promises.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/Commons.gwt.xml b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/Commons.gwt.xml index 9c325cbe369..00e702ad9df 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/Commons.gwt.xml +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/Commons.gwt.xml @@ -1,13 +1,13 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/Util.gwt.xml b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/Util.gwt.xml index a38fc8a9506..c52273afe9f 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/Util.gwt.xml +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/Util.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/DialogBox.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/DialogBox.css index aabda045c52..6ee8a41645c 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/DialogBox.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/DialogBox.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external gwt-DialogBox,dialogTop, Caption, dialogTopLeft, dialogTopLeftInner ,dialogTopCenter,dialogTopCenterInner,dialogTopRight, dialogTopRightInner,dialogMiddle,dialogMiddleLeft,dialogMiddleLeftInner,dialogMiddleCenter,dialogMiddleCenterInner,dialogContent, diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/Popup.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/Popup.css index 9692297b780..3fd5973dd6a 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/Popup.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/Popup.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .root { position: absolute; diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/Tooltip.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/Tooltip.css index 89fe7bce587..f57e842adce 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/Tooltip.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/Tooltip.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .tooltipPosition { position: absolute; diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/list/SimpleList.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/list/SimpleList.css index 96a3d1bde9b..83ce712983e 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/list/SimpleList.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/list/SimpleList.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @def menuListBorderPx 1px; @def listItemTopPadding 2px; diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/listbox/ListBox.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/listbox/ListBox.css index 2973ec1c7b1..478915dc197 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/listbox/ListBox.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/listbox/ListBox.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .listBox { display: inline-block; diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/listbox/arrow.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/listbox/arrow.svg index 447efeca7dd..e018ef1d35a 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/listbox/arrow.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/listbox/arrow.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/PopupLoaderMessages.properties b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/PopupLoaderMessages.properties index 2f447341041..d77f164dbbc 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/PopupLoaderMessages.properties +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/PopupLoaderMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # startingWorkspaceRuntime.title = Starting workspace runtime diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/Loader.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/Loader.css index ad2b5a5d5dd..c3b81d92eaa 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/Loader.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/Loader.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @url pinionIcon pinionIcon; @eval expanderColor org.eclipse.che.ide.api.theme.Style.theme.loaderExpanderColor(); diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/arrow.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/arrow.svg index 23858992403..ee6dd315d84 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/arrow.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/arrow.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/done.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/done.svg index 45066c7ad31..f2dff123fa3 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/done.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/done.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/error.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/error.svg index 613e712edf6..79f4deebda2 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/error.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/error.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/expansionIcon.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/expansionIcon.svg index ea711837fda..6846c781703 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/expansionIcon.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/expansionIcon.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/loaderIcon.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/loaderIcon.svg index 2656299794f..3a7c8c08cdf 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/loaderIcon.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/initialization/loaderIcon.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/request/RequestLoader.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/request/RequestLoader.css index 4fd9a1d6389..11792e0422d 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/request/RequestLoader.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/request/RequestLoader.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .glass { position: absolute; diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/request/progress.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/request/progress.svg index 9d696e0be28..407742c299a 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/request/progress.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/loaders/request/progress.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/FileTreeSection.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/FileTreeSection.css index a5f34dadb45..36377ff5900 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/FileTreeSection.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/FileTreeSection.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .root { position: absolute; diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/Tree.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/Tree.css index 60dc224219e..714773f9dad 100755 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/Tree.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/Tree.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /* Default annotated CSS for Tree.java */ /* @def treeIndent 14px; */ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/collapsedIcon.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/collapsedIcon.svg index 2917e92dd6d..c105e0b74fd 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/collapsedIcon.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/collapsedIcon.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/expandedIcon.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/expandedIcon.svg index 01d0e338af0..3df91a61287 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/expandedIcon.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/tree/expandedIcon.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboard.css b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboard.css index 3195f2e4729..061281e8a6e 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboard.css +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboard.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external .zeroclipboard-is-hover; diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardConstant.properties b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardConstant.properties index 9a30bc1f750..3a72b63a4b8 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardConstant.properties +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/ZeroClipboardConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ###########PROMPTS################## diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/clipboard.svg b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/clipboard.svg index ba53fa3e86b..526c941f85f 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/clipboard.svg +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/ui/zeroclipboard/clipboard.svg @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/useragents.gwt.xml b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/useragents.gwt.xml index 0afc995f87c..b32028a2029 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/useragents.gwt.xml +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/ide/useragents.gwt.xml @@ -1,13 +1,13 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/providers/Providers.gwt.xml b/ide/commons-gwt/src/main/resources/org/eclipse/che/providers/Providers.gwt.xml index 39a62d1ba9c..72f40004cf0 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/providers/Providers.gwt.xml +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/providers/Providers.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/main/resources/org/eclipse/che/security/OAuth.gwt.xml b/ide/commons-gwt/src/main/resources/org/eclipse/che/security/OAuth.gwt.xml index 6541f89595a..2179d8d2cf2 100644 --- a/ide/commons-gwt/src/main/resources/org/eclipse/che/security/OAuth.gwt.xml +++ b/ide/commons-gwt/src/main/resources/org/eclipse/che/security/OAuth.gwt.xml @@ -1,14 +1,14 @@ diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/jsonrpc/JsonRpcErrorTransmitterTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/jsonrpc/JsonRpcErrorTransmitterTest.java index ef2cd2bdb82..81706bf44ff 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/jsonrpc/JsonRpcErrorTransmitterTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/jsonrpc/JsonRpcErrorTransmitterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/jsonrpc/WebSocketJsonRpcInitializerTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/jsonrpc/WebSocketJsonRpcInitializerTest.java index e98c8e897c0..fe89a183067 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/jsonrpc/WebSocketJsonRpcInitializerTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/jsonrpc/WebSocketJsonRpcInitializerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jsonrpc; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/resource/PathTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/resource/PathTest.java index 31deaf8bc6f..c93d075f029 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/resource/PathTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/resource/PathTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.resource; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/ArraysTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/ArraysTest.java index 65c603dc9b0..79329872822 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/ArraysTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/ArraysTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/BytesTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/BytesTest.java index ae3f864ab0d..b2c50e94018 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/BytesTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/BytesTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/NameUtilsTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/NameUtilsTest.java index 9815b29271f..d0f06c10a9c 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/NameUtilsTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/NameUtilsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/TextUtilsTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/TextUtilsTest.java index eb049fa8af0..ade7196709e 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/TextUtilsTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/TextUtilsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/UUIDTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/UUIDTest.java index 0243c63ef77..b135094929e 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/UUIDTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/util/UUIDTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.util; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketEndpointTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketEndpointTest.java index 55a9447dab8..ccbb8aaf804 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketEndpointTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketEndpointTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketMessageTransmitterTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketMessageTransmitterTest.java index a023653754b..d0f9b5fb9ee 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketMessageTransmitterTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/BasicWebSocketMessageTransmitterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/MessagesReSenderTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/MessagesReSenderTest.java index f6a895d8a5f..c5afa4d0de0 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/MessagesReSenderTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/MessagesReSenderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/UrlResolverTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/UrlResolverTest.java index 811c815118d..7a841e03432 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/UrlResolverTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/UrlResolverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionManagerTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionManagerTest.java index 1b9d0e4f509..e79fe417fb2 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionManagerTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionSustainerTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionSustainerTest.java index 98f12a86017..715e120c67c 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionSustainerTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketConnectionSustainerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketDispatcherTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketDispatcherTest.java index 26c3ded1ac0..5ffff2d2f97 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketDispatcherTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketDispatcherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketInitializerTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketInitializerTest.java index 80aa90c89f2..b918751f464 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketInitializerTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketInitializerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketPropertyManagerTest.java b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketPropertyManagerTest.java index ad8007288f8..5695b2c7bf0 100644 --- a/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketPropertyManagerTest.java +++ b/ide/commons-gwt/src/test/java/org/eclipse/che/ide/websocket/impl/WebSocketPropertyManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.websocket.impl; diff --git a/ide/gwt-logger/pom.xml b/ide/gwt-logger/pom.xml index 57ede4a6a4f..a7546883661 100644 --- a/ide/gwt-logger/pom.xml +++ b/ide/gwt-logger/pom.xml @@ -1,14 +1,14 @@ diff --git a/ide/gwt-logger/src/main/java/org/eclipse/che/ide/logger/slf4j/gwtbackend/GWTLoggerFactory.java b/ide/gwt-logger/src/main/java/org/eclipse/che/ide/logger/slf4j/gwtbackend/GWTLoggerFactory.java index d570e8eae5f..8631396967c 100644 --- a/ide/gwt-logger/src/main/java/org/eclipse/che/ide/logger/slf4j/gwtbackend/GWTLoggerFactory.java +++ b/ide/gwt-logger/src/main/java/org/eclipse/che/ide/logger/slf4j/gwtbackend/GWTLoggerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.logger.slf4j.gwtbackend; diff --git a/ide/gwt-logger/src/main/java/org/eclipse/che/ide/logger/slf4j/gwtbackend/GwtLoggerSlf4jBackend.java b/ide/gwt-logger/src/main/java/org/eclipse/che/ide/logger/slf4j/gwtbackend/GwtLoggerSlf4jBackend.java index 5b64229f504..c2fa47bc8b4 100644 --- a/ide/gwt-logger/src/main/java/org/eclipse/che/ide/logger/slf4j/gwtbackend/GwtLoggerSlf4jBackend.java +++ b/ide/gwt-logger/src/main/java/org/eclipse/che/ide/logger/slf4j/gwtbackend/GwtLoggerSlf4jBackend.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.logger.slf4j.gwtbackend; diff --git a/ide/gwt-logger/src/main/resources/org/eclipse/che/ide/logger/slf4j/Logging.gwt.xml b/ide/gwt-logger/src/main/resources/org/eclipse/che/ide/logger/slf4j/Logging.gwt.xml index 006599c7e67..e0b311c3b29 100644 --- a/ide/gwt-logger/src/main/resources/org/eclipse/che/ide/logger/slf4j/Logging.gwt.xml +++ b/ide/gwt-logger/src/main/resources/org/eclipse/che/ide/logger/slf4j/Logging.gwt.xml @@ -1,13 +1,13 @@ diff --git a/ide/pom.xml b/ide/pom.xml index c3af0995a27..3a9e70641b7 100644 --- a/ide/pom.xml +++ b/ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/pom.xml b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/pom.xml index b0431c5db01..30c998e3c79 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/pom.xml +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppExtension.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppExtension.java index 1a219979c73..d00d23eeee6 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppExtension.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppLocalizationConstant.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppLocalizationConstant.java index 2bfbbf1a9c9..92fc26fa0c5 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppLocalizationConstant.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppResources.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppResources.java index 50dd5732cc9..2ecd2db8652 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppResources.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/CppResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateCSourceFileAction.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateCSourceFileAction.java index c5b2814bbf6..333a5d27d82 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateCSourceFileAction.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateCSourceFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide.action; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateCppSourceFileAction.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateCppSourceFileAction.java index 9077e294aab..f2e9c12cb8e 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateCppSourceFileAction.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateCppSourceFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide.action; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateHeaderSourceFileAction.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateHeaderSourceFileAction.java index 12592050ba4..524867b66e3 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateHeaderSourceFileAction.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/CreateHeaderSourceFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide.action; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/NewClikeResourceAction.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/NewClikeResourceAction.java index eda0e416c06..ae04474428e 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/NewClikeResourceAction.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/action/NewClikeResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide.action; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/inject/CppGinModule.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/inject/CppGinModule.java index 774d3d228a6..810c12da57f 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/inject/CppGinModule.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/inject/CppGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide.inject; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/project/CProjectWizardRegistrar.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/project/CProjectWizardRegistrar.java index 0a225ee41b2..0108a897eff 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/project/CProjectWizardRegistrar.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/project/CProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide.project; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/project/CppProjectWizardRegistrar.java b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/project/CppProjectWizardRegistrar.java index 379496017e0..5d59e310680 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/project/CppProjectWizardRegistrar.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/java/org/eclipse/che/plugin/cpp/ide/project/CppProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.ide.project; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/Cpp.gwt.xml b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/Cpp.gwt.xml index 7c3c2ff6e0e..475e33505ef 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/Cpp.gwt.xml +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/Cpp.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/CppLocalizationConstant.properties b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/CppLocalizationConstant.properties index ecb3dc8e272..9d632a95b8d 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/CppLocalizationConstant.properties +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/CppLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # # diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/c_file.svg b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/c_file.svg index 2d22c2d071c..5a32e198d2d 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/c_file.svg +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/c_file.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/c_header_file.svg b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/c_header_file.svg index 1eb02882052..e92b44dd5e1 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/c_header_file.svg +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/c_header_file.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/category.svg b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/category.svg index 2d22c2d071c..5a32e198d2d 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/category.svg +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/category.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/cpp_file.svg b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/cpp_file.svg index 2d22c2d071c..5a32e198d2d 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/cpp_file.svg +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-ide/src/main/resources/org/eclipse/che/plugin/cpp/ide/svg/cpp_file.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-server/pom.xml b/plugins/plugin-cpp/che-plugin-cpp-lang-server/pom.xml index bd37bdd0f62..b49eeae2217 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-server/pom.xml +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/generator/CProjectGenerator.java b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/generator/CProjectGenerator.java index c88a00e0f2e..bffee39521e 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/generator/CProjectGenerator.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/generator/CProjectGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.generator; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/generator/CppProjectGenerator.java b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/generator/CppProjectGenerator.java index d4cb21639b7..f3722dd4d4f 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/generator/CppProjectGenerator.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/generator/CppProjectGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.generator; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/inject/CppModule.java b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/inject/CppModule.java index af421383ef5..ff71e5cb006 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/inject/CppModule.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/inject/CppModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.inject; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/projecttype/CProjectType.java b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/projecttype/CProjectType.java index cc1ae9ac3af..62ddbb871fd 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/projecttype/CProjectType.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/projecttype/CProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.projecttype; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/projecttype/CppProjectType.java b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/projecttype/CppProjectType.java index 3979fe3d0e6..791f7f47ba9 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/projecttype/CppProjectType.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-server/src/main/java/org/eclipse/che/plugin/cpp/projecttype/CppProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.projecttype; diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-shared/pom.xml b/plugins/plugin-cpp/che-plugin-cpp-lang-shared/pom.xml index 87093baa063..2860b051de4 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-shared/pom.xml +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-cpp/che-plugin-cpp-lang-shared/src/main/java/org/eclipse/che/plugin/cpp/shared/Constants.java b/plugins/plugin-cpp/che-plugin-cpp-lang-shared/src/main/java/org/eclipse/che/plugin/cpp/shared/Constants.java index 4083d8235d9..4d035e407f9 100644 --- a/plugins/plugin-cpp/che-plugin-cpp-lang-shared/src/main/java/org/eclipse/che/plugin/cpp/shared/Constants.java +++ b/plugins/plugin-cpp/che-plugin-cpp-lang-shared/src/main/java/org/eclipse/che/plugin/cpp/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.cpp.shared; diff --git a/plugins/plugin-cpp/pom.xml b/plugins/plugin-cpp/pom.xml index 84a33a318f6..6666ca201f0 100644 --- a/plugins/plugin-cpp/pom.xml +++ b/plugins/plugin-cpp/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/pom.xml b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/pom.xml index 7a539b9a041..bfa3faab4bb 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/pom.xml +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpExtension.java b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpExtension.java index 66f43bcfdc5..5dfe16a1520 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpExtension.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.ide; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpLocalizationConstant.java b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpLocalizationConstant.java index f3b28c06cfa..f498eea1cff 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpLocalizationConstant.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.ide; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpResources.java b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpResources.java index ae1867042a0..992ebe2ce28 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpResources.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/CSharpResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.ide; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/action/CreateCSharpSourceFileAction.java b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/action/CreateCSharpSourceFileAction.java index 3f19094286b..a0d07c79f20 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/action/CreateCSharpSourceFileAction.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/action/CreateCSharpSourceFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.ide.action; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/action/NewCSharplikeResourceAction.java b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/action/NewCSharplikeResourceAction.java index 960bcbbf70b..800220f3d5d 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/action/NewCSharplikeResourceAction.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/action/NewCSharplikeResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.ide.action; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/inject/CSharpGinModule.java b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/inject/CSharpGinModule.java index 0e8101e56f4..a036190759d 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/inject/CSharpGinModule.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/inject/CSharpGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.ide.inject; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/project/CSharpProjectWizardRegistrar.java b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/project/CSharpProjectWizardRegistrar.java index de95ab4bb67..7f25b67d815 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/project/CSharpProjectWizardRegistrar.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/java/org/eclipse/che/plugin/csharp/ide/project/CSharpProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.ide.project; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/CSharp.gwt.xml b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/CSharp.gwt.xml index 7c3c2ff6e0e..475e33505ef 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/CSharp.gwt.xml +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/CSharp.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/ide/svg/category.svg b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/ide/svg/category.svg index 8ed780d5c91..c28c1c494a0 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/ide/svg/category.svg +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/ide/svg/category.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/ide/svg/csharp_file.svg b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/ide/svg/csharp_file.svg index 7829f0c6feb..972854a6473 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/ide/svg/csharp_file.svg +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-ide/src/main/resources/org/eclipse/che/plugin/csharp/ide/svg/csharp_file.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-server/pom.xml b/plugins/plugin-csharp/che-plugin-csharp-lang-server/pom.xml index e9167f753c9..4078d9bac75 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-server/pom.xml +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/inject/CSharpModule.java b/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/inject/CSharpModule.java index 98257c5ffdc..ff12abd9713 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/inject/CSharpModule.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/inject/CSharpModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.inject; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/languageserver/CSharpLanguageServerLauncher.java b/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/languageserver/CSharpLanguageServerLauncher.java index b8aa8958216..27f2024d63e 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/languageserver/CSharpLanguageServerLauncher.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/languageserver/CSharpLanguageServerLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.languageserver; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/projecttype/CSharpProjectType.java b/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/projecttype/CSharpProjectType.java index f511707039f..59e099fc4e4 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/projecttype/CSharpProjectType.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/projecttype/CSharpProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.projecttype; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/projecttype/CreateNetCoreProjectHandler.java b/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/projecttype/CreateNetCoreProjectHandler.java index d47c3e68ea0..7d355b38e83 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/projecttype/CreateNetCoreProjectHandler.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-server/src/main/java/org/eclipse/che/plugin/csharp/projecttype/CreateNetCoreProjectHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.projecttype; diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-shared/pom.xml b/plugins/plugin-csharp/che-plugin-csharp-lang-shared/pom.xml index 3f0cfa2e7d5..53533815ac5 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-shared/pom.xml +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-csharp/che-plugin-csharp-lang-shared/src/main/java/org/eclipse/che/plugin/csharp/shared/Constants.java b/plugins/plugin-csharp/che-plugin-csharp-lang-shared/src/main/java/org/eclipse/che/plugin/csharp/shared/Constants.java index d2e78cfaa2a..bcc6de3dc78 100644 --- a/plugins/plugin-csharp/che-plugin-csharp-lang-shared/src/main/java/org/eclipse/che/plugin/csharp/shared/Constants.java +++ b/plugins/plugin-csharp/che-plugin-csharp-lang-shared/src/main/java/org/eclipse/che/plugin/csharp/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.csharp.shared; diff --git a/plugins/plugin-csharp/pom.xml b/plugins/plugin-csharp/pom.xml index a198be1c36c..dcc0bdcdffd 100644 --- a/plugins/plugin-csharp/pom.xml +++ b/plugins/plugin-csharp/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-dashboard/che-plugin-ext-dashboard/pom.xml b/plugins/plugin-dashboard/che-plugin-ext-dashboard/pom.xml index c15c21c9c95..03d9af1e001 100644 --- a/plugins/plugin-dashboard/che-plugin-ext-dashboard/pom.xml +++ b/plugins/plugin-dashboard/che-plugin-ext-dashboard/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardExtension.java b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardExtension.java index 911390d8095..fefed87b614 100644 --- a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardExtension.java +++ b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.dashboard.client; diff --git a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardLocalizationConstant.java b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardLocalizationConstant.java index 6efb7e1cd87..b200b060bf0 100644 --- a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardLocalizationConstant.java +++ b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.dashboard.client; diff --git a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardResources.java b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardResources.java index 0d636cd7526..cca81287962 100644 --- a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardResources.java +++ b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/DashboardResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.dashboard.client; diff --git a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/RedirectToDashboardAction.java b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/RedirectToDashboardAction.java index 822130d923b..56981b8437c 100644 --- a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/RedirectToDashboardAction.java +++ b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/java/org/eclipse/che/ide/ext/dashboard/client/RedirectToDashboardAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.dashboard.client; diff --git a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/Dashboard.gwt.xml b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/Dashboard.gwt.xml index 48846c07ccb..4fed2709b2a 100644 --- a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/Dashboard.gwt.xml +++ b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/Dashboard.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/client/Dashboard.css b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/client/Dashboard.css index 7b8adf0a535..fb4b66cf86b 100644 --- a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/client/Dashboard.css +++ b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/client/Dashboard.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .dashboardArrow { position: absolute; diff --git a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/client/DashboardLocalizationConstant.properties b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/client/DashboardLocalizationConstant.properties index b676b1b698c..f098ed762b4 100644 --- a/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/client/DashboardLocalizationConstant.properties +++ b/plugins/plugin-dashboard/che-plugin-ext-dashboard/src/main/resources/org/eclipse/che/ide/ext/dashboard/client/DashboardLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ############### Redirect Action ############################### diff --git a/plugins/plugin-dashboard/pom.xml b/plugins/plugin-dashboard/pom.xml index 6b6968e478a..75ce6a6f2e3 100644 --- a/plugins/plugin-dashboard/pom.xml +++ b/plugins/plugin-dashboard/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/pom.xml b/plugins/plugin-debugger/che-plugin-debugger-ide/pom.xml index 4958393154e..052cea481f2 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/pom.xml +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerExtension.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerExtension.java index ef67596e855..fb61d91bff2 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerExtension.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerLocalizationConstant.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerLocalizationConstant.java index db7fc45d11d..9d0c046f721 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerLocalizationConstant.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerResources.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerResources.java index 9eab8ece007..3bfd5cdbfdc 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerResources.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/DebuggerResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ChangeVariableValueAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ChangeVariableValueAction.java index 87fa9e40b12..e7ae99db97e 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ChangeVariableValueAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ChangeVariableValueAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DebugAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DebugAction.java index df1bbe3cfca..04a2fe52c85 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DebugAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DebugAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DeleteAllBreakpointsAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DeleteAllBreakpointsAction.java index 0def8a67b8f..36c79427f92 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DeleteAllBreakpointsAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DeleteAllBreakpointsAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DisconnectDebuggerAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DisconnectDebuggerAction.java index 10321eb4c65..99b47a32f22 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DisconnectDebuggerAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/DisconnectDebuggerAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/EditConfigurationsAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/EditConfigurationsAction.java index c051df79970..d39d21004a0 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/EditConfigurationsAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/EditConfigurationsAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/EvaluateExpressionAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/EvaluateExpressionAction.java index 5796080ffba..6b476d27d6b 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/EvaluateExpressionAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/EvaluateExpressionAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ResumeExecutionAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ResumeExecutionAction.java index 661a1f882e5..c12351f4115 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ResumeExecutionAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ResumeExecutionAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ShowHideDebuggerPanelAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ShowHideDebuggerPanelAction.java index 580ebc206d4..8a5deb7412c 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ShowHideDebuggerPanelAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/ShowHideDebuggerPanelAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepIntoAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepIntoAction.java index d18f5b5ba07..d5fbc9cbb17 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepIntoAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepIntoAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepOutAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepOutAction.java index a622a97c9ec..f17e8364c35 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepOutAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepOutAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepOverAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepOverAction.java index 4cea6049055..aa447d5ea6a 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepOverAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/StepOverAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/SuspendAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/SuspendAction.java index 55fa6554191..152b875358e 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/SuspendAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/actions/SuspendAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.actions; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationAction.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationAction.java index 2be4d8ae2a8..515385bb430 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationAction.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationActionFactory.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationActionFactory.java index 27b8cb8dd6c..bcf26d9fb12 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationActionFactory.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationActionFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationTypeRegistry.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationTypeRegistry.java index 1a3accaa5c6..af2630cbe8a 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationTypeRegistry.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationTypeRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationsGroup.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationsGroup.java index 7294eec1aca..f1e9d09f94f 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationsGroup.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationsGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationsManagerImpl.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationsManagerImpl.java index e04d333e306..7d3242e2b64 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationsManagerImpl.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/DebugConfigurationsManagerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditConfigurationsResources.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditConfigurationsResources.java index 446d61bc697..57b856c7d7d 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditConfigurationsResources.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditConfigurationsResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsPresenter.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsPresenter.java index 0e3eedfb52a..fe092213110 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsPresenter.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsView.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsView.java index c1ce63102db..7957c03111d 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsView.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsViewImpl.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsViewImpl.java index 36ccaf1a4f9..755639ebed2 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsViewImpl.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsViewImpl.ui.xml b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsViewImpl.ui.xml index 0ecd30a4384..d8bcb4729f7 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsViewImpl.ui.xml +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/EditDebugConfigurationsViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/dto/DebugConfigurationDto.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/dto/DebugConfigurationDto.java index 34c7ebc2e83..b63c23d5a63 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/dto/DebugConfigurationDto.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/configuration/dto/DebugConfigurationDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.configuration.dto; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/AbstractDebugger.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/AbstractDebugger.java index 5571bffbb4f..96a88c3c32b 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/AbstractDebugger.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/AbstractDebugger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/ActiveFileHandler.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/ActiveFileHandler.java index 07556e05e7e..bfa532b79fe 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/ActiveFileHandler.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/ActiveFileHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/BasicActiveFileHandler.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/BasicActiveFileHandler.java index 8e90ecf20cc..dc8fc630025 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/BasicActiveFileHandler.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/BasicActiveFileHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerEventUnmarshaller.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerEventUnmarshaller.java index ed5efc05d72..031e912a2c4 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerEventUnmarshaller.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerEventUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerPresenter.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerPresenter.java index 7d4642ad055..942bea3a1e7 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerPresenter.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerToolbar.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerToolbar.java index d4345bb79c7..9bd0ba8ed6a 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerToolbar.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerToolbar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerView.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerView.java index 7d2d6b429db..a1b40f805fb 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerView.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerViewImpl.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerViewImpl.java index de9b35a34e6..548e6a51e71 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerViewImpl.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerViewImpl.ui.xml b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerViewImpl.ui.xml index dc0047f81a3..52f2e77285f 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerViewImpl.ui.xml +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/DebuggerViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/VariableNodeDataAdapter.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/VariableNodeDataAdapter.java index e7e55227210..1fab028eb4d 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/VariableNodeDataAdapter.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/VariableNodeDataAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/VariableTreeNodeRenderer.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/VariableTreeNodeRenderer.java index f568f5f0af1..e0b11faafbf 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/VariableTreeNodeRenderer.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/VariableTreeNodeRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValuePresenter.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValuePresenter.java index a805180f54a..733b6d7906a 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValuePresenter.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValuePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug.changevalue; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueView.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueView.java index 29066eed1d9..d0e6ca32f77 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueView.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug.changevalue; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueViewImpl.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueViewImpl.java index d60214308bf..1f98bdda141 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueViewImpl.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug.changevalue; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueViewImpl.ui.xml b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueViewImpl.ui.xml index b5bf38be26d..a2137cc1b7a 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueViewImpl.ui.xml +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/changevalue/ChangeValueViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionPresenter.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionPresenter.java index bea8206d524..3f772a87dfc 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionPresenter.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug.expression; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionView.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionView.java index df4d7b5a354..12c716e8c69 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionView.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug.expression; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionViewImpl.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionViewImpl.java index 8791d501a32..85852a571ba 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionViewImpl.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.debug.expression; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionViewImpl.ui.xml b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionViewImpl.ui.xml index f6d808a5757..50d6b2b72ff 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionViewImpl.ui.xml +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/debug/expression/EvaluateExpressionViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolver.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolver.java index cd98034577a..e63bbd303ab 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolver.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.fqn; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverFactory.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverFactory.java index 7dfc01ef61f..4e76c2f0507 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverFactory.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.fqn; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverObservable.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverObservable.java index 52b51b42b86..9a2098730c5 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverObservable.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverObservable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.fqn; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverObserver.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverObserver.java index 64fca5e6eea..8a3d264db98 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverObserver.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/fqn/FqnResolverObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.fqn; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/inject/DebuggerGinModule.java b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/inject/DebuggerGinModule.java index 2b99ae42173..2ff566be079 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/inject/DebuggerGinModule.java +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/java/org/eclipse/che/plugin/debugger/ide/inject/DebuggerGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.debugger.ide.inject; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/Debugger.gwt.xml b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/Debugger.gwt.xml index 775c30352ee..da7fe46a36c 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/Debugger.gwt.xml +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/Debugger.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/DebuggerLocalizationConstant.properties b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/DebuggerLocalizationConstant.properties index e849d69e26e..7849f1e70fd 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/DebuggerLocalizationConstant.properties +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/DebuggerLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ##### Actions ##### diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/breakpoint.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/breakpoint.svg index a15df4df8fa..28e158871f3 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/breakpoint.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/breakpoint.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/configuration/add-configuration-button.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/configuration/add-configuration-button.svg index f1fa87a6ec5..1fab74c901f 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/configuration/add-configuration-button.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/configuration/add-configuration-button.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/configuration/duplicate-configuration-button.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/configuration/duplicate-configuration-button.svg index f8187656e4e..0d20a28f4a6 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/configuration/duplicate-configuration-button.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/configuration/duplicate-configuration-button.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debug-icon.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debug-icon.svg index 36c3917c3ac..caab03810f9 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debug-icon.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debug-icon.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debug/Debug.css b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debug/Debug.css index a70ba38ebed..1e14214b1b1 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debug/Debug.css +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debug/Debug.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .variable-root { display: inline-block; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debugger.css b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debugger.css index 4b9be7a3e26..90f18aa606f 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debugger.css +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/debugger.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .selectConfigurationBox:first-child > .selectConfigurationsBoxIconPanel:first-child { border-top-left-radius: 2px; diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/disconnect.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/disconnect.svg index f53c7fcfc05..e7db67ad7a9 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/disconnect.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/disconnect.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/edit.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/edit.svg index 181cc6fbc3f..359491f9e87 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/edit.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/edit.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/remove.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/remove.svg index e59afd239b9..de78ca6a323 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/remove.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/remove.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/resume.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/resume.svg index 0d9c101d8b7..d25cc294ca1 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/resume.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/resume.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/stepinto.svg b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/stepinto.svg index 34e2aca27b2..58573ddc282 100644 --- a/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/stepinto.svg +++ b/plugins/plugin-debugger/che-plugin-debugger-ide/src/main/resources/org/eclipse/che/plugin/debugger/ide/stepinto.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-debugger/pom.xml b/plugins/plugin-debugger/pom.xml index d983314ddc2..d0191f2f463 100644 --- a/plugins/plugin-debugger/pom.xml +++ b/plugins/plugin-debugger/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-docker/che-plugin-docker-client/pom.xml b/plugins/plugin-docker/che-plugin-docker-client/pom.xml index 1ad1e0281bf..e145a31a3f6 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/pom.xml +++ b/plugins/plugin-docker/che-plugin-docker-client/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CLibrary.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CLibrary.java index c68d96c5421..f667cc2aa28 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CLibrary.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CLibrary.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CLibraryFactory.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CLibraryFactory.java index ff9ca8b15c9..d9d38c5d187 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CLibraryFactory.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CLibraryFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CgroupOOMDetector.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CgroupOOMDetector.java index eebc55698b4..cdf862e32f1 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CgroupOOMDetector.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/CgroupOOMDetector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerApiVersionPathPrefixProvider.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerApiVersionPathPrefixProvider.java index 11d8d0b9330..e6d9c0774c6 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerApiVersionPathPrefixProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerApiVersionPathPrefixProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerCertificates.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerCertificates.java index 9b5da18f8fd..643304acacb 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerCertificates.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerCertificates.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnector.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnector.java index c3f9b028abb..385acf14c64 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnector.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnectorConfiguration.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnectorConfiguration.java index 5403364d9c9..457b4b9a5cd 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnectorConfiguration.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnectorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnectorProvider.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnectorProvider.java index ddfe1104130..6faea06698d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnectorProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerConnectorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerFileException.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerFileException.java index 8126f186b36..b3564e45cea 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerFileException.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerFileException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerImage.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerImage.java index ad8ba152986..ec202ff41fe 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerImage.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerImage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerOOMDetector.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerOOMDetector.java index ae30229f85d..69679102cb1 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerOOMDetector.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerOOMDetector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryAuthResolver.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryAuthResolver.java index 588956e93bb..1e8ccd79b9b 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryAuthResolver.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryAuthResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryChecker.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryChecker.java index 335db3fce38..2584643fd7f 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryChecker.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryDynamicAuthResolver.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryDynamicAuthResolver.java index 8c7272d60a8..21f14960160 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryDynamicAuthResolver.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerRegistryDynamicAuthResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/Dockerfile.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/Dockerfile.java index 78b962023cc..81c62739696 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/Dockerfile.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/Dockerfile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerfileParser.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerfileParser.java index ae45343191c..454b9ffe5ea 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerfileParser.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/DockerfileParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/Exec.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/Exec.java index fda34f8e0a9..aab4d857f05 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/Exec.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/Exec.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/InitialAuthConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/InitialAuthConfig.java index 120ff3c8d5f..7ec205c5a57 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/InitialAuthConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/InitialAuthConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/JsonMessageReader.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/JsonMessageReader.java index 8a6b12d3a87..96a267690e5 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/JsonMessageReader.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/JsonMessageReader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessage.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessage.java index a0c8327d25c..b3d9b2f0134 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessage.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessageFormatter.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessageFormatter.java index 4f0bc5be38e..6f5941b5641 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessageFormatter.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessageFormatter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessagePumper.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessagePumper.java index 14e7d4196c5..b7d62b3c04d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessagePumper.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/LogMessagePumper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessageFormatter.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessageFormatter.java index ecfee36020f..7fb74700ff9 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessageFormatter.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessageFormatter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessageProcessor.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessageProcessor.java index cbbdd5bbfda..6ff83855b37 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessageProcessor.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessageProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessagePumper.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessagePumper.java index 9191a4c91c3..4fac2e95fc2 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessagePumper.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/MessagePumper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/NoOpDockerRegistryDynamicAuthResolverImpl.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/NoOpDockerRegistryDynamicAuthResolverImpl.java index c40a7339b14..80cc6e1ee86 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/NoOpDockerRegistryDynamicAuthResolverImpl.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/NoOpDockerRegistryDynamicAuthResolverImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/ProgressLineFormatterImpl.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/ProgressLineFormatterImpl.java index f61b75d341c..83f19402940 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/ProgressLineFormatterImpl.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/ProgressLineFormatterImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/ProgressMonitor.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/ProgressMonitor.java index 620f2c54492..df33b5e5c81 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/ProgressMonitor.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/ProgressMonitor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/UserSpecificDockerRegistryCredentialsProvider.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/UserSpecificDockerRegistryCredentialsProvider.java index 0cc14b5521b..a1b5f6deb08 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/UserSpecificDockerRegistryCredentialsProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/UserSpecificDockerRegistryCredentialsProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/ChunkedInputStream.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/ChunkedInputStream.java index 98ce620dc35..825b8e84b27 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/ChunkedInputStream.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/ChunkedInputStream.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/CloseConnectionInputStream.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/CloseConnectionInputStream.java index 7a88d89cf37..7d31796c8e5 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/CloseConnectionInputStream.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/CloseConnectionInputStream.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerConnection.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerConnection.java index c1b703ff936..cb0eb5aa4f5 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerConnection.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerConnection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerConnectionFactory.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerConnectionFactory.java index f8e3e68094f..56b54ff50fe 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerConnectionFactory.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerConnectionFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerResponse.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerResponse.java index 600896d2a80..5d6a28170ce 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerResponse.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/DockerResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/LimitedInputStream.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/LimitedInputStream.java index 5ce0be69d89..2364d11cfcc 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/LimitedInputStream.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/LimitedInputStream.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/TcpConnection.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/TcpConnection.java index e2d0410f806..ae2fd91fe69 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/TcpConnection.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/TcpConnection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/TcpDockerResponse.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/TcpDockerResponse.java index 6640aff9674..1d428fc9a3b 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/TcpDockerResponse.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/TcpDockerResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketConnection.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketConnection.java index 44a678bb7df..5ba8a489600 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketConnection.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketConnection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketDockerResponse.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketDockerResponse.java index 5dea64c0c32..24c14b134e5 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketDockerResponse.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketDockerResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketInputStream.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketInputStream.java index 690d6192837..73d362284cf 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketInputStream.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketInputStream.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketOutputStream.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketOutputStream.java index b6523d1fba4..1e105dbfb60 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketOutputStream.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/connection/UnixSocketOutputStream.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.connection; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/dto/AuthConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/dto/AuthConfig.java index 8627f384d37..e8cc44783b9 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/dto/AuthConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/dto/AuthConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.dto; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/dto/AuthConfigs.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/dto/AuthConfigs.java index 0d83b4a52c4..b7fcf25983f 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/dto/AuthConfigs.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/dto/AuthConfigs.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.dto; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ContainerNotFoundException.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ContainerNotFoundException.java index 208a1bdcfda..3df4a39f873 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ContainerNotFoundException.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ContainerNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.exception; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/DockerException.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/DockerException.java index 3fa572f6afa..43ebdc3698c 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/DockerException.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/DockerException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.exception; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ExecNotFoundException.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ExecNotFoundException.java index a402d3b5264..a560dd927b4 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ExecNotFoundException.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ExecNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.exception; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ImageNotFoundException.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ImageNotFoundException.java index 1f041d1a9fc..4cbb23e866d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ImageNotFoundException.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/ImageNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.exception; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/NetworkNotFoundException.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/NetworkNotFoundException.java index 9b60a962d1e..ff8b935f357 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/NetworkNotFoundException.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/exception/NetworkNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.exception; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/helper/DefaultNetworkFinder.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/helper/DefaultNetworkFinder.java index e49a66d13e6..344007e4d0f 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/helper/DefaultNetworkFinder.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/helper/DefaultNetworkFinder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.helper; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/helper/NetworkFinder.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/helper/NetworkFinder.java index e1552b8b1b6..ebfd2148df9 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/helper/NetworkFinder.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/helper/NetworkFinder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.helper; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Actor.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Actor.java index 5f4156c0cb7..ffec14a8edd 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Actor.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Actor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerCommitted.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerCommitted.java index 4c38effcf37..66db840fd0e 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerCommitted.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerCommitted.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerConfig.java index 1374cc5360e..32e0f57e200 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerCreated.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerCreated.java index 113984882dd..0d0c10bc0c8 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerCreated.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerCreated.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerExitStatus.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerExitStatus.java index a8d9dfeb17f..be7a3eadf7a 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerExitStatus.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerExitStatus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerInfo.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerInfo.java index 52853a3c77a..cfc5896059c 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerInfo.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerListEntry.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerListEntry.java index 5acfd946b6a..58045119bf7 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerListEntry.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerListEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerPort.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerPort.java index 490863e0927..565d7fa8065 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerPort.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerPort.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerProcesses.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerProcesses.java index 744e2efe34c..724d088a872 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerProcesses.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerProcesses.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerResource.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerResource.java index 8b26cb07f89..131d3f464cf 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerResource.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerResource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerState.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerState.java index 8f8401e0072..16fc070f576 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerState.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ContainerState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Event.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Event.java index 509ab0c3c98..396a98ec558 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Event.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Event.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecConfig.java index b4137fa5aa9..725b0e8231d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecCreated.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecCreated.java index 7be2ba1be4d..4c88dd8c61e 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecCreated.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecCreated.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecInfo.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecInfo.java index ef21245d5db..61beaff6a47 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecInfo.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecStart.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecStart.java index 77a72108389..cb231d2aea0 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecStart.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExecStart.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExposedPort.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExposedPort.java index 618d04206e6..81ea3b28a27 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExposedPort.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ExposedPort.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Filters.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Filters.java index 29a059d0edc..69e0bb0de16 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Filters.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Filters.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/HostConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/HostConfig.java index 597b9a3ed90..cb8c5b594fa 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/HostConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/HostConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Image.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Image.java index 810ffb9e330..fea41070fb8 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Image.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Image.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ImageConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ImageConfig.java index c57fe3f8247..575758e9cf9 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ImageConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ImageConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ImageInfo.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ImageInfo.java index 9a374f3f945..25ee3115ae7 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ImageInfo.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ImageInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/LogConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/LogConfig.java index 6cfd3112b06..6ab5bfad5a9 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/LogConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/LogConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/LxcConfParam.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/LxcConfParam.java index b166e9540f4..f3fe6d6ebe4 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/LxcConfParam.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/LxcConfParam.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/NetworkCreated.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/NetworkCreated.java index 6b7687c4459..42546c53f47 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/NetworkCreated.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/NetworkCreated.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/NetworkSettings.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/NetworkSettings.java index 2eae6424fb4..5d59577cee4 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/NetworkSettings.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/NetworkSettings.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Node.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Node.java index ffae18886a0..80de1da9699 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Node.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Node.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/PortBinding.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/PortBinding.java index 72c01719130..72d30982444 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/PortBinding.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/PortBinding.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProcessConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProcessConfig.java index 9cd7ac0a736..7533030d6bb 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProcessConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProcessConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProgressDetail.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProgressDetail.java index 66e49ad5df3..cc50dd3e6ca 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProgressDetail.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProgressDetail.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProgressStatus.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProgressStatus.java index 2782f0f8187..665cd66ede1 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProgressStatus.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/ProgressStatus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/RestartPolicy.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/RestartPolicy.java index a548ed0be3b..08d68e126e0 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/RestartPolicy.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/RestartPolicy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/SystemInfo.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/SystemInfo.java index 13eda526caf..29d3cb435f9 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/SystemInfo.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/SystemInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Ulimit.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Ulimit.java index 1888b72bb9e..8cfb6591f88 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Ulimit.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Ulimit.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Version.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Version.java index 5771b0325e9..98c7220b142 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Version.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Version.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Volume.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Volume.java index c315cd04791..ea28fe4a732 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Volume.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/Volume.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/container/NetworkingConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/container/NetworkingConfig.java index 9d6bae9ba6e..822bbd738de 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/container/NetworkingConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/container/NetworkingConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.container; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/ConnectContainer.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/ConnectContainer.java index 812a0b89333..59570a5abfb 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/ConnectContainer.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/ConnectContainer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/ContainerInNetwork.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/ContainerInNetwork.java index 3c6b569946e..52de876a9b6 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/ContainerInNetwork.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/ContainerInNetwork.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/DisconnectContainer.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/DisconnectContainer.java index 6c4ae40fd18..6e7aaa7a5b7 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/DisconnectContainer.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/DisconnectContainer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/EndpointConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/EndpointConfig.java index 540e32d0722..752f28db32b 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/EndpointConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/EndpointConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/Ipam.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/Ipam.java index 247dbf304e0..23d9f056b4a 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/Ipam.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/Ipam.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/IpamConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/IpamConfig.java index d41d5dbe3be..7e048bb7ab8 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/IpamConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/IpamConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/Network.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/Network.java index a98d5090224..e053ee4475b 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/Network.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/Network.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/NewIpamConfig.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/NewIpamConfig.java index 66e8328ee61..7e8ed665773 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/NewIpamConfig.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/NewIpamConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/NewNetwork.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/NewNetwork.java index 45f2e7fbd08..413da03ff25 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/NewNetwork.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/json/network/NewNetwork.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.json.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/AttachContainerParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/AttachContainerParams.java index b61b70bafe2..b6589866022 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/AttachContainerParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/AttachContainerParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/BuildImageParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/BuildImageParams.java index 5e618e74a2e..faac1c1b2f9 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/BuildImageParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/BuildImageParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CommitParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CommitParams.java index 948c3954cc8..145593243c0 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CommitParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CommitParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CreateContainerParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CreateContainerParams.java index d46c01bb155..fea8430bb32 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CreateContainerParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CreateContainerParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CreateExecParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CreateExecParams.java index de8780265b7..8d8d07acd6d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CreateExecParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/CreateExecParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetContainerLogsParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetContainerLogsParams.java index d21be6a00c4..2155dfbd380 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetContainerLogsParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetContainerLogsParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetEventsParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetEventsParams.java index c069179a397..e9757d0a590 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetEventsParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetEventsParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetExecInfoParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetExecInfoParams.java index 7c56ada63c6..97f728a31e8 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetExecInfoParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetExecInfoParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetResourceParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetResourceParams.java index 86e1ef1e4df..c1f4bd1fe46 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetResourceParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/GetResourceParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/InspectContainerParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/InspectContainerParams.java index dacde6fe7a3..7a8c52a7acb 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/InspectContainerParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/InspectContainerParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/InspectImageParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/InspectImageParams.java index 9ca503181f1..16ccbc8f474 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/InspectImageParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/InspectImageParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/KillContainerParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/KillContainerParams.java index 9f490b5266a..54febb3ced3 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/KillContainerParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/KillContainerParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ListContainersParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ListContainersParams.java index 4eff57f2fa4..f7414f47c0f 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ListContainersParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ListContainersParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ListImagesParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ListImagesParams.java index 5822873a0c6..4db2fc78165 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ListImagesParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ListImagesParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ParamsUtils.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ParamsUtils.java index ee2bb5970c3..b5026357c2d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ParamsUtils.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/ParamsUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PullParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PullParams.java index 84a55ba498a..f0f626e6b5d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PullParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PullParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PushParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PushParams.java index 1ad408b81ac..76a5162222c 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PushParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PushParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PutResourceParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PutResourceParams.java index 124836ecb7b..e1fac5ca4f4 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PutResourceParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/PutResourceParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/RemoveContainerParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/RemoveContainerParams.java index 34f8fb5fa8e..548f705de4f 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/RemoveContainerParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/RemoveContainerParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/RemoveImageParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/RemoveImageParams.java index 6ad9280d1e6..e11c18b890c 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/RemoveImageParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/RemoveImageParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StartContainerParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StartContainerParams.java index b33d4434678..4a207f390dd 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StartContainerParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StartContainerParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StartExecParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StartExecParams.java index d04a7e1069b..39c59f60020 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StartExecParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StartExecParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StopContainerParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StopContainerParams.java index d315a1327fe..cf87f208a48 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StopContainerParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/StopContainerParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/TagParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/TagParams.java index 0243213e95a..f1f2385ebac 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/TagParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/TagParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/TopParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/TopParams.java index 502606d1aed..5ac2e3acddc 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/TopParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/TopParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/WaitContainerParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/WaitContainerParams.java index c44311060fa..1c3d2ff762d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/WaitContainerParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/WaitContainerParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/ConnectContainerToNetworkParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/ConnectContainerToNetworkParams.java index 50859eb4389..472966a9683 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/ConnectContainerToNetworkParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/ConnectContainerToNetworkParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/CreateNetworkParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/CreateNetworkParams.java index 8ebd84cb3b8..f03b30dcf18 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/CreateNetworkParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/CreateNetworkParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/DisconnectContainerFromNetworkParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/DisconnectContainerFromNetworkParams.java index eb9f8d5d754..b998b3f210e 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/DisconnectContainerFromNetworkParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/DisconnectContainerFromNetworkParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/GetNetworksParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/GetNetworksParams.java index 6d32aea13fa..f6f3bc26cd0 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/GetNetworksParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/GetNetworksParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/InspectNetworkParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/InspectNetworkParams.java index c4135a76355..fb57b361a1e 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/InspectNetworkParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/InspectNetworkParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/RemoveNetworkParams.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/RemoveNetworkParams.java index d9d51ffbd55..28199940ef6 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/RemoveNetworkParams.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/params/network/RemoveNetworkParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params.network; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifier.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifier.java index 8791dadcc10..361b705aa91 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifier.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.parser; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifierParser.java b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifierParser.java index 832994dc426..69a28bc90ec 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifierParser.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifierParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.parser; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/main/resources/org/eclipse/che/plugin/docker/client/dto/Dto.gwt.xml b/plugins/plugin-docker/che-plugin-docker-client/src/main/resources/org/eclipse/che/plugin/docker/client/dto/Dto.gwt.xml index ad78b8bcac4..c1378776879 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/main/resources/org/eclipse/che/plugin/docker/client/dto/Dto.gwt.xml +++ b/plugins/plugin-docker/che-plugin-docker-client/src/main/resources/org/eclipse/che/plugin/docker/client/dto/Dto.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerApiVersionPathPrefixProviderTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerApiVersionPathPrefixProviderTest.java index 8439fe53a89..288f262d028 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerApiVersionPathPrefixProviderTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerApiVersionPathPrefixProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerConnectorConfigurationTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerConnectorConfigurationTest.java index 58b85989363..7ef82dde1d6 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerConnectorConfigurationTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerConnectorConfigurationTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerConnectorTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerConnectorTest.java index 59450c3404b..d1ba81b747d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerConnectorTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerConnectorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerRegistryAuthResolverTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerRegistryAuthResolverTest.java index 2e1f9bb4bd7..c9bc831cc45 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerRegistryAuthResolverTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerRegistryAuthResolverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerfileParserTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerfileParserTest.java index e4e51fa619d..53eae9cbba7 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerfileParserTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/DockerfileParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/InitialAuthConfigTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/InitialAuthConfigTest.java index 6676885fd6c..33ceab28c4d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/InitialAuthConfigTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/InitialAuthConfigTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/JsonMessageReaderTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/JsonMessageReaderTest.java index 2f833707bb3..ecdf2272234 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/JsonMessageReaderTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/JsonMessageReaderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/LogMessagePumperTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/LogMessagePumperTest.java index f6b957cdb89..cd43fcc2f7e 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/LogMessagePumperTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/LogMessagePumperTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/SystemInfoDriverStatusTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/SystemInfoDriverStatusTest.java index 378a1859a40..0cad16237ab 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/SystemInfoDriverStatusTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/SystemInfoDriverStatusTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/UserSpecificDockerRegistryCredentialsProviderTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/UserSpecificDockerRegistryCredentialsProviderTest.java index 5ab710c7b4e..f0fcddfb143 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/UserSpecificDockerRegistryCredentialsProviderTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/UserSpecificDockerRegistryCredentialsProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/helper/DefaultNetworkFinderHelperTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/helper/DefaultNetworkFinderHelperTest.java index 31f1c039525..17a3652e02a 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/helper/DefaultNetworkFinderHelperTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/helper/DefaultNetworkFinderHelperTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.helper; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/AttachContainerParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/AttachContainerParamsTest.java index 9f3fb47d462..eafea1aff94 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/AttachContainerParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/AttachContainerParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/BuildImageParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/BuildImageParamsTest.java index 012c45570eb..2c56de38ac0 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/BuildImageParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/BuildImageParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CommitParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CommitParamsTest.java index 62bd765cabf..0f79186811f 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CommitParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CommitParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CreateContainerParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CreateContainerParamsTest.java index 44280e9b8f7..75b1f2fa03c 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CreateContainerParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CreateContainerParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CreateExecParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CreateExecParamsTest.java index a7585ac2d36..15dffba1168 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CreateExecParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/CreateExecParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetContainerLogsParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetContainerLogsParamsTest.java index 0981b76ef77..061aec6c3c2 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetContainerLogsParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetContainerLogsParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetEventsParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetEventsParamsTest.java index 07fa5ae79a8..ca5c7d9112d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetEventsParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetEventsParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetExecInfoParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetExecInfoParamsTest.java index d5f59c8b245..609e4620690 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetExecInfoParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetExecInfoParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetResourceParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetResourceParamsTest.java index dcd2d82b3bf..84c458493c2 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetResourceParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/GetResourceParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/InspectContainerParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/InspectContainerParamsTest.java index a5866e7fcb6..b488444177f 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/InspectContainerParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/InspectContainerParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/InspectImageParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/InspectImageParamsTest.java index 5a489e98ea1..1643fe3c6a5 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/InspectImageParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/InspectImageParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/KillContainerParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/KillContainerParamsTest.java index fbacf0a1cbb..c6d880fc4dd 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/KillContainerParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/KillContainerParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/ListContainersParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/ListContainersParamsTest.java index e8d188d5659..21f5f98ec4c 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/ListContainersParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/ListContainersParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/ListImagesParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/ListImagesParamsTest.java index 781f0d7a802..f127c255f5a 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/ListImagesParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/ListImagesParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PullParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PullParamsTest.java index db047f0ee06..8d6a4a0204e 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PullParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PullParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PushParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PushParamsTest.java index 94e974b2791..fc2cdbfc6f1 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PushParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PushParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PutResourceParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PutResourceParamsTest.java index 743e9b6a66b..6c407f7ff5e 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PutResourceParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/PutResourceParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/RemoveContainerParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/RemoveContainerParamsTest.java index 2be7c19bef7..475567a2ea2 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/RemoveContainerParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/RemoveContainerParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/RemoveImageParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/RemoveImageParamsTest.java index bedd9cf3410..fb704d16d3a 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/RemoveImageParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/RemoveImageParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StartContainerParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StartContainerParamsTest.java index b329adac0d9..22010aef5c2 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StartContainerParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StartContainerParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StartExecParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StartExecParamsTest.java index 760fd9e7ba6..ec59130aee9 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StartExecParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StartExecParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StopContainerParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StopContainerParamsTest.java index 755616e4bc3..c2c1603e54f 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StopContainerParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/StopContainerParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/TagParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/TagParamsTest.java index c281b4bf1bd..fa25839676d 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/TagParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/TagParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/TopParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/TopParamsTest.java index c8a08379864..a63d2b9a858 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/TopParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/TopParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/WaitContainerParamsTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/WaitContainerParamsTest.java index 38140dd7796..84ca2f9ab8a 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/WaitContainerParamsTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/params/WaitContainerParamsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.params; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifierParserTest.java b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifierParserTest.java index 7e4c1fc3ef8..01bc4cb7056 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifierParserTest.java +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/java/org/eclipse/che/plugin/docker/client/parser/DockerImageIdentifierParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.client.parser; diff --git a/plugins/plugin-docker/che-plugin-docker-client/src/test/resources/logback-test.xml b/plugins/plugin-docker/che-plugin-docker-client/src/test/resources/logback-test.xml index b9b78b298c8..74505fa1d92 100644 --- a/plugins/plugin-docker/che-plugin-docker-client/src/test/resources/logback-test.xml +++ b/plugins/plugin-docker/che-plugin-docker-client/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-docker/che-plugin-docker-compose/pom.xml b/plugins/plugin-docker/che-plugin-docker-compose/pom.xml index f20c9abbc92..5ae8cb0d2aa 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/pom.xml +++ b/plugins/plugin-docker/che-plugin-docker-compose/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/BuildContext.java b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/BuildContext.java index 2d377a1da36..13341f902ba 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/BuildContext.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/BuildContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeEnvironment.java b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeEnvironment.java index 434ea66c1c1..5ab0eae87a3 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeEnvironment.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeEnvironment.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeModule.java b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeModule.java index 0ab9960932d..817a923ae10 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeModule.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeServiceImpl.java b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeServiceImpl.java index 62e287b8338..45155cc53e0 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeServiceImpl.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/ComposeServiceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/ComposeEnvironmentParser.java b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/ComposeEnvironmentParser.java index a50002b379b..b2e292b9e1f 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/ComposeEnvironmentParser.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/ComposeEnvironmentParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose.yaml; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/deserializer/CommandDeserializer.java b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/deserializer/CommandDeserializer.java index 54465b41e77..cebb50e3ae3 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/deserializer/CommandDeserializer.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/deserializer/CommandDeserializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose.yaml.deserializer; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/deserializer/EnvironmentDeserializer.java b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/deserializer/EnvironmentDeserializer.java index bb1111362c0..a89c4a3192f 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/deserializer/EnvironmentDeserializer.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/main/java/org/eclipse/che/plugin/docker/compose/yaml/deserializer/EnvironmentDeserializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose.yaml.deserializer; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/BuildContextTest.java b/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/BuildContextTest.java index baf74124081..2791d15e1d9 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/BuildContextTest.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/BuildContextTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose.yaml; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/CommandDeserializerTest.java b/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/CommandDeserializerTest.java index b727f05fff6..ee912428202 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/CommandDeserializerTest.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/CommandDeserializerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose.yaml; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/ComposeEnvironmentParserTest.java b/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/ComposeEnvironmentParserTest.java index ab8e6e651db..212daae087a 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/ComposeEnvironmentParserTest.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/ComposeEnvironmentParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose.yaml; diff --git a/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/EnvironmentDeserializerTest.java b/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/EnvironmentDeserializerTest.java index 609f8461223..ac464a40316 100644 --- a/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/EnvironmentDeserializerTest.java +++ b/plugins/plugin-docker/che-plugin-docker-compose/src/test/java/org/eclipse/che/plugin/docker/compose/yaml/EnvironmentDeserializerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.compose.yaml; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/pom.xml b/plugins/plugin-docker/che-plugin-docker-machine/pom.xml index be9354a9f72..658868d1a83 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/pom.xml +++ b/plugins/plugin-docker/che-plugin-docker-machine/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ApiEndpointEnvVariableProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ApiEndpointEnvVariableProvider.java index 8bb706a771c..418059a5ef3 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ApiEndpointEnvVariableProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ApiEndpointEnvVariableProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/BaseServerEvaluationStrategy.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/BaseServerEvaluationStrategy.java index 73dee6634bb..f7ed452a5c3 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/BaseServerEvaluationStrategy.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/BaseServerEvaluationStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/CheInContainerNetworkProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/CheInContainerNetworkProvider.java index fc3c5da8c9c..0263037a2c4 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/CheInContainerNetworkProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/CheInContainerNetworkProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/CustomServerEvaluationStrategy.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/CustomServerEvaluationStrategy.java index 314a88c96b5..54507dd7486 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/CustomServerEvaluationStrategy.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/CustomServerEvaluationStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerContainerNameGenerator.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerContainerNameGenerator.java index a32e0555513..9513fc05440 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerContainerNameGenerator.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerContainerNameGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerExtraHostsFromPropertyProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerExtraHostsFromPropertyProvider.java index df941fbcf8d..11a6367fbe1 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerExtraHostsFromPropertyProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerExtraHostsFromPropertyProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstance.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstance.java index 67feb753da2..34f42cd5e02 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstance.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstance.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceProcessesCleaner.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceProcessesCleaner.java index ed32b4ba340..21f4dc03854 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceProcessesCleaner.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceProcessesCleaner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceProvider.java index 65d55a8426f..335eeff4d5d 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceStopDetector.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceStopDetector.java index 6da7ca6c8be..d3da070767b 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceStopDetector.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerInstanceStopDetector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineFactory.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineFactory.java index 0c4ee4fa1e0..89551739fd6 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineFactory.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineModule.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineModule.java index c5307e3baf3..7f22dcf1505 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineModule.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineSource.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineSource.java index f14be68de38..2ee8a9753ae 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineSource.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerMachineSource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerProcess.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerProcess.java index d94c3b89899..df8e24fa6be 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerProcess.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/DockerProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/LogMessagePrinter.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/LogMessagePrinter.java index d93547bd2f5..b7cd981fa15 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/LogMessagePrinter.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/LogMessagePrinter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/MachineProviderImpl.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/MachineProviderImpl.java index 5fd1681a896..67ee72ccb46 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/MachineProviderImpl.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/MachineProviderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/WindowsHostUtils.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/WindowsHostUtils.java index 1b20e61c579..f60b67c4385 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/WindowsHostUtils.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/WindowsHostUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/DockerAbandonedResourcesCleaner.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/DockerAbandonedResourcesCleaner.java index 729e3dc0074..417faf0b522 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/DockerAbandonedResourcesCleaner.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/DockerAbandonedResourcesCleaner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.cleaner; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/LocalWorkspaceFilesCleaner.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/LocalWorkspaceFilesCleaner.java index 1411bcf07f0..54e8a0432a6 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/LocalWorkspaceFilesCleaner.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/LocalWorkspaceFilesCleaner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.cleaner; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/RemoveWorkspaceFilesAfterRemoveWorkspaceEventSubscriber.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/RemoveWorkspaceFilesAfterRemoveWorkspaceEventSubscriber.java index 0137d87d1c1..240f84fe8e2 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/RemoveWorkspaceFilesAfterRemoveWorkspaceEventSubscriber.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/cleaner/RemoveWorkspaceFilesAfterRemoveWorkspaceEventSubscriber.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.cleaner; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/dns/DnsResolversModule.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/dns/DnsResolversModule.java index d35368127f1..5d784aab12c 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/dns/DnsResolversModule.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/dns/DnsResolversModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.dns; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/dns/DnsResolversProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/dns/DnsResolversProvider.java index a714b40a314..60f9480af57 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/dns/DnsResolversProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/dns/DnsResolversProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.dns; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerExtServerModule.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerExtServerModule.java index 504d2b1d3b1..a6b8b3b1cd5 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerExtServerModule.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerExtServerModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerMachineExtServerChecker.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerMachineExtServerChecker.java index d581e5bcfaf..9f646c49f16 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerMachineExtServerChecker.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerMachineExtServerChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerMachineTerminalChecker.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerMachineTerminalChecker.java index 2c932f0cc4f..053f3975931 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerMachineTerminalChecker.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/DockerMachineTerminalChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/DockerExtConfBindingProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/DockerExtConfBindingProvider.java index 1d4dbec1d3e..685096756a7 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/DockerExtConfBindingProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/DockerExtConfBindingProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ExecAgentVolumeProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ExecAgentVolumeProvider.java index bc1be1ef1b7..0c81ee825a6 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ExecAgentVolumeProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ExecAgentVolumeProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ExtraVolumeProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ExtraVolumeProvider.java index ca1fd3d4da6..aa2e6eea98d 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ExtraVolumeProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ExtraVolumeProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/JavaOptsEnvVariableProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/JavaOptsEnvVariableProvider.java index 0c9ec5ad240..a93a998bbae 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/JavaOptsEnvVariableProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/JavaOptsEnvVariableProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ProjectsRootEnvVariableProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ProjectsRootEnvVariableProvider.java index 1f6bca93333..61f248ff567 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ProjectsRootEnvVariableProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/ProjectsRootEnvVariableProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/TerminalVolumeProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/TerminalVolumeProvider.java index fbf4780f732..e9a8c2bbe4e 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/TerminalVolumeProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/TerminalVolumeProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/WsAgentVolumeProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/WsAgentVolumeProvider.java index abe4c957911..844ea90e6df 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/WsAgentVolumeProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/ext/provider/WsAgentVolumeProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.ext.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalCheInfrastructureProvisioner.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalCheInfrastructureProvisioner.java index bdbd46c6f8b..09f5f163b66 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalCheInfrastructureProvisioner.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalCheInfrastructureProvisioner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.local; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalDockerModule.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalDockerModule.java index 684b4d92763..7de96a82bae 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalDockerModule.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalDockerModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.local; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalDockerNode.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalDockerNode.java index 0c13d0c562e..ccae4cf572c 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalDockerNode.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/LocalDockerNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.local; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/node/provider/LocalWorkspaceFolderPathProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/node/provider/LocalWorkspaceFolderPathProvider.java index 4fa096978bb..2f31c67c52c 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/node/provider/LocalWorkspaceFolderPathProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/node/provider/LocalWorkspaceFolderPathProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.local.node.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/provider/CheDockerExtraHostProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/provider/CheDockerExtraHostProvider.java index dd0c43a47c2..600b8d37886 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/provider/CheDockerExtraHostProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/provider/CheDockerExtraHostProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.local.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/provider/DockerApiHostEnvVariableProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/provider/DockerApiHostEnvVariableProvider.java index ee9123e5179..47b48bf3718 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/provider/DockerApiHostEnvVariableProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/local/provider/DockerApiHostEnvVariableProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.local.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/node/DockerNode.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/node/DockerNode.java index 14646d6a317..869a6ce5f40 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/node/DockerNode.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/node/DockerNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.node; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/node/WorkspaceFolderPathProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/node/WorkspaceFolderPathProvider.java index 85d16c5506b..14ec5c0eacf 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/node/WorkspaceFolderPathProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/node/WorkspaceFolderPathProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.node; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerEnvironmentParser.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerEnvironmentParser.java index 14975adf0bb..9f47c525b3f 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerEnvironmentParser.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerEnvironmentParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.parser; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerImageEnvironmentParser.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerImageEnvironmentParser.java index 8b00a69b829..6b97cd5fbf5 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerImageEnvironmentParser.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerImageEnvironmentParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.parser; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerfileEnvironmentParser.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerfileEnvironmentParser.java index 93da1b657ea..471cb8655df 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerfileEnvironmentParser.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/parser/DockerfileEnvironmentParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.parser; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/DockerBuildArgsProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/DockerBuildArgsProvider.java index e6cee531c4c..0539c0371e5 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/DockerBuildArgsProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/DockerBuildArgsProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.proxy; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/DockerProxyModule.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/DockerProxyModule.java index abfe6c6d3b0..9e51713f98f 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/DockerProxyModule.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/DockerProxyModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.proxy; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/HttpProxyEnvVariableProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/HttpProxyEnvVariableProvider.java index 5e2fc75cde3..b4e1f4452fe 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/HttpProxyEnvVariableProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/HttpProxyEnvVariableProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.proxy; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/HttpsProxyEnvVariableProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/HttpsProxyEnvVariableProvider.java index 885043e1360..5771a9590ef 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/HttpsProxyEnvVariableProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/HttpsProxyEnvVariableProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.proxy; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/NoProxyEnvVariableProvider.java b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/NoProxyEnvVariableProvider.java index 6e67168ff2e..88c7083b6bd 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/NoProxyEnvVariableProvider.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/main/java/org/eclipse/che/plugin/docker/machine/proxy/NoProxyEnvVariableProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.proxy; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/CustomServerEvaluationStrategyTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/CustomServerEvaluationStrategyTest.java index 4200cb14c20..2bf6209dd68 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/CustomServerEvaluationStrategyTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/CustomServerEvaluationStrategyTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerContainerNameGeneratorTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerContainerNameGeneratorTest.java index 67f649d4df8..b7239351138 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerContainerNameGeneratorTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerContainerNameGeneratorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerInstanceTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerInstanceTest.java index 0e9f10c67d6..1cdc3fa4245 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerInstanceTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerInstanceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineExtServerCheckerTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineExtServerCheckerTest.java index 64b1ac0cdf6..fac21dc1f93 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineExtServerCheckerTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineExtServerCheckerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineSourceTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineSourceTest.java index 4cbec34f4a1..4453332b717 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineSourceTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineSourceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineTerminalCheckerTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineTerminalCheckerTest.java index 7da98f0cea6..c407a5a11fa 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineTerminalCheckerTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/DockerMachineTerminalCheckerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/MachineProviderImplTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/MachineProviderImplTest.java index e2d728eeae7..fa428aee78d 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/MachineProviderImplTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/MachineProviderImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/cleaner/DockerAbandonedResourcesCleanerTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/cleaner/DockerAbandonedResourcesCleanerTest.java index 0e638ba77a1..4527861dd33 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/cleaner/DockerAbandonedResourcesCleanerTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/cleaner/DockerAbandonedResourcesCleanerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.cleaner; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/cleaner/RemoveWorkspaceFilesAfterRemoveWorkspaceEventSubscriberTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/cleaner/RemoveWorkspaceFilesAfterRemoveWorkspaceEventSubscriberTest.java index 88ae771af82..9efa3a4419d 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/cleaner/RemoveWorkspaceFilesAfterRemoveWorkspaceEventSubscriberTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/cleaner/RemoveWorkspaceFilesAfterRemoveWorkspaceEventSubscriberTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.cleaner; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/local/node/provider/LocalWorkspaceFolderPathProviderTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/local/node/provider/LocalWorkspaceFolderPathProviderTest.java index 4e37b3b6844..ada51fe81c0 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/local/node/provider/LocalWorkspaceFolderPathProviderTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/local/node/provider/LocalWorkspaceFolderPathProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.local.node.provider; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/parser/DockerImageEnvironmentParserTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/parser/DockerImageEnvironmentParserTest.java index 36db0d751e7..ca52138730c 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/parser/DockerImageEnvironmentParserTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/parser/DockerImageEnvironmentParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.parser; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/parser/DockerfileEnvironmentParserTest.java b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/parser/DockerfileEnvironmentParserTest.java index 0ced170f9d8..c9133a99c34 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/parser/DockerfileEnvironmentParserTest.java +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/java/org/eclipse/che/plugin/docker/machine/parser/DockerfileEnvironmentParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.docker.machine.parser; diff --git a/plugins/plugin-docker/che-plugin-docker-machine/src/test/resources/logback-test.xml b/plugins/plugin-docker/che-plugin-docker-machine/src/test/resources/logback-test.xml index b9b78b298c8..74505fa1d92 100644 --- a/plugins/plugin-docker/che-plugin-docker-machine/src/test/resources/logback-test.xml +++ b/plugins/plugin-docker/che-plugin-docker-machine/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-docker/pom.xml b/plugins/plugin-docker/pom.xml index 49abbb6edc8..733ddd85eb7 100644 --- a/plugins/plugin-docker/pom.xml +++ b/plugins/plugin-docker/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/pom.xml b/plugins/plugin-gdb/che-plugin-gdb-ide/pom.xml index c6ab9054e2b..63b8f31c987 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/pom.xml +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbDebugger.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbDebugger.java index 6274dbd4b01..7994b49da64 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbDebugger.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbDebugger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbExtension.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbExtension.java index ddbfc9f48be..508b9c8af1b 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbExtension.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbGinModule.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbGinModule.java index a9055de1395..1d609245acc 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbGinModule.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbLocalizationConstant.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbLocalizationConstant.java index 343e66d0f49..afab40112a3 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbLocalizationConstant.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbResources.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbResources.java index fcfe819de17..b3dbb775ade 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbResources.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/GdbResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPagePresenter.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPagePresenter.java index b3d01b10b0d..91e490de99c 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPagePresenter.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide.configuration; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageView.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageView.java index 9c4bdca5b9c..31825cb425a 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageView.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide.configuration; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageViewImpl.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageViewImpl.java index 68429f40aca..056d9dc62cd 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageViewImpl.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide.configuration; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageViewImpl.ui.xml b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageViewImpl.ui.xml index 79c00a0c6bd..4f6f27dfa65 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageViewImpl.ui.xml +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/resources/org/eclipse/che/plugin/gdb/ide/GdbLocalizationConstant.properties b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/resources/org/eclipse/che/plugin/gdb/ide/GdbLocalizationConstant.properties index d48dc5fdaaf..436f0194a2d 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/resources/org/eclipse/che/plugin/gdb/ide/GdbLocalizationConstant.properties +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/resources/org/eclipse/che/plugin/gdb/ide/GdbLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # # GdbConfigurationPage diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/resources/org/eclipse/che/plugin/gdb/ide/configuration/gdb-configuration-type.svg b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/resources/org/eclipse/che/plugin/gdb/ide/configuration/gdb-configuration-type.svg index c7e4bc6eac3..d8c438a6be1 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/resources/org/eclipse/che/plugin/gdb/ide/configuration/gdb-configuration-type.svg +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/main/resources/org/eclipse/che/plugin/gdb/ide/configuration/gdb-configuration-type.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPagePresenterTest.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPagePresenterTest.java index 838d7830ebc..3ef8f6e297f 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPagePresenterTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide.configuration; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationTypeTest.java b/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationTypeTest.java index f6b6f864f4a..e8669df98e1 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationTypeTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/java/org/eclipse/che/plugin/gdb/ide/configuration/GdbConfigurationTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.ide.configuration; diff --git a/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/resources/logback-test.xml b/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/resources/logback-test.xml index fe0f22d1e39..e947ae78528 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/resources/logback-test.xml +++ b/plugins/plugin-gdb/che-plugin-gdb-ide/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/pom.xml b/plugins/plugin-gdb/che-plugin-gdb-server/pom.xml index 0ab5e8c4165..83b9f54239a 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/pom.xml +++ b/plugins/plugin-gdb/che-plugin-gdb-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/Gdb.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/Gdb.java index c1b4779b281..58500d4d6c2 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/Gdb.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/Gdb.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebugger.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebugger.java index 06d165ca6b5..10d766ba704 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebugger.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebugger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerFactory.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerFactory.java index a73d778b5c4..2655a8a13d0 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerFactory.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerModule.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerModule.java index 298da784a94..31a9897c6f2 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerModule.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbProcess.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbProcess.java index c52065118a6..3e5173885a1 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbProcess.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/GdbProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbException.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbException.java index 7d34a82cf30..28074efe184 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbException.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.exception; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbParseException.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbParseException.java index cf0fe0a2ba0..994c9e38a9e 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbParseException.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbParseException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.exception; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbTerminatedException.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbTerminatedException.java index c108d6f3eed..111d453514d 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbTerminatedException.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/exception/GdbTerminatedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.exception; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbBacktrace.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbBacktrace.java index 4872d462e43..af5f03f8035 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbBacktrace.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbBacktrace.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbBreak.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbBreak.java index 7f374aff29e..8ffce658e27 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbBreak.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbBreak.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbClear.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbClear.java index 820d09224e1..6550e51baa5 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbClear.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbClear.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbContinue.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbContinue.java index efbc1d25e6b..b54b57e7ca4 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbContinue.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbContinue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbDelete.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbDelete.java index 3077c451b81..e48a9b20ec6 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbDelete.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbDelete.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbDirectory.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbDirectory.java index 30e884fba9c..23d11b478fd 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbDirectory.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbDirectory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbFile.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbFile.java index c2de00f1616..b32d0457109 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbFile.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoArgs.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoArgs.java index b143bcc1224..41f81704633 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoArgs.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoArgs.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoBreak.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoBreak.java index 2c1fc6a7380..b3e95d3acc2 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoBreak.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoBreak.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLine.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLine.java index a6ab0640b53..79cc07ca2b3 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLine.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLine.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLocals.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLocals.java index a3eef416eb6..b0c192838d3 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLocals.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLocals.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoProgram.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoProgram.java index 87f61807090..01fed047566 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoProgram.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoProgram.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbOutput.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbOutput.java index 536e56de631..1d5068da355 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbOutput.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbOutput.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbPType.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbPType.java index bb13fa21962..3e0646c2558 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbPType.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbPType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbPrint.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbPrint.java index 3e3692d7432..c24ad353a0a 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbPrint.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbPrint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbRun.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbRun.java index cc93b11e22f..deedec293df 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbRun.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbRun.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbTargetRemote.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbTargetRemote.java index d900ad6dc34..fd8cbe8b664 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbTargetRemote.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbTargetRemote.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbVersion.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbVersion.java index 50d77384416..d23261358e6 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbVersion.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/GdbVersion.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/ProcessInfo.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/ProcessInfo.java index b0a32fb17a4..47539ac704f 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/ProcessInfo.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/main/java/org/eclipse/che/plugin/gdb/server/parser/ProcessInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerTest.java index f766675b0cb..6a2d19d7abb 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbDebuggerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbServer.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbServer.java index d47572df914..8ccd39d98de 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbServer.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbTest.java index 0ae2fd51c5f..d701ee9e7bf 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/GdbTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbBacktraceTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbBacktraceTest.java index f718c868882..280b708f17b 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbBacktraceTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbBacktraceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbBreakTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbBreakTest.java index 270e775ca37..e081e55621c 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbBreakTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbBreakTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbClearTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbClearTest.java index a612a81eb59..0c825b3f586 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbClearTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbClearTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbDeleteTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbDeleteTest.java index f2e4b7747dc..ae45418da26 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbDeleteTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbDeleteTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbDirectoryTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbDirectoryTest.java index 869b99abfb7..f330d21ac48 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbDirectoryTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbDirectoryTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbFileTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbFileTest.java index 92ddc687a2f..9e06c6be7b1 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbFileTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbFileTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoArgsTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoArgsTest.java index 3e591253748..c8f1f2bc62e 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoArgsTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoArgsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoBreakTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoBreakTest.java index 4b3d3a32c66..8db8d21bc93 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoBreakTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoBreakTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLineTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLineTest.java index 4cc099feda2..19de301a8b5 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLineTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLineTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLocalsTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLocalsTest.java index 4b58389b1ff..10a4cb19ef7 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLocalsTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoLocalsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoProgramTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoProgramTest.java index 14e92776595..3d8fa0a6cbf 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoProgramTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbInfoProgramTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbPTypeTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbPTypeTest.java index 14afc44cfe9..ed305aaaa5d 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbPTypeTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbPTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbPrintTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbPrintTest.java index 973c06dbf8f..b729f5cc3f5 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbPrintTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbPrintTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbRunTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbRunTest.java index 44214569b81..b5a45483d93 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbRunTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbRunTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbTargetRemoteTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbTargetRemoteTest.java index 59c9c0fe357..207b8e0e431 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbTargetRemoteTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbTargetRemoteTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbVersionTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbVersionTest.java index e79dfd09212..6b1e884ea83 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbVersionTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/GdbVersionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/ProcessInfoTest.java b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/ProcessInfoTest.java index 113f98264b0..b9b62742024 100644 --- a/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/ProcessInfoTest.java +++ b/plugins/plugin-gdb/che-plugin-gdb-server/src/test/java/org/eclipse/che/plugin/gdb/server/parser/ProcessInfoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.gdb.server.parser; diff --git a/plugins/plugin-gdb/pom.xml b/plugins/plugin-gdb/pom.xml index 414d77a4436..55758ab65bc 100644 --- a/plugins/plugin-gdb/pom.xml +++ b/plugins/plugin-gdb/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/pom.xml b/plugins/plugin-git/che-plugin-git-ext-git/pom.xml index b318e8a9e54..b4155b9e503 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/pom.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/BranchFilterByRemote.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/BranchFilterByRemote.java index e3ec8118db2..99fa57c9796 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/BranchFilterByRemote.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/BranchFilterByRemote.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/BranchSearcher.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/BranchSearcher.java index b428ced697f..e3771bfdbf9 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/BranchSearcher.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/BranchSearcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/DateTimeFormatter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/DateTimeFormatter.java index e033100b647..fce823f30f5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/DateTimeFormatter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/DateTimeFormatter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitCheckoutStatusNotificationHandler.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitCheckoutStatusNotificationHandler.java index 60c0d6c92cf..65b3fb01dba 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitCheckoutStatusNotificationHandler.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitCheckoutStatusNotificationHandler.java @@ -1,12 +1,12 @@ - /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. +/******************************************************************************* + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitExtension.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitExtension.java index 5dd98ccbea1..3e23cc72448 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitExtension.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java index 7d40a91562f..2f77e48bbe0 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitResources.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitResources.java index 578fac9896b..d43b5268fd6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitResources.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitUtil.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitUtil.java index 31567e4bc4a..fc32459af30 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitUtil.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/AddToIndexAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/AddToIndexAction.java index 8408c6e5426..b390089013d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/AddToIndexAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/AddToIndexAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CheckoutReferenceAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CheckoutReferenceAction.java index 87e02ddda58..126350a21ba 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CheckoutReferenceAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CheckoutReferenceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CommitAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CommitAction.java index c370c25e794..05707014ed2 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CommitAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CommitAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithBranchAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithBranchAction.java index 1b28a7b9045..30f7c400c0c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithBranchAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithBranchAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java index b71cb1dcadc..5bf74d8d2b1 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithRevisionAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithRevisionAction.java index dc5373b22a0..479eb00e9c3 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithRevisionAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithRevisionAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/DeleteRepositoryAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/DeleteRepositoryAction.java index 82fdfe3235a..1e9c1ccc8fd 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/DeleteRepositoryAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/DeleteRepositoryAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/FetchAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/FetchAction.java index 1644f53da07..1a2604e3e9a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/FetchAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/FetchAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/GitAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/GitAction.java index 8554c8f3049..7778b8a63f8 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/GitAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/GitAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/HistoryAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/HistoryAction.java index d441e5b5d59..ff2ddd3d5bb 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/HistoryAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/HistoryAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/InitRepositoryAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/InitRepositoryAction.java index 1b036d558b3..3a1d8287a87 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/InitRepositoryAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/InitRepositoryAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PullAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PullAction.java index 5fd2e6ad6ef..83d8ad383b5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PullAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PullAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PushAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PushAction.java index 1361655b81f..b4918fb8aae 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PushAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PushAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/RemoveFromIndexAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/RemoveFromIndexAction.java index 23c486dcd2d..5f9ea887a8a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/RemoveFromIndexAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/RemoveFromIndexAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ResetFilesAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ResetFilesAction.java index 8c3fa306abc..56ccf57bec5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ResetFilesAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ResetFilesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ResetToCommitAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ResetToCommitAction.java index 159c64b1f08..ebbb9fe2cb0 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ResetToCommitAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ResetToCommitAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowBranchesAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowBranchesAction.java index 6b5e6b0c302..45d3fadbd09 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowBranchesAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowBranchesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowMergeAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowMergeAction.java index f7ad3116dee..206f2d4b1ed 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowMergeAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowMergeAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowRemoteAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowRemoteAction.java index 5f819539e1d..958179051a3 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowRemoteAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowRemoteAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowStatusAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowStatusAction.java index d140f605284..b0c951b2adf 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowStatusAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/ShowStatusAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.action; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexPresenter.java index 6029a6165d1..19f161e946f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.add; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexView.java index b35ec6f415e..411840f23c2 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.add; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexViewImpl.java index 6dbeed8d3fb..d41026e737d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.add; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexViewImpl.ui.xml index 9040ee402b9..f5e29890829 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchPresenter.java index e1db63a3635..fbfc19353c0 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.branch; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchView.java index fc7b5c2376f..6ef528b5592 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.branch; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchViewImpl.java index aa2a650e877..d3b39bbc1c5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.branch; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchViewImpl.ui.xml index eb6a9b414b7..3d73b4e1cdb 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/branch/BranchViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferencePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferencePresenter.java index 9c18b3a0ecc..b9c77e2503f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferencePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferencePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.checkout; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceView.java index 2d12fed2fe1..1d7ea2289ea 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.checkout; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceViewImpl.java index 15638ff0294..9a35b13bfc6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.checkout; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceViewImpl.ui.xml index 5ccfaee3a4b..5784345fc7c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index 571083c867d..f38fcb3f249 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.commit; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java index 91ad7d3c1e6..d7eb8207a78 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.commit; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitViewImpl.java index 4bed1ded2b8..ac830a60519 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.commit; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitViewImpl.ui.xml index 00cfa821433..14f601a89ce 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java index f3d21563c4c..6e469a383b1 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 22a6c24b596..301a97633fa 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java index 88cb6ae926e..1d66490c57a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index 531f41ab9d8..2604fc02e94 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.ui.xml index b027e988b65..51a6d16979d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java index 7a16db4db9b..0ba7c7632da 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changeslist; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListView.java index 8bb86b1888e..d8124bd8c3a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changeslist; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListViewImpl.java index 04ea1ba6056..b3bf034290d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changeslist; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangedFileNode.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangedFileNode.java index ab009601371..1a84ba25034 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangedFileNode.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangedFileNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changespanel; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangedFolderNode.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangedFolderNode.java index 82918135e7b..8d76b4af7e0 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangedFolderNode.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangedFolderNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changespanel; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java index f483466cd7e..452ea573766 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changespanel; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java index 2b1d8a76c0f..8b99034dfef 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changespanel; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java index 06a8c256921..6b53895090b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changespanel; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.ui.xml index 47958e392ae..4b321dc1f9a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ViewMode.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ViewMode.java index d169ab266cd..9e1bc72087a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ViewMode.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ViewMode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.changespanel; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java index 5079b0c96fa..56b5bda60ff 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.revisionslist; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListView.java index ac523e8202a..0119516be68 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.revisionslist; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListViewImpl.java index 21ef08d7bf9..1b475c1fca4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.compare.revisionslist; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListViewImpl.ui.xml index 67617677fe3..afeb92a38a4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/delete/DeleteRepositoryPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/delete/DeleteRepositoryPresenter.java index f88d13dae6c..43e76cec06a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/delete/DeleteRepositoryPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/delete/DeleteRepositoryPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.delete; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchPresenter.java index ea1b2787526..ae44e348957 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.fetch; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchView.java index e7c24962c3c..f918592818a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.fetch; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchViewImpl.java index 91667a57692..9dd5fb59362 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.fetch; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchViewImpl.ui.xml index e9ae9787559..c589c8ab7fe 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/fetch/FetchViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java index a52c04f5950..60b6ef1e27b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.history; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryView.java index 41d785e0305..e0dfa1b5476 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.history; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryViewImpl.java index 60261d5bba6..37b9a8efdf6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.history; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryViewImpl.ui.xml index 0a876e30828..1d45f2daf72 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/GitImportWizardRegistrar.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/GitImportWizardRegistrar.java index 5275527e945..e39a342f0ef 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/GitImportWizardRegistrar.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/GitImportWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.importer; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPagePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPagePresenter.java index 233fd543994..79f56fc921e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPagePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.importer.page; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageView.java index bee9ba6c921..a3761327ab6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.importer.page; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageViewImpl.java index 1a30c74b62f..120a6cf3797 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.importer.page; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageViewImpl.ui.xml index fe352d4a431..7310708a6b5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/Reference.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/Reference.java index 6ba5f822be1..cdb2b53b4c4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/Reference.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/Reference.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.merge; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/ReferenceTreeNodeDataAdapter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/ReferenceTreeNodeDataAdapter.java index 4d6f4a8d63a..f9872300291 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/ReferenceTreeNodeDataAdapter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/ReferenceTreeNodeDataAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.merge; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/ReferenceTreeNodeRenderer.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/ReferenceTreeNodeRenderer.java index 875c47e4c5d..011da584233 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/ReferenceTreeNodeRenderer.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/merge/ReferenceTreeNodeRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.merge; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsole.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsole.java index 6f2ec9bd75f..1d697fa19a5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsole.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsole.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.outputconsole; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsoleFactory.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsoleFactory.java index 7498d1dfe00..7d69e1bc337 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsoleFactory.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsoleFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.outputconsole; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsolePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsolePresenter.java index 71a2a238443..7b811679d1c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsolePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputConsolePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.outputconsole; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartView.java index 4e8556f0c42..4746ad5e335 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.outputconsole; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartViewImpl.java index b914091a8f4..b5864b9882c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.outputconsole; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartViewImpl.ui.xml index 075fa1fc1e0..8ee84d1bdc7 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/outputconsole/GitOutputPartViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferencePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferencePresenter.java index 05b8d49b232..59bafe2750f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferencePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferencePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.preference; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceView.java index 9b46103a7ac..b60890eae07 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.preference; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceViewImpl.java index 7452d6df0f9..2bebb5b4a0c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.preference; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceViewImpl.ui.xml index 717dd3bd6ce..57cb33c75b1 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferenceViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemotePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemotePresenter.java index 8424513998c..20c81caa094 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemotePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemotePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.push; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteView.java index 624687881f4..a815f773977 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.push; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteViewImpl.java index 24c46970e6d..e707554406b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.push; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteViewImpl.ui.xml index e12375ab464..828fe2c335e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/push/PushToRemoteViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemotePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemotePresenter.java index 4397e047508..ffa5963f81d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemotePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemotePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remote; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteView.java index 2e5997757f3..526c176a74f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remote; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteViewImpl.java index 814b87ab219..546e2af5a02 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remote; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteViewImpl.ui.xml index 0130ffb80db..bdd55292f5b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/RemoteViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryPresenter.java index d98c1a8669b..a4bb3b9f349 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remote.add; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryView.java index e5097226a54..ff2fc3d8ae0 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remote.add; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryViewImpl.java index 1d3cf89d5f8..0d92edbbc0b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remote.add; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryViewImpl.ui.xml index cb647b4c84b..c9527624166 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexPresenter.java index 97d93983b71..b8f66a2611a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remove; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexView.java index da17e673163..dfc89bd96e5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remove; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexViewImpl.java index 4f3dbd84397..8253fea4c6f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remove; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexViewImpl.ui.xml index a9d5c752ba8..8436d28bcc4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/remove/RemoveFromIndexViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitPresenter.java index 327255e279b..8a198da91ec 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.reset.commit; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitView.java index f3042cb5a88..ead851c2faa 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.reset.commit; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitViewImpl.java index 3611ed9ceff..d79d0445dd8 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.reset.commit; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitViewImpl.ui.xml index a72e753ca6b..172421dc08b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/commit/ResetToCommitViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesPresenter.java index 99639803b75..08650a3b8af 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.reset.files; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesView.java index 8ee7b3f6226..4c014ab12e4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.reset.files; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesViewImpl.java index bd94e24ad10..ec7118f56c5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.reset.files; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesViewImpl.ui.xml index 4a710781416..ca6d0eb8007 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/status/StatusCommandPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/status/StatusCommandPresenter.java index 33596646470..dc9324319d7 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/status/StatusCommandPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/status/StatusCommandPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.status; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/Git.gwt.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/Git.gwt.xml index 2445ed68713..d04e44f8873 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/Git.gwt.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/Git.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties index b443dd8866c..2b66c3c7e19 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ###########BUTTONS################## diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/branch/current.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/branch/current.svg index 45066c7ad31..f2dff123fa3 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/branch/current.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/branch/current.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/branches.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/branches.svg index 53f10e23e16..b47c87c1664 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/branches.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/branches.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/checkoutReference.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/checkoutReference.svg index 2e36e8bac91..f585becbe28 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/checkoutReference.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/checkoutReference.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/clone.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/clone.svg index a950e334ec2..207f928f896 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/clone.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/clone.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/commit.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/commit.svg index b522a0099d9..ebcff5d5d8f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/commit.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/commit.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/delete-repo.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/delete-repo.svg index 3fdda0035e5..f372e9cd6af 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/delete-repo.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/delete-repo.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/fetch.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/fetch.svg index 08437e35a04..55983e43794 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/fetch.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/fetch.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/git-output-icon.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/git-output-icon.svg index 6b522c19957..2de083d088d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/git-output-icon.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/git-output-icon.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/init.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/init.svg index cd0308abb2f..64c402e034e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/init.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/init.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/merge.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/merge.svg index 5091d240c5e..b32a6cc2006 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/merge.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/merge.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/pull.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/pull.svg index 5279673c87c..78abf2e6e45 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/pull.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/pull.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/push.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/push.svg index 7a92875d096..1a284073081 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/push.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/push.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/remote.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/remote.svg index 1e24dde4160..370fdb48a42 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/remote.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/remote.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/remotes.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/remotes.svg index 4c38526af2b..56aa48ee219 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/remotes.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/controls/remotes.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/git.css b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/git.css index 976da1984b4..efb141775d5 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/git.css +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/git.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .cells { font-family: mainFontFamily; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_index.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_index.svg index e7b76287165..9f1e6b279e6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_index.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_index.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_prev_version.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_prev_version.svg index 8e29ae6f7d4..d579ff77420 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_prev_version.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_prev_version.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_working_dir.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_working_dir.svg index a6f7fc7b782..143db2e9dac 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_working_dir.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/diff_working_dir.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/history.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/history.svg index 0f3d95eed4b..ae21a93e545 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/history.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/history.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/project_level.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/project_level.svg index 291a2ac0a98..a7433869e34 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/project_level.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/project_level.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/refresh.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/refresh.svg index 653747b8fcc..730a729215b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/refresh.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/refresh.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/resource_level.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/resource_level.svg index bebd61afbc8..fa976a93bdb 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/resource_level.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/history/resource_level.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPage.css b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPage.css index 95125884bed..d4bd5004834 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPage.css +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPage.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external .inputError; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/merge/Merge.css b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/merge/Merge.css index 27089ce52a3..6d1ebe21084 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/merge/Merge.css +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/merge/Merge.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .reference-root { display: inline-block; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/push/arrow.svg b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/push/arrow.svg index b7df16ec196..176312965a6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/push/arrow.svg +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/push/arrow.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/reset/commit/custom.css b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/reset/commit/custom.css index e9cb361fc71..b8fbf222985 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/reset/commit/custom.css +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/reset/commit/custom.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .cellTableHeader { border-bottom: 2px solid #6f7277; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/BaseTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/BaseTest.java index 817602789d4..67aa36f8194 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/BaseTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/BaseTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/BranchFilterByRemoteTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/BranchFilterByRemoteTest.java index c160ea72775..72430fdaddd 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/BranchFilterByRemoteTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/BranchFilterByRemoteTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexPresenterTest.java index add8e8bf47d..9c5fd90fc3d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/add/AddToIndexPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.add; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/branch/BranchPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/branch/BranchPresenterTest.java index 1d10acb0dcd..ab68709f7e3 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/branch/BranchPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/branch/BranchPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.branch; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceTest.java index 81f736a8f1f..52531725e06 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/checkout/CheckoutReferenceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.checkout; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java index 136c29e8fa2..eafdf76d71f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.commit; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/fetch/FetchPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/fetch/FetchPresenterTest.java index 7b70aebf050..011ec545e17 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/fetch/FetchPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/fetch/FetchPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.fetch; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java index 483dca8444a..2972db2169e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.history; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPagePresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPagePresenterTest.java index 5f5154410ba..c4513d2a070 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPagePresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/importer/page/GitImporterPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.importer.page; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/init/InitRepositoryPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/init/InitRepositoryPresenterTest.java index b038ac78495..6d6b76a158d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/init/InitRepositoryPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/init/InitRepositoryPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.init; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/merge/MergePresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/merge/MergePresenterTest.java index 0b515f24f56..832a1acf024 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/merge/MergePresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/merge/MergePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.merge; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/JsOAuthWindowPatcher.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/JsOAuthWindowPatcher.java index c41b3ca73fd..92b72471485 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/JsOAuthWindowPatcher.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/JsOAuthWindowPatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.patcher; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/JsoArrayPatcher.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/JsoArrayPatcher.java index 8fecd39b652..9f6d5f6a192 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/JsoArrayPatcher.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/JsoArrayPatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.patcher; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/WindowPatcher.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/WindowPatcher.java index c11cf756c82..e8c4e5ed51b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/WindowPatcher.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/patcher/WindowPatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.patcher; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferencePresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferencePresenterTest.java index 89fb60d82d1..a45ac52ef3f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferencePresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/preference/CommitterPreferencePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.preference; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryPresenterTest.java index 8c56f0ae3c6..3775731ce83 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/remote/add/AddRemoteRepositoryPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.remote.add; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesPresenterTest.java index 33b24e3ddac..5d539313796 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/reset/files/ResetFilesPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.reset.files; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/status/StatusCommandPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/status/StatusCommandPresenterTest.java index a2d55beb96e..e40fc9ed492 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/status/StatusCommandPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/status/StatusCommandPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.client.status; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/resources/META-INF/gwt-test-utils.properties b/plugins/plugin-git/che-plugin-git-ext-git/src/test/resources/META-INF/gwt-test-utils.properties index d80473c84f5..b1aa818dc2e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/resources/META-INF/gwt-test-utils.properties +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/resources/META-INF/gwt-test-utils.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # org.eclipse.che.ide.ext.git.Git=gwt-module diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/resources/logback-test.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/test/resources/logback-test.xml index b9b78b298c8..74505fa1d92 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/resources/logback-test.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-git/pom.xml b/plugins/plugin-git/pom.xml index aee37fe7b9f..71ed3d7bd99 100644 --- a/plugins/plugin-git/pom.xml +++ b/plugins/plugin-git/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/pom.xml b/plugins/plugin-github/che-plugin-github-factory-resolver/pom.xml index 8f11f2b2a49..d3dfdeba8b4 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/pom.xml +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GitHubFactoryModule.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GitHubFactoryModule.java index 895a4899a6a..4d355054aff 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GitHubFactoryModule.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GitHubFactoryModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubFactoryParametersResolver.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubFactoryParametersResolver.java index 1c263e0292a..fa0624e0f51 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubFactoryParametersResolver.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubFactoryParametersResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubSourceStorageBuilder.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubSourceStorageBuilder.java index 7889499d4e1..fa3178cfe1e 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubSourceStorageBuilder.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubSourceStorageBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParser.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParser.java index 1f8321ded18..ace81e5cb3d 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParser.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParserImpl.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParserImpl.java index 76d9bf53b6d..f675033aebd 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParserImpl.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParserImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubUrl.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubUrl.java index 60e84fe715f..c7cae5dffbc 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubUrl.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/GithubUrl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/LegacyGithubURLParser.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/LegacyGithubURLParser.java index 090ed820a02..f48bfc54f8e 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/LegacyGithubURLParser.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/main/java/org/eclipse/che/plugin/github/factory/resolver/LegacyGithubURLParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubFactoryParametersResolverTest.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubFactoryParametersResolverTest.java index 94e73b867d7..79608f402b6 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubFactoryParametersResolverTest.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubFactoryParametersResolverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParserTest.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParserTest.java index 8ca836d0e91..ba5871a0fed 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParserTest.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubURLParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubUrlTest.java b/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubUrlTest.java index 741ee2f28c3..2b9e435748f 100644 --- a/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubUrlTest.java +++ b/plugins/plugin-github/che-plugin-github-factory-resolver/src/test/java/org/eclipse/che/plugin/github/factory/resolver/GithubUrlTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.factory.resolver; diff --git a/plugins/plugin-github/che-plugin-github-ide/pom.xml b/plugins/plugin-github/che-plugin-github-ide/pom.xml index 87c65e97980..daca3186e34 100644 --- a/plugins/plugin-github/che-plugin-github-ide/pom.xml +++ b/plugins/plugin-github/che-plugin-github-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubClientService.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubClientService.java index 4fa6a2b9871..a6c83989eb3 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubClientService.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubClientService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubClientServiceImpl.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubClientServiceImpl.java index aef1bdfeb2e..80f28845b89 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubClientServiceImpl.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubClientServiceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubExtension.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubExtension.java index 4ac9b869a7e..ca8c5e003e7 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubExtension.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubLocalizationConstant.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubLocalizationConstant.java index 7225641d031..60623ff5037 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubLocalizationConstant.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubResources.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubResources.java index 9fbd7a266dc..3f01d68bb97 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubResources.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubSshKeyUploader.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubSshKeyUploader.java index 9cc53b0a2ba..3e115ad223b 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubSshKeyUploader.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/GitHubSshKeyUploader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorImpl.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorImpl.java index bb102e43bb8..21ccbd9dd56 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorImpl.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.authenticator; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorView.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorView.java index 1b4fb58349b..775dd6df761 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorView.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.authenticator; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorViewImpl.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorViewImpl.java index 227f3d31ecf..ba781d239dd 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorViewImpl.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.authenticator; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/GitHubImportWizardRegistrar.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/GitHubImportWizardRegistrar.java index fefc6142d1d..3f0a49ab9ef 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/GitHubImportWizardRegistrar.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/GitHubImportWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.importer; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPagePresenter.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPagePresenter.java index 1002956f03a..ff12a27cb12 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPagePresenter.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.importer.page; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageView.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageView.java index 92367d977a9..c47785707c6 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageView.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.importer.page; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageViewImpl.java b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageViewImpl.java index 4200fef7a8d..fa5685440f3 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageViewImpl.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.importer.page; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageViewImpl.ui.xml b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageViewImpl.ui.xml index 1dc880173aa..0a16d6eb454 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageViewImpl.ui.xml +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/resources/org/eclipse/che/plugin/github/ide/GitHubLocalizationConstant.properties b/plugins/plugin-github/che-plugin-github-ide/src/main/resources/org/eclipse/che/plugin/github/ide/GitHubLocalizationConstant.properties index 2edfc9458db..70c02274a5d 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/resources/org/eclipse/che/plugin/github/ide/GitHubLocalizationConstant.properties +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/resources/org/eclipse/che/plugin/github/ide/GitHubLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ############### ImportFromGitHub ############### diff --git a/plugins/plugin-github/che-plugin-github-ide/src/main/resources/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPage.css b/plugins/plugin-github/che-plugin-github-ide/src/main/resources/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPage.css index 62d1a2eb604..1700be1cc45 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/main/resources/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPage.css +++ b/plugins/plugin-github/che-plugin-github-ide/src/main/resources/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPage.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external .inputError; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/test/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorImplTest.java b/plugins/plugin-github/che-plugin-github-ide/src/test/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorImplTest.java index 26146bed0ed..70c88340c78 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/test/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorImplTest.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/test/java/org/eclipse/che/plugin/github/ide/authenticator/GitHubAuthenticatorImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.authenticator; diff --git a/plugins/plugin-github/che-plugin-github-ide/src/test/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPagePresenterTest.java b/plugins/plugin-github/che-plugin-github-ide/src/test/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPagePresenterTest.java index 92f92614169..666535f4f89 100644 --- a/plugins/plugin-github/che-plugin-github-ide/src/test/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPagePresenterTest.java +++ b/plugins/plugin-github/che-plugin-github-ide/src/test/java/org/eclipse/che/plugin/github/ide/importer/page/GithubImporterPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.ide.importer.page; diff --git a/plugins/plugin-github/che-plugin-github-oauth2/pom.xml b/plugins/plugin-github/che-plugin-github-oauth2/pom.xml index ff4f0c97b80..fdad8b2a77e 100644 --- a/plugins/plugin-github/che-plugin-github-oauth2/pom.xml +++ b/plugins/plugin-github/che-plugin-github-oauth2/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GitHubOAuthAuthenticator.java b/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GitHubOAuthAuthenticator.java index 1c3f63d039d..f9c66bf41a5 100644 --- a/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GitHubOAuthAuthenticator.java +++ b/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GitHubOAuthAuthenticator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GitHubUser.java b/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GitHubUser.java index cefafd00b3f..2fd93db901b 100644 --- a/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GitHubUser.java +++ b/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GitHubUser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GithubModule.java b/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GithubModule.java index 93a339e8d9b..663f6e66560 100644 --- a/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GithubModule.java +++ b/plugins/plugin-github/che-plugin-github-oauth2/src/main/java/org/eclipse/che/security/oauth/GithubModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/plugins/plugin-github/che-plugin-github-provider-github/pom.xml b/plugins/plugin-github/che-plugin-github-provider-github/pom.xml index fca70d3f3f5..dce9a2bd5c0 100644 --- a/plugins/plugin-github/che-plugin-github-provider-github/pom.xml +++ b/plugins/plugin-github/che-plugin-github-provider-github/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-provider-github/src/main/java/org/eclipse/che/ide/ext/git/server/github/GitHubOAuthCredentialProvider.java b/plugins/plugin-github/che-plugin-github-provider-github/src/main/java/org/eclipse/che/ide/ext/git/server/github/GitHubOAuthCredentialProvider.java index fbc5dd49b5f..6a791dab632 100644 --- a/plugins/plugin-github/che-plugin-github-provider-github/src/main/java/org/eclipse/che/ide/ext/git/server/github/GitHubOAuthCredentialProvider.java +++ b/plugins/plugin-github/che-plugin-github-provider-github/src/main/java/org/eclipse/che/ide/ext/git/server/github/GitHubOAuthCredentialProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.server.github; diff --git a/plugins/plugin-github/che-plugin-github-provider-github/src/main/java/org/eclipse/che/ide/ext/git/server/github/GithubGitModule.java b/plugins/plugin-github/che-plugin-github-provider-github/src/main/java/org/eclipse/che/ide/ext/git/server/github/GithubGitModule.java index 0a869035f9f..5f8314b6944 100644 --- a/plugins/plugin-github/che-plugin-github-provider-github/src/main/java/org/eclipse/che/ide/ext/git/server/github/GithubGitModule.java +++ b/plugins/plugin-github/che-plugin-github-provider-github/src/main/java/org/eclipse/che/ide/ext/git/server/github/GithubGitModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.git.server.github; diff --git a/plugins/plugin-github/che-plugin-github-pullrequest/pom.xml b/plugins/plugin-github/che-plugin-github-pullrequest/pom.xml index 61062b38844..ad78e7cd655 100644 --- a/plugins/plugin-github/che-plugin-github-pullrequest/pom.xml +++ b/plugins/plugin-github/che-plugin-github-pullrequest/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubContributionWorkflow.java b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubContributionWorkflow.java index cb5c1c560aa..3b8fc07202a 100644 --- a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubContributionWorkflow.java +++ b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubContributionWorkflow.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client; diff --git a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubHostingService.java b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubHostingService.java index fad220a84da..e2835dd26c8 100644 --- a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubHostingService.java +++ b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubHostingService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client; diff --git a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubTemplates.java b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubTemplates.java index 3a8c62e3dc8..8a71f1d446c 100644 --- a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubTemplates.java +++ b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GitHubTemplates.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client; diff --git a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GithubStagesProvider.java b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GithubStagesProvider.java index 0c983f7c506..4970f41e66e 100644 --- a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GithubStagesProvider.java +++ b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/GithubStagesProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client; diff --git a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/inject/GithubPullRequestGinModule.java b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/inject/GithubPullRequestGinModule.java index 8a08991894e..9b37a4f5ae0 100644 --- a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/inject/GithubPullRequestGinModule.java +++ b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/java/org/eclipse/che/plugin/pullrequest/client/inject/GithubPullRequestGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.inject; diff --git a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/resources/org/eclipse/che/plugin/pullrequest/GithubPullRequest.gwt.xml b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/resources/org/eclipse/che/plugin/pullrequest/GithubPullRequest.gwt.xml index d969cbb510d..1fb0057c78d 100644 --- a/plugins/plugin-github/che-plugin-github-pullrequest/src/main/resources/org/eclipse/che/plugin/pullrequest/GithubPullRequest.gwt.xml +++ b/plugins/plugin-github/che-plugin-github-pullrequest/src/main/resources/org/eclipse/che/plugin/pullrequest/GithubPullRequest.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-server/pom.xml b/plugins/plugin-github/che-plugin-github-server/pom.xml index 9234c865435..4b075547ec2 100644 --- a/plugins/plugin-github/che-plugin-github-server/pom.xml +++ b/plugins/plugin-github/che-plugin-github-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubDTOFactory.java b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubDTOFactory.java index fd8005efd97..77b43d3176c 100644 --- a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubDTOFactory.java +++ b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubDTOFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.server; diff --git a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubFactory.java b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubFactory.java index b3480f2e764..e55c6e3a3f8 100644 --- a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubFactory.java +++ b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.server; diff --git a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubKeyUploader.java b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubKeyUploader.java index be09745e94e..e693227fa92 100644 --- a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubKeyUploader.java +++ b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubKeyUploader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.server; diff --git a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubProjectImporter.java b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubProjectImporter.java index 7a5df5b80dc..164f43f890f 100644 --- a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubProjectImporter.java +++ b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/GitHubProjectImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.server; diff --git a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/inject/GitHubModule.java b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/inject/GitHubModule.java index 89f2766d4ef..a2722445ff2 100644 --- a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/inject/GitHubModule.java +++ b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/inject/GitHubModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.server.inject; diff --git a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/rest/GitHubService.java b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/rest/GitHubService.java index b654daea22a..e5be552b590 100644 --- a/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/rest/GitHubService.java +++ b/plugins/plugin-github/che-plugin-github-server/src/main/java/org/eclipse/che/plugin/github/server/rest/GitHubService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.server.rest; diff --git a/plugins/plugin-github/che-plugin-github-shared/pom.xml b/plugins/plugin-github/che-plugin-github-shared/pom.xml index 115554f79fa..683fbf9fad1 100644 --- a/plugins/plugin-github/che-plugin-github-shared/pom.xml +++ b/plugins/plugin-github/che-plugin-github-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/Collaborators.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/Collaborators.java index f374ef0e3f9..91043f0a747 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/Collaborators.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/Collaborators.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubIssueComment.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubIssueComment.java index 8dea328a78d..2643a32da1d 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubIssueComment.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubIssueComment.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubIssueCommentInput.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubIssueCommentInput.java index 11129c36c95..663f16a41f5 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubIssueCommentInput.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubIssueCommentInput.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubKey.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubKey.java index cb9b6a50fd2..372f76fbf48 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubKey.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubKey.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequest.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequest.java index 01cce000c1d..9c26fcfc9bf 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequest.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestCreationInput.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestCreationInput.java index 6f4f5f995da..47d0064bae5 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestCreationInput.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestCreationInput.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestHead.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestHead.java index 492db61ef33..d830cbb92a3 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestHead.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestHead.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestList.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestList.java index 423f89d7abc..4b3f47dbcd0 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestList.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubPullRequestList.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubRepository.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubRepository.java index 1c5966c12a8..075b6a40cdd 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubRepository.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubRepository.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubRepositoryList.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubRepositoryList.java index 7be78f252ed..78f83bad7ab 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubRepositoryList.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubRepositoryList.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubUser.java b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubUser.java index f5140b03a90..f7aa6c306fb 100644 --- a/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubUser.java +++ b/plugins/plugin-github/che-plugin-github-shared/src/main/java/org/eclipse/che/plugin/github/shared/GitHubUser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.github.shared; diff --git a/plugins/plugin-github/pom.xml b/plugins/plugin-github/pom.xml index d210edf1318..0728c5cf89c 100644 --- a/plugins/plugin-github/pom.xml +++ b/plugins/plugin-github/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/pom.xml b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/pom.xml index 762b2294764..39d96298de1 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/pom.xml +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtExtension.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtExtension.java index c838295f41c..48edf5181ed 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtExtension.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtGinModule.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtGinModule.java index 81875d9de11..dc21c63a2cc 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtGinModule.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtLocalizationConstants.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtLocalizationConstants.java index cd41fe593ed..e81b954e681 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtLocalizationConstants.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtLocalizationConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtResources.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtResources.java index f872e979a81..fdcad18632a 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtResources.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/GwtResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandModel.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandModel.java index 635b780eedc..7aeb5eaa285 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandModel.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client.command; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPagePresenter.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPagePresenter.java index 3145719fd38..e37903aefb2 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPagePresenter.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client.command; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageView.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageView.java index ba09cdc43fc..fdf4d3bb5ea 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageView.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client.command; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageViewImpl.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageViewImpl.java index f2e3c39ed85..44cf8d8dfd3 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageViewImpl.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client.command; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageViewImpl.ui.xml b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageViewImpl.ui.xml index 93af7984c64..c2f11bed283 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageViewImpl.ui.xml +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/resources/org/eclipse/che/ide/ext/gwt/client/GwtLocalizationConstants.properties b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/resources/org/eclipse/che/ide/ext/gwt/client/GwtLocalizationConstants.properties index 98934321500..718c36240a8 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/resources/org/eclipse/che/ide/ext/gwt/client/GwtLocalizationConstants.properties +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/resources/org/eclipse/che/ide/ext/gwt/client/GwtLocalizationConstants.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ##### GwtCommandPageView ##### diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/resources/org/eclipse/che/ide/ext/gwt/client/images/gwt-command-type.svg b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/resources/org/eclipse/che/ide/ext/gwt/client/images/gwt-command-type.svg index c7e4bc6eac3..d8c438a6be1 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/resources/org/eclipse/che/ide/ext/gwt/client/images/gwt-command-type.svg +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/main/resources/org/eclipse/che/ide/ext/gwt/client/images/gwt-command-type.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/test/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandTypeTest.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/test/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandTypeTest.java index a6f45f80d9d..13b63dba569 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/test/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandTypeTest.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/test/java/org/eclipse/che/ide/ext/gwt/client/command/GwtCommandTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client.command; diff --git a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/test/java/org/eclipse/che/ide/ext/gwt/client/command/GwtPagePresenterTest.java b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/test/java/org/eclipse/che/ide/ext/gwt/client/command/GwtPagePresenterTest.java index 24e9bc5dea6..c3de4183e4e 100644 --- a/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/test/java/org/eclipse/che/ide/ext/gwt/client/command/GwtPagePresenterTest.java +++ b/plugins/plugin-gwt/che-plugin-gwt-ext-gwt/src/test/java/org/eclipse/che/ide/ext/gwt/client/command/GwtPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.gwt.client.command; diff --git a/plugins/plugin-gwt/pom.xml b/plugins/plugin-gwt/pom.xml index b603c1c792e..867a7faf593 100644 --- a/plugins/plugin-gwt/pom.xml +++ b/plugins/plugin-gwt/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-help/che-plugin-help-ext-client/pom.xml b/plugins/plugin-help/che-plugin-help-ext-client/pom.xml index 1ea080836f7..e34e21c8429 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/pom.xml +++ b/plugins/plugin-help/che-plugin-help-ext-client/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/AboutResources.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/AboutResources.java index ce7f13fbcb7..c062539c1ba 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/AboutResources.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/AboutResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/BuildInfo.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/BuildInfo.java index 446ff8884a2..156096fe4f6 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/BuildInfo.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/BuildInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/HelpAboutExtension.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/HelpAboutExtension.java index c0b29b57eb8..a5ab19aa98f 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/HelpAboutExtension.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/HelpAboutExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/HelpExtensionLocalizationConstant.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/HelpExtensionLocalizationConstant.java index 7b728bc4acf..f44f994a0ea 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/HelpExtensionLocalizationConstant.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/HelpExtensionLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/RedirectToSupportAction.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/RedirectToSupportAction.java index 152b0b305a6..c600bdedda3 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/RedirectToSupportAction.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/RedirectToSupportAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutLocalizationConstant.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutLocalizationConstant.java index 98aa04f1757..cecb01c6bfb 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutLocalizationConstant.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client.about; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutPresenter.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutPresenter.java index 41756ba4daf..aef48a6b27b 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutPresenter.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client.about; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutView.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutView.java index c6a37c0295f..ffb913f3cc5 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutView.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client.about; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutViewImpl.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutViewImpl.java index 2050e0e4498..4def8eb72d3 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutViewImpl.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client.about; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutViewImpl.ui.xml b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutViewImpl.ui.xml index e74bd19f4ad..4e440ff2ee0 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutViewImpl.ui.xml +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/AboutViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/ShowAboutAction.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/ShowAboutAction.java index 3f03decf333..5571ded5b68 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/ShowAboutAction.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/about/ShowAboutAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client.about; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/inject/HelpAboutGinModule.java b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/inject/HelpAboutGinModule.java index 5689aa3cd02..2488cfad6e4 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/inject/HelpAboutGinModule.java +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/java/org/eclipse/che/ide/ext/help/client/inject/HelpAboutGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.help.client.inject; diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/HelpAboutExtension.gwt.xml b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/HelpAboutExtension.gwt.xml index 5535001de82..598fe0fd63c 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/HelpAboutExtension.gwt.xml +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/HelpAboutExtension.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/About.css b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/About.css index c6fb97a6534..473c9a31a88 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/About.css +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/About.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval logoFill org.eclipse.che.ide.api.theme.Style.getLogoFill(); diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/HelpExtensionLocalizationConstant.properties b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/HelpExtensionLocalizationConstant.properties index 9d1476d136b..9cb54c4195c 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/HelpExtensionLocalizationConstant.properties +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/HelpExtensionLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/about/AboutLocalizationConstant.properties b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/about/AboutLocalizationConstant.properties index 576f27b33ab..650aabc99ac 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/about/AboutLocalizationConstant.properties +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/about/AboutLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # about.control.title = About diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/actions/about.svg b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/actions/about.svg index ec2298b0c2f..7ee5fff05bf 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/actions/about.svg +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/actions/about.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/actions/support.svg b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/actions/support.svg index 31ba6dbbd67..efde0db069d 100644 --- a/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/actions/support.svg +++ b/plugins/plugin-help/che-plugin-help-ext-client/src/main/resources/org/eclipse/che/ide/ext/help/client/actions/support.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-help/pom.xml b/plugins/plugin-help/pom.xml index 14b97d850d7..5eade172058 100644 --- a/plugins/plugin-help/pom.xml +++ b/plugins/plugin-help/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/pom.xml b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/pom.xml index 1c7c153cc53..b06d4f0168f 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/pom.xml +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerExtension.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerExtension.java index 11d4402b8d4..7bd2f57196f 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerExtension.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.ide; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerLocalizationConstant.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerLocalizationConstant.java index 9b758cfd7fe..b1c8bb0e074 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerLocalizationConstant.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.ide; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerResources.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerResources.java index fcf536e3ae0..17533915c77 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerResources.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/JavaDebuggerResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.ide; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPagePresenter.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPagePresenter.java index 82136d2ba17..be46079ad63 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPagePresenter.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.ide.configuration; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageView.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageView.java index e607a56e044..d47efc4b73c 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageView.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.ide.configuration; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageViewImpl.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageViewImpl.java index c3b9b279df1..27afb465949 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageViewImpl.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.ide.configuration; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageViewImpl.ui.xml b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageViewImpl.ui.xml index 830c0cb527d..22ec4f6534c 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageViewImpl.ui.xml +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/resources/org/eclipse/che/plugin/jdb/ide/JavaDebuggerLocalizationConstant.properties b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/resources/org/eclipse/che/plugin/jdb/ide/JavaDebuggerLocalizationConstant.properties index 8c9a2413d9c..11fa609dac2 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/resources/org/eclipse/che/plugin/jdb/ide/JavaDebuggerLocalizationConstant.properties +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/resources/org/eclipse/che/plugin/jdb/ide/JavaDebuggerLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # # JavaDebugConfigurationPage diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/resources/org/eclipse/che/plugin/jdb/ide/configuration/java-debug-configuration-type.svg b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/resources/org/eclipse/che/plugin/jdb/ide/configuration/java-debug-configuration-type.svg index c7e4bc6eac3..d8c438a6be1 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/resources/org/eclipse/che/plugin/jdb/ide/configuration/java-debug-configuration-type.svg +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/main/resources/org/eclipse/che/plugin/jdb/ide/configuration/java-debug-configuration-type.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPagePresenterTest.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPagePresenterTest.java index b163cda4c39..c4e03ffb719 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPagePresenterTest.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.ide.configuration; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationTypeTest.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationTypeTest.java index fb4e8153165..013984a860e 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationTypeTest.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/java/org/eclipse/che/plugin/jdb/ide/configuration/JavaDebugConfigurationTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.ide.configuration; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/resources/logback-test.xml b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/resources/logback-test.xml index fe0f22d1e39..e947ae78528 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/resources/logback-test.xml +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-ide/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/pom.xml b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/pom.xml index 6da449beebf..fab9a4984a8 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/pom.xml +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/BreakPointComparator.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/BreakPointComparator.java index 4ab0c67415a..060fa24e435 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/BreakPointComparator.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/BreakPointComparator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/EventsCollector.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/EventsCollector.java index a775a00cab9..8f19202ed54 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/EventsCollector.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/EventsCollector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/EventsHandler.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/EventsHandler.java index 067823ef12c..cb0ed72daaa 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/EventsHandler.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/EventsHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebugger.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebugger.java index 88d277697d5..e65353de213 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebugger.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebugger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerFactory.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerFactory.java index d18fa5a1c26..1600a29d4e6 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerFactory.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerModule.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerModule.java index fdaef34c49a..19051abcf43 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerModule.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiArrayElement.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiArrayElement.java index d2bb1ea3252..0b6c483e18b 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiArrayElement.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiArrayElement.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiArrayElementImpl.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiArrayElementImpl.java index 9746facb68a..68387e4698a 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiArrayElementImpl.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiArrayElementImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiField.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiField.java index 2dacdab65d7..2bdc0f2eea2 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiField.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiField.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiFieldImpl.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiFieldImpl.java index 65db4de87d8..b86745ab69a 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiFieldImpl.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiFieldImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiLocalVariable.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiLocalVariable.java index f1dc3a8bd37..9f1ee22d7f1 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiLocalVariable.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiLocalVariable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiLocalVariableImpl.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiLocalVariableImpl.java index bab5193c2ed..c4b2551d831 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiLocalVariableImpl.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiLocalVariableImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiNullValue.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiNullValue.java index b4ec1b35faa..2022c9e0fec 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiNullValue.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiNullValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiStackFrame.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiStackFrame.java index bceb34073a0..cfd97172bfa 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiStackFrame.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiStackFrame.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiStackFrameImpl.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiStackFrameImpl.java index 9f9185b4d95..2b3958a4ab3 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiStackFrameImpl.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiStackFrameImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiType.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiType.java index dc51d6431fe..804867cb2fa 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiType.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiValue.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiValue.java index 797d84e3ddc..a7dd9163a2a 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiValue.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiValueImpl.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiValueImpl.java index 167141312b0..1b7989c1727 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiValueImpl.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiValueImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiVariable.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiVariable.java index f547df75172..c8499ee8711 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiVariable.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/JdiVariable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/exceptions/DebuggerAbsentInformationException.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/exceptions/DebuggerAbsentInformationException.java index 840fadab985..30bed876504 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/exceptions/DebuggerAbsentInformationException.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/exceptions/DebuggerAbsentInformationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.exceptions; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ANTLRExpressionParser.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ANTLRExpressionParser.java index 1d71ddc2536..c54a396193c 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ANTLRExpressionParser.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ANTLRExpressionParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ArrayElement.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ArrayElement.java index b90c7b12867..13caada1bfd 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ArrayElement.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ArrayElement.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/Evaluator.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/Evaluator.java index 0506ab66dd8..78836b699a6 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/Evaluator.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/Evaluator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionException.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionException.java index 329894a7d22..7fd382ea4ea 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionException.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionParser.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionParser.java index b46aa089de4..5964a0ee63e 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionParser.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionValue.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionValue.java index 72e3918b030..569aafdf106 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionValue.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ExpressionValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/InstanceValue.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/InstanceValue.java index 9ea038973cf..ea688892f78 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/InstanceValue.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/InstanceValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaLexer.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaLexer.java index 151defa7a9f..abda23cbf75 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaLexer.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaLexer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ // $ANTLR 3.3 Nov 30, 2010 12:50:56 org/eclipse/che/ide/ext/java/jdi/server/expression/Java.g 2013-02-07 15:54:12 diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaParser.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaParser.java index 3f93e027bad..7e390e0ed62 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaParser.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ // $ANTLR 3.3 Nov 30, 2010 12:50:56 org/eclipse/che/ide/ext/java/jdi/server/expression/Java.g 2013-02-07 15:54:12 diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaTreeParser.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaTreeParser.java index a2302d34426..ae3d00b53b2 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaTreeParser.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/JavaTreeParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ // $ANTLR 3.3 Nov 30, 2010 12:50:56 org/eclipse/che/ide/ext/java/jdi/server/expression/JavaTreeParser.g 2013-02-07 15:54:13 diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/LocalValue.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/LocalValue.java index 4d747090e1f..f360c1f70e8 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/LocalValue.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/LocalValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ReadOnlyValue.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ReadOnlyValue.java index b7c26caeac9..84286a4d8ae 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ReadOnlyValue.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/ReadOnlyValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/StaticValue.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/StaticValue.java index c7438a971b0..3da9db81638 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/StaticValue.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/expression/StaticValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.expression; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/utils/JavaDebuggerUtils.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/utils/JavaDebuggerUtils.java index 3e889479557..8d01e65955d 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/utils/JavaDebuggerUtils.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/main/java/org/eclipse/che/plugin/jdb/server/utils/JavaDebuggerUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server.utils; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerTest.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerTest.java index 0eb1197b855..5239e010e6c 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerTest.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/java/org/eclipse/che/plugin/jdb/server/JavaDebuggerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jdb.server; diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/docker-assembly.xml b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/docker-assembly.xml index 4e3c9022222..6cdeccf40b1 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/docker-assembly.xml +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/docker-assembly.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/findbugs-exclude.xml b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/findbugs-exclude.xml index cb0a70305bf..45db3f385e7 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/findbugs-exclude.xml +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/findbugs-exclude.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/logback-test.xml b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/logback-test.xml index fe0f22d1e39..e947ae78528 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/logback-test.xml +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/workspace/test/src/com/HelloWorld.java b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/workspace/test/src/com/HelloWorld.java index 2192288ac72..04da3c26e22 100644 --- a/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/workspace/test/src/com/HelloWorld.java +++ b/plugins/plugin-java-debugger/che-plugin-java-debugger-server/src/test/resources/workspace/test/src/com/HelloWorld.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package com; diff --git a/plugins/plugin-java-debugger/pom.xml b/plugins/plugin-java-debugger/pom.xml index e2955952706..116a6cf225f 100644 --- a/plugins/plugin-java-debugger/pom.xml +++ b/plugins/plugin-java-debugger/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-filebuffers/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-filebuffers/pom.xml index b9b4aa7b747..82dcac39e21 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-filebuffers/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-filebuffers/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-filesystem/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-filesystem/pom.xml index e6ad96896b5..f11488c0d88 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-filesystem/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-filesystem/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-resources/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-resources/pom.xml index 1a9bbf1f3ae..255f3472d18 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-resources/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-core-resources/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jdt-ui/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jdt-ui/pom.xml index 2e75075c1fd..596e9b554f5 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jdt-ui/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jdt-ui/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jdt-ui/src/main/resources/JavadocHoverStyleSheet.css b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jdt-ui/src/main/resources/JavadocHoverStyleSheet.css index b541ca0ad15..14766972de9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jdt-ui/src/main/resources/JavadocHoverStyleSheet.css +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jdt-ui/src/main/resources/JavadocHoverStyleSheet.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /* Font definitions */ html { diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jface-text/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jface-text/pom.xml index 67fc54df22f..1e88172fe62 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jface-text/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jface-text/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jface/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jface/pom.xml index 3fd98677117..e31f3953875 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jface/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-jface/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/pom.xml index aba2cb53a86..6457610a5f1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/src/main/java/org/eclipse/che/ltk/core/refactoring/CheRefactoringContributions.java b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/src/main/java/org/eclipse/che/ltk/core/refactoring/CheRefactoringContributions.java index cf6d8207946..cced73c642e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/src/main/java/org/eclipse/che/ltk/core/refactoring/CheRefactoringContributions.java +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/src/main/java/org/eclipse/che/ltk/core/refactoring/CheRefactoringContributions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ltk.core.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/src/main/java/org/eclipse/che/ltk/core/refactoring/participants/CheRefactoringParticipantsRegistry.java b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/src/main/java/org/eclipse/che/ltk/core/refactoring/participants/CheRefactoringParticipantsRegistry.java index 4081a026f29..103658d37c1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/src/main/java/org/eclipse/che/ltk/core/refactoring/participants/CheRefactoringParticipantsRegistry.java +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ltk-core-refactoring/src/main/java/org/eclipse/che/ltk/core/refactoring/participants/CheRefactoringParticipantsRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ltk.core.refactoring.participants; diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-search/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-search/pom.xml index 65b337ae3d7..53c78333b0e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-search/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-search/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ui-ide/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ui-ide/pom.xml index cea80557f80..7f1c551c82a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ui-ide/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/org-eclipse-ui-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-jdt/pom.xml b/plugins/plugin-java/che-plugin-java-ext-jdt/pom.xml index 0a13235aaaa..80955cd3333 100644 --- a/plugins/plugin-java/che-plugin-java-ext-jdt/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-jdt/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/pom.xml b/plugins/plugin-java/che-plugin-java-ext-lang-client/pom.xml index d78d2ff2bfa..f09fecf2369 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/CurrentClassFQN_Macro.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/CurrentClassFQN_Macro.java index 9cca0d107b4..aac94b6f233 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/CurrentClassFQN_Macro.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/CurrentClassFQN_Macro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaCss.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaCss.java index 593f2456f96..2da4fc31d24 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaCss.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaCss.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaEditorExtension.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaEditorExtension.java index 71716d13176..a9bf2457473 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaEditorExtension.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaEditorExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaExtension.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaExtension.java index ced27d82f07..c5d05bbdc00 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaExtension.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaLocalizationConstant.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaLocalizationConstant.java index 7c52f87e2c6..09896c70323 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaLocalizationConstant.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaResources.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaResources.java index 30b24afa432..29d872e539d 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaResources.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaUtils.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaUtils.java index 4492b88b086..ce0ae7c75f9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaUtils.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/JavaUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/Resources.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/Resources.java index 261d4822732..bfdc097d9aa 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/Resources.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/Resources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/FileStructureAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/FileStructureAction.java index 4bc8746ede8..6d825f0403a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/FileStructureAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/FileStructureAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/FindUsagesAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/FindUsagesAction.java index b6c76cadb97..a2f272c6f04 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/FindUsagesAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/FindUsagesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/JavaEditorAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/JavaEditorAction.java index 09b1e882778..2b5067da415 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/JavaEditorAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/JavaEditorAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/MarkDirAsSourceAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/MarkDirAsSourceAction.java index 95157d7049d..e552599f5f6 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/MarkDirAsSourceAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/MarkDirAsSourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/MarkDirectoryAsGroup.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/MarkDirectoryAsGroup.java index d55a3d7fa19..3f16dfad46a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/MarkDirectoryAsGroup.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/MarkDirectoryAsGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/NewJavaSourceFileAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/NewJavaSourceFileAction.java index 8eea6930baa..5444c0068ee 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/NewJavaSourceFileAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/NewJavaSourceFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/NewPackageAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/NewPackageAction.java index 64579460e06..afc3fa486b9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/NewPackageAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/NewPackageAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OpenDeclarationAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OpenDeclarationAction.java index 085fd1bd50c..020e34793dd 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OpenDeclarationAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OpenDeclarationAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OpenImplementationAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OpenImplementationAction.java index a6bcb77a4aa..a48f2ff9081 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OpenImplementationAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OpenImplementationAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OrganizeImportsAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OrganizeImportsAction.java index 64afad12a51..8ddb9ed2065 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OrganizeImportsAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/OrganizeImportsAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ParametersHintsAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ParametersHintsAction.java index b952baddb68..170e6c640d2 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ParametersHintsAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ParametersHintsAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ProjectClasspathAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ProjectClasspathAction.java index a12ff0c481e..8dd03cdac2f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ProjectClasspathAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ProjectClasspathAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ProposalAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ProposalAction.java index e24b99f2ce0..169b75accc3 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ProposalAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/ProposalAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/QuickDocumentationAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/QuickDocumentationAction.java index 78e9ff2fa3c..66b313a1977 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/QuickDocumentationAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/QuickDocumentationAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/QuickFixAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/QuickFixAction.java index f637ed31157..891b65470e3 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/QuickFixAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/QuickFixAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/UnmarkDirAsSourceAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/UnmarkDirAsSourceAction.java index 7fd1c5b90e1..2e8b016d211 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/UnmarkDirAsSourceAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/action/UnmarkDirAsSourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.action; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/ClasspathContainer.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/ClasspathContainer.java index d7c72f2c3a8..70fd250ebf9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/ClasspathContainer.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/ClasspathContainer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandModel.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandModel.java index 6b3ddabc36a..5ec6ec709c6 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandModel.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPagePresenter.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPagePresenter.java index 04ab3ccd753..7a0466cadec 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPagePresenter.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageView.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageView.java index 4cc747fe9ab..df66fadb9e7 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageView.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageViewImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageViewImpl.java index 83f36cb07be..f36dbf82b10 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageViewImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageViewImpl.ui.xml b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageViewImpl.ui.xml index d004dded8c8..5f35d5d4d69 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageViewImpl.ui.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/JavaCommandPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/ClasspathMacro.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/ClasspathMacro.java index 6532bdda2c0..48026f5e157 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/ClasspathMacro.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/ClasspathMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command.valueproviders; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/MainClassMacro.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/MainClassMacro.java index bc44c160bc6..3b14ef79e85 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/MainClassMacro.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/MainClassMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command.valueproviders; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/OutputDirMacro.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/OutputDirMacro.java index 2a458fb4235..7bd3acd28ed 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/OutputDirMacro.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/OutputDirMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command.valueproviders; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/SourcepathMacro.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/SourcepathMacro.java index 4e368d18c6d..725a5c725e6 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/SourcepathMacro.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/command/valueproviders/SourcepathMacro.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.command.valueproviders; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/ChannelParameters.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/ChannelParameters.java index 422776fef66..ebf45462e8f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/ChannelParameters.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/ChannelParameters.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.dependenciesupdater; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/JavaClasspathServiceClient.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/JavaClasspathServiceClient.java index 755be35125a..6b52a969ca4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/JavaClasspathServiceClient.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/JavaClasspathServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.dependenciesupdater; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/JavaClasspathServiceClientImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/JavaClasspathServiceClientImpl.java index aef6c213b62..fbb76835fbd 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/JavaClasspathServiceClientImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/dependenciesupdater/JavaClasspathServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.dependenciesupdater; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/document/FormatterStore.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/document/FormatterStore.java index 785f000f1e0..1de66163da6 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/document/FormatterStore.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/document/FormatterStore.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.document; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocPresenter.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocPresenter.java index 84d2a9208f8..314f38c72a7 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocPresenter.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.documentation; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocView.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocView.java index 5c9e256adfd..5a085e53c19 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocView.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.documentation; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocViewImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocViewImpl.java index 0fdd3ec6c28..aa8cc5f687b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocViewImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.documentation; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocumentation.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocumentation.java index fd2ebd97582..4f7f4d0bd7a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocumentation.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/documentation/QuickDocumentation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.documentation; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ActionCompletionProposal.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ActionCompletionProposal.java index 81fab8b0483..f952004b33a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ActionCompletionProposal.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ActionCompletionProposal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/FileWatcher.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/FileWatcher.java index 4627588053a..1125dba2624 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/FileWatcher.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/FileWatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationModel.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationModel.java index 88ad3d66c54..1d3d14d669a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationModel.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationModelFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationModelFactory.java index 349f8bd34a8..d50e3c8bc4c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationModelFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationModelFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationUtil.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationUtil.java index 085e0999bc2..d152b752182 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationUtil.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaAnnotationUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaChangeInterceptorProvider.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaChangeInterceptorProvider.java index 47ff714e8dc..8a8999bdae7 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaChangeInterceptorProvider.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaChangeInterceptorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistClient.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistClient.java index 2a7daf2691c..e8bf4165b92 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistClient.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistProcessor.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistProcessor.java index 2ff456bddc3..dd96a02eb89 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistProcessor.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistProcessorFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistProcessorFactory.java index 963c72ddf6e..607db559d6b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistProcessorFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCodeAssistProcessorFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCompletionProposal.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCompletionProposal.java index 921dfbece8f..eabdfa2ebce 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCompletionProposal.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaCompletionProposal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaFormatter.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaFormatter.java index 8482b0122b7..94b89154cb4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaFormatter.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaFormatter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaPartitionScanner.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaPartitionScanner.java index 379cee0d847..60c362d10a3 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaPartitionScanner.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaPartitionScanner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaPartitionerFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaPartitionerFactory.java index ad05f354607..6ba61e469cc 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaPartitionerFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaPartitionerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaQuickAssistProcessor.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaQuickAssistProcessor.java index bfe8dd69bbe..bdae5781113 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaQuickAssistProcessor.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaQuickAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaQuickAssistProcessorFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaQuickAssistProcessorFactory.java index b40ba79a71f..fdc6bd76e02 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaQuickAssistProcessorFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaQuickAssistProcessorFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcileClient.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcileClient.java index 2cecde8b8a9..0c8af42df65 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcileClient.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcileClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcileUpdateOperation.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcileUpdateOperation.java index 688fada4ba3..72914cdf791 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcileUpdateOperation.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcileUpdateOperation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcilerStrategy.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcilerStrategy.java index 300a6d98457..2686db2b5f0 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcilerStrategy.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcilerStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcilerStrategyFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcilerStrategyFactory.java index bf3de965d03..ad7065e6b2b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcilerStrategyFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconcilerStrategyFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconsilerEvent.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconsilerEvent.java index f12183b049b..d223f3c3f03 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconsilerEvent.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JavaReconsilerEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorConfiguration.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorConfiguration.java index 871b051ec1d..a50120f6a49 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorConfiguration.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorConfigurationFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorConfigurationFactory.java index 8572e550769..925ffb505db 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorConfigurationFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorConfigurationFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorProvider.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorProvider.java index 694f6cdecc2..080b5f4e5cd 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorProvider.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/JsJavaEditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/OpenDeclarationFinder.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/OpenDeclarationFinder.java index 1e858429211..524f1ee60fa 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/OpenDeclarationFinder.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/OpenDeclarationFinder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ProblemAnnotation.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ProblemAnnotation.java index 237a216b5e1..ab032e0def6 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ProblemAnnotation.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ProblemAnnotation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ProblemRequester.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ProblemRequester.java index 24f69a0877e..d0e249bd49b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ProblemRequester.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ProblemRequester.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/QuickFixResolver.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/QuickFixResolver.java index b13d40297cc..48bbc23b19d 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/QuickFixResolver.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/QuickFixResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/QuickFixableAnnotation.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/QuickFixableAnnotation.java index c9ca664e8fb..4a70091c206 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/QuickFixableAnnotation.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/QuickFixableAnnotation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ReconcileOperationEvent.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ReconcileOperationEvent.java index 492aec5e1ed..0e2382a7325 100755 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ReconcileOperationEvent.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/ReconcileOperationEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/SemanticHighlightRenderer.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/SemanticHighlightRenderer.java index 5e7bbbdd99d..bd10bbeafc1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/SemanticHighlightRenderer.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/editor/SemanticHighlightRenderer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.editor; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/JavaEditorGinModule.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/JavaEditorGinModule.java index fabc94c5fa1..f20e7359a6e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/JavaEditorGinModule.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/JavaEditorGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.inject; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/JavaGinModule.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/JavaGinModule.java index edbe4d4c2d4..1c95a7373fd 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/JavaGinModule.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/JavaGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.inject; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/factories/PropertyWidgetFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/factories/PropertyWidgetFactory.java index 5dd91b6382c..7a6ab9f963a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/factories/PropertyWidgetFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/inject/factories/PropertyWidgetFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.inject.factories; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/factory/NodeFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/factory/NodeFactory.java index 7998760d4a8..681f3424006 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/factory/NodeFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/factory/NodeFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.navigation.factory; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructure.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructure.java index 25488ca2e0f..0d3390c27da 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructure.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructure.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.navigation.filestructure; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructureImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructureImpl.java index c1712686c8c..e86e1e139e5 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructureImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructureImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.navigation.filestructure; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructureImpl.ui.xml b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructureImpl.ui.xml index 144bacf2af5..615593e90c7 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructureImpl.ui.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/navigation/filestructure/FileStructureImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsPresenter.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsPresenter.java index 0403f60350f..15c49ecd40b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsPresenter.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.organizeimports; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsView.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsView.java index 9edb275ce37..c02a38b74c2 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsView.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.organizeimports; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsViewImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsViewImpl.java index a2d1ee5cf91..748353be78c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsViewImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.organizeimports; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsViewImpl.ui.xml b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsViewImpl.ui.xml index 5d4a010592b..abeacef0c0c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsViewImpl.ui.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/organizeimports/OrganizeImportsViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/service/ClasspathServiceClient.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/service/ClasspathServiceClient.java index 98d603d5dc9..6256409fa07 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/service/ClasspathServiceClient.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/service/ClasspathServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.project.classpath.service; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/service/ClasspathServiceClientImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/service/ClasspathServiceClientImpl.java index 532f82192e3..663c21ec0ef 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/service/ClasspathServiceClientImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/service/ClasspathServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.project.classpath.service; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeEntry.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeEntry.java index 4c8ed36210f..bf1801a58cb 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeEntry.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.project.classpath.valueproviders.node; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeWidget.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeWidget.java index 272c02694d2..5f3bce02f6a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeWidget.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.project.classpath.valueproviders.node; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeWidget.ui.xml b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeWidget.ui.xml index ff7c913d92b..bae1368e2cd 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeWidget.ui.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/node/NodeWidget.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/ClasspathNodeInterceptor.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/ClasspathNodeInterceptor.java index 7b051361231..ca75a075ba7 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/ClasspathNodeInterceptor.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/ClasspathNodeInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.project.classpath.valueproviders.selectnode.interceptors; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/JarNodeInterceptor.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/JarNodeInterceptor.java index a6274832bb4..2314376f200 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/JarNodeInterceptor.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/JarNodeInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.project.classpath.valueproviders.selectnode.interceptors; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/SourceFolderNodeInterceptor.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/SourceFolderNodeInterceptor.java index 3644959235b..74c75d5c0c4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/SourceFolderNodeInterceptor.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/project/classpath/valueproviders/selectnode/interceptors/SourceFolderNodeInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.project.classpath.valueproviders.selectnode.interceptors; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/projecttree/JavaSourceFolderUtil.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/projecttree/JavaSourceFolderUtil.java index c910c7d943f..62160416cb7 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/projecttree/JavaSourceFolderUtil.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/projecttree/JavaSourceFolderUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.projecttree; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/RefactorInfo.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/RefactorInfo.java index d3d22874ed3..79516286e02 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/RefactorInfo.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/RefactorInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/RefactoringUpdater.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/RefactoringUpdater.java index a31fd3c4226..a471f79c015 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/RefactoringUpdater.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/RefactoringUpdater.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/CutJavaSourceAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/CutJavaSourceAction.java index da23e27221d..74d48624bdb 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/CutJavaSourceAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/CutJavaSourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring.move; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/MoveAction.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/MoveAction.java index 7d958c8250c..317141b6f14 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/MoveAction.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/MoveAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring.move; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/MoveType.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/MoveType.java index 30cd8818944..94f08e629ce 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/MoveType.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/MoveType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring.move; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/RefactoredItemType.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/RefactoredItemType.java index 3efaa7f4a6b..18d99c837dd 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/RefactoredItemType.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/RefactoredItemType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring.move; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MovePresenter.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MovePresenter.java index c3b4c134807..d1b546f7119 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MovePresenter.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MovePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring.move.wizard; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveView.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveView.java index 2a7890f4d5e..97588efda33 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveView.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring.move.wizard; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveViewImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveViewImpl.java index 5484e626e1e..2f244da05a8 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveViewImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.client.refactoring.move.wizard; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveViewImpl.ui.xml b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveViewImpl.ui.xml index c44ccd303a4..4b163ae08ea 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveViewImpl.ui.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/move/wizard/MoveViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/JavaLocalizationConstant.properties b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/JavaLocalizationConstant.properties index 23cae5ec7a0..19d2fb3b82c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/JavaLocalizationConstant.properties +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/JavaLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ##### NewJavaSourceFileView ##### diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/Semantic.css b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/Semantic.css index 3e2b410a02a..51f0c411dca 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/Semantic.css +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/Semantic.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .methodDeclaration { color: #FFC66D; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/class.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/class.svg index 042e6ccf6bd..98e0278f971 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/class.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/class.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/interface.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/interface.svg index b9af79cb0cf..042271d3101 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/interface.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/interface.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/template.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/template.svg index 1de1ff99f87..bfb158b6d5e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/template.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/images/template.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/add.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/add.svg index 9f4e2be899a..f3262a1a264 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/add.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/add.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/correction_rename.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/correction_rename.svg index ddf8a79cddb..6fb474dfa7b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/correction_rename.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/correction_rename.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/jexception_obj.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/jexception_obj.svg index 001674a7ecd..b14336efacd 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/jexception_obj.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/jexception_obj.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/local.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/local.svg index 5aadbcd3dd2..3f6e96807ed 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/local.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/local.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/remove.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/remove.svg index 3b77631ddf5..d0460377932 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/remove.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/remove.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/remove_correction.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/remove_correction.svg index bb6d66b8ba5..afbd6a43e6c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/remove_correction.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/internal/text/correction/proposals/remove_correction.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/java.css b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/java.css index 13f798a0f76..64ae105e4bb 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/java.css +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/java.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval errorColor org.eclipse.che.ide.api.theme.Style.getErrorColor(); @eval disableTextColor org.eclipse.che.ide.api.theme.Style.getEditorInfoTextColor(); diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/project/classpath/PropertiesRenderer.css b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/project/classpath/PropertiesRenderer.css index cebb25aa6df..30992cb7013 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/project/classpath/PropertiesRenderer.css +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/project/classpath/PropertiesRenderer.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval categoryHeaderButtonHoverColor org.eclipse.che.ide.api.theme.Style.theme.categoryHeaderButtonHoverColor(); @eval categoryHeaderButtonColor org.eclipse.che.ide.api.theme.Style.theme.categoryHeaderButtonColor(); diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/project/classpath/remove-node-button.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/project/classpath/remove-node-button.svg index 35695a0c37e..9873e16293f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/project/classpath/remove-node-button.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/project/classpath/remove-node-button.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/enum_type.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/enum_type.svg index c0f0e9163ed..687a5fd7e56 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/enum_type.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/enum_type.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/jarFileIcon.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/jarFileIcon.svg index 7bc4d7701ee..49994ed9bfc 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/jarFileIcon.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/jarFileIcon.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/mark-warning.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/mark-warning.svg index 8a4da9e522d..94c3dff4d29 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/mark-warning.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/mark-warning.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/openDeclaration.svg b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/openDeclaration.svg index 46cb890f40a..e9d318f3d9a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/openDeclaration.svg +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/resources/org/eclipse/che/ide/ext/java/client/svg/openDeclaration.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/pom.xml b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/pom.xml index 70840ef5791..089c3609ae1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/pom.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/src/main/java/com/codenvy/test/MyClass.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/src/main/java/com/codenvy/test/MyClass.java index 9a5cef88c52..5cd77da0ca6 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/src/main/java/com/codenvy/test/MyClass.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/src/main/java/com/codenvy/test/MyClass.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.test; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/src/test/java/com/codenvy/testtest/Test.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/src/test/java/com/codenvy/testtest/Test.java index 73a58f8fe45..d9a5f86d04d 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/src/test/java/com/codenvy/testtest/Test.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/test/resources/projects/testproject/src/test/java/com/codenvy/testtest/Test.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.testtest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/pom.xml b/plugins/plugin-java/che-plugin-java-ext-lang-server/pom.xml index 74f7a8c87a3..ae1c99602f1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/CodeAssist.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/CodeAssist.java index caef09bd393..06fc8aed19e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/CodeAssist.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/CodeAssist.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/CodeAssistantException.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/CodeAssistantException.java index 9c011b27ed8..fc5fe951ff4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/CodeAssistantException.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/CodeAssistantException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaNavigation.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaNavigation.java index 66d40141f7d..bd59d22c4f9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaNavigation.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaNavigation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaReconcileRequestHandler.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaReconcileRequestHandler.java index 4a7d3f9fc13..9d69a73ed78 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaReconcileRequestHandler.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaReconcileRequestHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaTypeHierarchy.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaTypeHierarchy.java index b25fef0e0f8..9a644a6e915 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaTypeHierarchy.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JavaTypeHierarchy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JdtException.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JdtException.java index 6745218124d..e9636dcc9df 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JdtException.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/JdtException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/ParametersHints.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/ParametersHints.java index df55a69cd99..337d2577dcc 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/ParametersHints.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/ParametersHints.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/ProjectListeners.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/ProjectListeners.java index 982586e49e8..7e3d74d7987 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/ProjectListeners.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/ProjectListeners.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/SourcesFromBytecodeGenerator.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/SourcesFromBytecodeGenerator.java index b54803f0888..ff0bcf7a903 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/SourcesFromBytecodeGenerator.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/SourcesFromBytecodeGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/inject/JavaModule.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/inject/JavaModule.java index 44f43001d0b..6e022f22458 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/inject/JavaModule.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/inject/JavaModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.inject; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/inject/JdtGuiceModule.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/inject/JdtGuiceModule.java index 542fe1f0871..d7e966a22c8 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/inject/JdtGuiceModule.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/inject/JdtGuiceModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.inject; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/AbstractJavaInitHandler.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/AbstractJavaInitHandler.java index f88606b1f59..d1e987b4a07 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/AbstractJavaInitHandler.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/AbstractJavaInitHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/JavaProjectType.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/JavaProjectType.java index 2249a11b2a3..797a7a992c1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/JavaProjectType.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/JavaProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/JavaValueProviderFactory.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/JavaValueProviderFactory.java index 03588ca4ca9..807a6534d51 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/JavaValueProviderFactory.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/projecttype/JavaValueProviderFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/DtoConverter.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/DtoConverter.java index 51c65a3d201..e6a6331880b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/DtoConverter.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/RefactoringException.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/RefactoringException.java index 6acdb1e91e7..ae6756f2c33 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/RefactoringException.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/RefactoringException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/RefactoringManager.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/RefactoringManager.java index 4df31afb399..5fcfc72568e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/RefactoringManager.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/RefactoringManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/MoveRefactoringSession.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/MoveRefactoringSession.java index 7a2e1a11360..c4e71fc4c7a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/MoveRefactoringSession.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/MoveRefactoringSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.refactoring.session; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RefactoringSession.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RefactoringSession.java index 7b5253c96b2..adee973ac44 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RefactoringSession.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RefactoringSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.refactoring.session; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RenameLinkedModeRefactoringSession.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RenameLinkedModeRefactoringSession.java index 8a6eedba3c2..13920314dd7 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RenameLinkedModeRefactoringSession.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RenameLinkedModeRefactoringSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.refactoring.session; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RenameSession.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RenameSession.java index 768c7089a39..36ef1e050f4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RenameSession.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/RenameSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.refactoring.session; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/ReorgRefactoringSession.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/ReorgRefactoringSession.java index bc9918d6c8a..65ba81b3442 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/ReorgRefactoringSession.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/refactoring/session/ReorgRefactoringSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.refactoring.session; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathService.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathService.java index a63d6c58186..eb4a563a243 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathService.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathServiceInterface.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathServiceInterface.java index 73ff117c2de..3a488c19f5b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathServiceInterface.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/ClasspathServiceInterface.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/CodeAssistService.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/CodeAssistService.java index 7f08f6310ae..6a2b97a0bf1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/CodeAssistService.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/CodeAssistService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/CompilerSetupService.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/CompilerSetupService.java index 7bf9fef2310..492ceb25c51 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/CompilerSetupService.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/CompilerSetupService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavaNavigationService.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavaNavigationService.java index 1a215868e9a..df46f39e011 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavaNavigationService.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavaNavigationService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavaReconcileService.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavaReconcileService.java index f133c942413..88fd9e814c8 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavaReconcileService.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavaReconcileService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavadocService.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavadocService.java index a3bd7463e8b..2a2197d1cb9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavadocService.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavadocService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavadocUrlProviderImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavadocUrlProviderImpl.java index 6f0330a980a..b7b11d73b80 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavadocUrlProviderImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JavadocUrlProviderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JdtExceptionMapper.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JdtExceptionMapper.java index 60267f7a8a1..f1b7a526dab 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JdtExceptionMapper.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/JdtExceptionMapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/RefactoringService.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/RefactoringService.java index 298125b588c..0732898685c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/RefactoringService.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/RefactoringService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/SearchJsonRpcService.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/SearchJsonRpcService.java index 5ff8eac5e23..93e0c33ce9a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/SearchJsonRpcService.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/rest/SearchJsonRpcService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/JavaElementToDtoConverter.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/JavaElementToDtoConverter.java index 6d0791a8d15..95afbf6470f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/JavaElementToDtoConverter.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/JavaElementToDtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.search; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/SearchException.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/SearchException.java index bfe885ac677..f9f29374763 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/SearchException.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/SearchException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.search; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/SearchManager.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/SearchManager.java index 3cfa933a978..0f11f2bcf2b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/SearchManager.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/main/java/org/eclipse/che/plugin/java/server/search/SearchManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.search; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/BaseTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/BaseTest.java index 455fefbab11..e1595585789 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/BaseTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/BaseTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/CodeAssistantTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/CodeAssistantTest.java index 2a9161ddbcb..51f39ca95a2 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/CodeAssistantTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/CodeAssistantTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/DeltaProcessingTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/DeltaProcessingTest.java index 1d6665adccb..bd0cf0d3776 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/DeltaProcessingTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/DeltaProcessingTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/DummyProjectManager.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/DummyProjectManager.java index c309372a421..d5d292e28ca 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/DummyProjectManager.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/DummyProjectManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/FindDeclarationTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/FindDeclarationTest.java index 9c5d151c30c..144b039653a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/FindDeclarationTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/FindDeclarationTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JarNavigationTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JarNavigationTest.java index 4278ddac9ca..84c28a19f8c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JarNavigationTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JarNavigationTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocFromSourceTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocFromSourceTest.java index c108f547cff..dcb5c12fd37 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocFromSourceTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocFromSourceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocTest.java index b685e9f204c..29e3a542fb9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocUrlTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocUrlTest.java index 49ce5beeaf0..bb92db15ee9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocUrlTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/JavadocUrlTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/ReconcileTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/ReconcileTest.java index 5265ccc5445..0de31c27699 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/ReconcileTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/ReconcileTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/SourceFromBytecodeGeneratorTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/SourceFromBytecodeGeneratorTest.java index 8a75ab68e62..c0a0c7c7033 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/SourceFromBytecodeGeneratorTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/SourceFromBytecodeGeneratorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/Utils.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/Utils.java index dd9e94af7f0..ec7afc69801 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/Utils.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/che/Utils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.che; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/projecttype/JavaValueProviderFactoryTest.java b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/projecttype/JavaValueProviderFactoryTest.java index f0c1aad2ecc..3c06150197b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/projecttype/JavaValueProviderFactoryTest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-server/src/test/java/org/eclipse/che/plugin/java/server/projecttype/JavaValueProviderFactoryTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/pom.xml b/plugins/plugin-java/che-plugin-java-ext-lang-shared/pom.xml index 4829f17bf0f..56ab139a7d5 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/pom.xml +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/ClasspathEntryKind.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/ClasspathEntryKind.java index 811ebcad7a6..c2e296e5946 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/ClasspathEntryKind.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/ClasspathEntryKind.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/Constants.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/Constants.java index ad424bd8c93..3a4ce30c716 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/Constants.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/ContentRoot.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/ContentRoot.java index d828da4274c..8f6fa2b7455 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/ContentRoot.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/ContentRoot.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/Jar.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/Jar.java index 08d0a4e085d..cfbab0f1d7e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/Jar.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/Jar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/JarEntry.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/JarEntry.java index 0c1ff599141..d1114735eae 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/JarEntry.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/JarEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/OpenDeclarationDescriptor.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/OpenDeclarationDescriptor.java index 67b05405e14..1061f39dc0f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/OpenDeclarationDescriptor.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/OpenDeclarationDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Change.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Change.java index def77547150..cb606e6e29b 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Change.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Change.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ClassContent.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ClassContent.java index cce340a206a..00d4195ae8f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ClassContent.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ClassContent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ClassPathBuilderResult.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ClassPathBuilderResult.java index 6e5244a13a5..aaa5a5db31d 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ClassPathBuilderResult.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ClassPathBuilderResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ConflictImportDTO.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ConflictImportDTO.java index bb682643bb2..1dff2a72a06 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ConflictImportDTO.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ConflictImportDTO.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/HighlightedPosition.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/HighlightedPosition.java index a86956b5009..90f60b9856f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/HighlightedPosition.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/HighlightedPosition.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ImplementationsDescriptorDTO.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ImplementationsDescriptorDTO.java index fe8cb9817ae..4f6eff26d1a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ImplementationsDescriptorDTO.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ImplementationsDescriptorDTO.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/JavaClassInfo.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/JavaClassInfo.java index 8232c17165b..469d95e93fb 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/JavaClassInfo.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/JavaClassInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedData.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedData.java index 4c5a6067d97..2cddf194b23 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedData.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedData.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedModeModel.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedModeModel.java index aa9aeb2889f..8a349e07d0c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedModeModel.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedModeModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedPositionGroup.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedPositionGroup.java index 0c06298fe6d..114e2f9cb39 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedPositionGroup.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/LinkedPositionGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/OrganizeImportResult.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/OrganizeImportResult.java index f7c1737a7ff..d12bbc57251 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/OrganizeImportResult.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/OrganizeImportResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Problem.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Problem.java index 6988516d303..00329de42ea 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Problem.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Problem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ProposalApplyResult.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ProposalApplyResult.java index 34bc93de150..a95a24b06b9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ProposalApplyResult.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ProposalApplyResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ProposalPresentation.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ProposalPresentation.java index e838ba3db04..c108af9150a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ProposalPresentation.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ProposalPresentation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Proposals.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Proposals.java index 24bf1a43dfd..6a2316ffe9a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Proposals.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Proposals.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ReconcileResult.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ReconcileResult.java index 3bf1a0fb0ba..335ac3e3ce6 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ReconcileResult.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/ReconcileResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Region.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Region.java index c23d4940b3c..897ffaa3f6f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Region.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/Region.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/classpath/ClasspathEntryDto.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/classpath/ClasspathEntryDto.java index 605b5c5216d..db7d4923da6 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/classpath/ClasspathEntryDto.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/classpath/ClasspathEntryDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.classpath; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/ClassFile.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/ClassFile.java index c00d76213de..d0be41fb24c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/ClassFile.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/ClassFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/CompilationUnit.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/CompilationUnit.java index 7a7e4a45c1b..0ac07a8d5e7 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/CompilationUnit.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/CompilationUnit.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Field.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Field.java index cd2558f3c4f..2116d188c3c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Field.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Field.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/ImportDeclaration.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/ImportDeclaration.java index cf0b02bad47..73587882e45 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/ImportDeclaration.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/ImportDeclaration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Initializer.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Initializer.java index 7cb00c5b3e7..ebb43ce71ba 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Initializer.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Initializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/JavaElement.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/JavaElement.java index 88f3635228d..90452458216 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/JavaElement.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/JavaElement.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/JavaProject.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/JavaProject.java index c45ca0d82ed..7dd2c3e41a1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/JavaProject.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/JavaProject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/LabelElement.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/LabelElement.java index e92551ee004..8f72721f2d4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/LabelElement.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/LabelElement.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Member.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Member.java index d1e44af0217..f52c5a4686e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Member.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Member.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Method.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Method.java index a82689a88c4..584348dcb57 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Method.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Method.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/MethodParameters.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/MethodParameters.java index e7853f0cb34..db5c096ce3e 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/MethodParameters.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/MethodParameters.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Openable.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Openable.java index 7476a4881a2..10177856015 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Openable.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Openable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/PackageFragment.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/PackageFragment.java index cbc632507a7..6805a0bd8c4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/PackageFragment.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/PackageFragment.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/PackageFragmentRoot.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/PackageFragmentRoot.java index d56e5e650f6..2144d24fc31 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/PackageFragmentRoot.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/PackageFragmentRoot.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Type.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Type.java index df379f8bf5a..7b49c27e43a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Type.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/Type.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/TypeParameter.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/TypeParameter.java index 60c9e2f9623..18a23971c0d 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/TypeParameter.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/TypeParameter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/TypeRoot.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/TypeRoot.java index 38c49d2fd56..196de1f54db 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/TypeRoot.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/model/TypeRoot.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.model; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeCreationResult.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeCreationResult.java index c65bc962737..f3658ef0fac 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeCreationResult.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeCreationResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeEnabledState.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeEnabledState.java index 57301de06b3..b2735e91da4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeEnabledState.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeEnabledState.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeInfo.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeInfo.java index d8cf62f1031..8e8a2093acb 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeInfo.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangeInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangePreview.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangePreview.java index 341ef31e6d8..117efb998b5 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangePreview.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ChangePreview.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/CreateMoveRefactoring.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/CreateMoveRefactoring.java index ee441790e9c..188236bafc8 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/CreateMoveRefactoring.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/CreateMoveRefactoring.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/CreateRenameRefactoring.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/CreateRenameRefactoring.java index 175a61e8240..b22837c5af9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/CreateRenameRefactoring.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/CreateRenameRefactoring.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ElementToMove.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ElementToMove.java index d078177fb7b..58bcf971a87 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ElementToMove.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ElementToMove.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/LinkedRenameRefactoringApply.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/LinkedRenameRefactoringApply.java index c5ea45d7fc5..b9127f25bb5 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/LinkedRenameRefactoringApply.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/LinkedRenameRefactoringApply.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/MoveSettings.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/MoveSettings.java index 8c5532276da..4f0910c3f1f 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/MoveSettings.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/MoveSettings.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringChange.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringChange.java index 5a2efc1ea84..81c8714c3e9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringChange.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringChange.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringPreview.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringPreview.java index 2a9de7dbc6f..713202af3d2 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringPreview.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringPreview.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringResult.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringResult.java index 42c479a9ba0..6100f7e2fd4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringResult.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringSession.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringSession.java index 1c6bff8c65f..817e874da08 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringSession.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringStatus.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringStatus.java index ba75348cc15..fd3329008e9 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringStatus.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringStatus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringStatusEntry.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringStatusEntry.java index 40fd0406c30..636ad27e069 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringStatusEntry.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RefactoringStatusEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RenameRefactoringSession.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RenameRefactoringSession.java index 6f13d499c09..7887ac5498a 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RenameRefactoringSession.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RenameRefactoringSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RenameSettings.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RenameSettings.java index f5a606c073b..0af97e44536 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RenameSettings.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/RenameSettings.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ReorgDestination.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ReorgDestination.java index 0c81c61800a..fa99386c26c 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ReorgDestination.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ReorgDestination.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ValidateNewName.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ValidateNewName.java index 34c0f8a514b..c912cb2b1a1 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ValidateNewName.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/refactoring/ValidateNewName.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.refactoring; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/FindUsagesRequest.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/FindUsagesRequest.java index 1bf96f0e7e8..05f63988f06 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/FindUsagesRequest.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/FindUsagesRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.search; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/FindUsagesResponse.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/FindUsagesResponse.java index c223b2dbc61..a610dbf22c4 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/FindUsagesResponse.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/FindUsagesResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.search; diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/Match.java b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/Match.java index 0dca5417128..38a0b822838 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/Match.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-shared/src/main/java/org/eclipse/che/ide/ext/java/shared/dto/search/Match.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.shared.dto.search; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/pom.xml b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/pom.xml index bc009f84d30..72bf13bde8d 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/pom.xml +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/PlainJavaLocalizationConstant.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/PlainJavaLocalizationConstant.java index 5b60417fc0e..b5a090d853e 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/PlainJavaLocalizationConstant.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/PlainJavaLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/inject/PlainJavaGinModule.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/inject/PlainJavaGinModule.java index 2557e9f4d12..083b15e701e 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/inject/PlainJavaGinModule.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/inject/PlainJavaGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client.inject; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/service/ClasspathUpdaterServiceClient.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/service/ClasspathUpdaterServiceClient.java index 07e62f85ec4..66ad16c3385 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/service/ClasspathUpdaterServiceClient.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/service/ClasspathUpdaterServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client.service; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/service/ClasspathUpdaterServiceClientImpl.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/service/ClasspathUpdaterServiceClientImpl.java index 3557e5d95b8..1fbd5ae15f6 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/service/ClasspathUpdaterServiceClientImpl.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/service/ClasspathUpdaterServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client.service; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPagePresenter.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPagePresenter.java index 74277c9fcab..5bdab3ddc88 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPagePresenter.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client.wizard; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageView.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageView.java index 0e358991385..327cf8fc4dd 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageView.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client.wizard; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageViewImpl.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageViewImpl.java index 1eaf34f825b..7b9e3ed6390 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageViewImpl.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client.wizard; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageViewImpl.ui.xml b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageViewImpl.ui.xml index 83d17ff2814..fb6d10c1333 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageViewImpl.ui.xml +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/selector/SelectionDelegate.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/selector/SelectionDelegate.java index b0f1aaf5ac2..31ad30a88da 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/selector/SelectionDelegate.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/java/org/eclipse/che/plugin/java/plain/client/wizard/selector/SelectionDelegate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client.wizard.selector; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/resources/org/eclipse/che/plugin/java/plain/PlainJava.gwt.xml b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/resources/org/eclipse/che/plugin/java/plain/PlainJava.gwt.xml index afb50ac71aa..d380cb69659 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/resources/org/eclipse/che/plugin/java/plain/PlainJava.gwt.xml +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/resources/org/eclipse/che/plugin/java/plain/PlainJava.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/resources/org/eclipse/che/plugin/java/plain/client/PlainJavaLocalizationConstant.properties b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/resources/org/eclipse/che/plugin/java/plain/client/PlainJavaLocalizationConstant.properties index 5c09a62cc8c..75f3826215f 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/resources/org/eclipse/che/plugin/java/plain/client/PlainJavaLocalizationConstant.properties +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/resources/org/eclipse/che/plugin/java/plain/client/PlainJavaLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # #############################---wizard---############################# diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/test/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPagePresenterTest.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/test/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPagePresenterTest.java index 803a26dd2a7..43c3d862d35 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/test/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPagePresenterTest.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-ide/src/main/test/org/eclipse/che/plugin/java/plain/client/wizard/PlainJavaPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.client.wizard; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/pom.xml b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/pom.xml index 353ea8dc625..679ce0a5010 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/pom.xml +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/generator/PlainJavaProjectGenerator.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/generator/PlainJavaProjectGenerator.java index 8c181ecca16..b3940ca3da0 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/generator/PlainJavaProjectGenerator.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/generator/PlainJavaProjectGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.generator; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/inject/PlainJavaProjectModule.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/inject/PlainJavaProjectModule.java index 29c4cbc9990..dc1fb7ee600 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/inject/PlainJavaProjectModule.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/inject/PlainJavaProjectModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.inject; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/ClasspathBuilder.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/ClasspathBuilder.java index 86450740baf..cabeba03a6d 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/ClasspathBuilder.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/ClasspathBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaInitHandler.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaInitHandler.java index ef67c3a96f6..3cd49516e34 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaInitHandler.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaInitHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaProjectType.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaProjectType.java index f8ed5941535..b5a90176ffa 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaProjectType.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaValueProviderFactory.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaValueProviderFactory.java index 84e45e70d55..21a47df6f13 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaValueProviderFactory.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaValueProviderFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/rest/ClasspathUpdaterService.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/rest/ClasspathUpdaterService.java index 3da45e3c270..6a3206fc52f 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/rest/ClasspathUpdaterService.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/main/java/org/eclipse/che/plugin/java/plain/server/rest/ClasspathUpdaterService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.rest; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/BaseTest.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/BaseTest.java index 0644593fade..c2a8e5ac59c 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/BaseTest.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/BaseTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/generator/PlainJavaProjectGeneratorTest.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/generator/PlainJavaProjectGeneratorTest.java index 3a6289c05ae..96ffea45a84 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/generator/PlainJavaProjectGeneratorTest.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/generator/PlainJavaProjectGeneratorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.generator; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/projecttype/ClasspathBuilderTest.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/projecttype/ClasspathBuilderTest.java index 44171b4f0a2..ff5759b24b0 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/projecttype/ClasspathBuilderTest.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/projecttype/ClasspathBuilderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaValueProviderFactoryTest.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaValueProviderFactoryTest.java index 81f249fdedb..9c612e57017 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaValueProviderFactoryTest.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/java/org/eclipse/che/plugin/java/plain/server/projecttype/PlainJavaValueProviderFactoryTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.server.projecttype; diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/resources/projects/project/src/Main.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/resources/projects/project/src/Main.java index b5329befbc0..7104482c712 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/resources/projects/project/src/Main.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-server/src/test/resources/projects/project/src/Main.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ public class Main { diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-shared/pom.xml b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-shared/pom.xml index f02f9e648cd..acd22ede8c3 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-shared/pom.xml +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-shared/src/main/java/org/eclipse/che/plugin/java/plain/shared/PlainJavaProjectConstants.java b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-shared/src/main/java/org/eclipse/che/plugin/java/plain/shared/PlainJavaProjectConstants.java index 4140f1dceb2..2a68c24a304 100644 --- a/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-shared/src/main/java/org/eclipse/che/plugin/java/plain/shared/PlainJavaProjectConstants.java +++ b/plugins/plugin-java/che-plugin-java-plain/che-plugin-java-plain-shared/src/main/java/org/eclipse/che/plugin/java/plain/shared/PlainJavaProjectConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.plain.shared; diff --git a/plugins/plugin-java/che-plugin-java-plain/pom.xml b/plugins/plugin-java/che-plugin-java-plain/pom.xml index 251e39edc5b..1bd55a8f5d7 100644 --- a/plugins/plugin-java/che-plugin-java-plain/pom.xml +++ b/plugins/plugin-java/che-plugin-java-plain/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-java/pom.xml b/plugins/plugin-java/pom.xml index 521209d7db7..1b6fed5b240 100644 --- a/plugins/plugin-java/pom.xml +++ b/plugins/plugin-java/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-json/che-plugin-json-server/pom.xml b/plugins/plugin-json/che-plugin-json-server/pom.xml index a490806daba..0c6fd144748 100644 --- a/plugins/plugin-json/che-plugin-json-server/pom.xml +++ b/plugins/plugin-json/che-plugin-json-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/inject/JsonModule.java b/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/inject/JsonModule.java index 0868ce1db5f..b3fc6cf830d 100644 --- a/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/inject/JsonModule.java +++ b/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/inject/JsonModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.json.inject; diff --git a/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/languageserver/JsonExtension.java b/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/languageserver/JsonExtension.java index 021500602bc..9ecc56da25d 100644 --- a/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/languageserver/JsonExtension.java +++ b/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/languageserver/JsonExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.json.languageserver; diff --git a/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/languageserver/JsonLanguageServerLauncher.java b/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/languageserver/JsonLanguageServerLauncher.java index 28f6c11fbfd..a71d695ad81 100644 --- a/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/languageserver/JsonLanguageServerLauncher.java +++ b/plugins/plugin-json/che-plugin-json-server/src/main/java/org/eclipse/che/plugin/json/languageserver/JsonLanguageServerLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.json.languageserver; diff --git a/plugins/plugin-json/pom.xml b/plugins/plugin-json/pom.xml index 4c038f5430a..c5bdb4145dc 100644 --- a/plugins/plugin-json/pom.xml +++ b/plugins/plugin-json/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/pom.xml b/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/pom.xml index e37d87c86c6..421a69addea 100644 --- a/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/pom.xml +++ b/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/src/main/java/org/eclipse/che/plugin/keybinding/eclipse/EclipseKeyBinding.java b/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/src/main/java/org/eclipse/che/plugin/keybinding/eclipse/EclipseKeyBinding.java index aceb7c42394..63ab0b72bd5 100644 --- a/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/src/main/java/org/eclipse/che/plugin/keybinding/eclipse/EclipseKeyBinding.java +++ b/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/src/main/java/org/eclipse/che/plugin/keybinding/eclipse/EclipseKeyBinding.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.keybinding.eclipse; diff --git a/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/src/main/resources/org/eclipse/che/plugin/keybinding/eclipse/EclipseKeyBinding.gwt.xml b/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/src/main/resources/org/eclipse/che/plugin/keybinding/eclipse/EclipseKeyBinding.gwt.xml index ff0218aa76a..7895f6d6952 100644 --- a/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/src/main/resources/org/eclipse/che/plugin/keybinding/eclipse/EclipseKeyBinding.gwt.xml +++ b/plugins/plugin-keybinding-eclipse/plugin-keybinding-eclipse-ide/src/main/resources/org/eclipse/che/plugin/keybinding/eclipse/EclipseKeyBinding.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-keybinding-eclipse/pom.xml b/plugins/plugin-keybinding-eclipse/pom.xml index af871e53d44..6993962632c 100644 --- a/plugins/plugin-keybinding-eclipse/pom.xml +++ b/plugins/plugin-keybinding-eclipse/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/pom.xml b/plugins/plugin-languageserver/che-plugin-languageserver-ide/pom.xml index fc046e0234c..ff527bd98a7 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/pom.xml +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerExtension.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerExtension.java index af941161616..78cc4737430 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerExtension.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerFileTypeRegister.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerFileTypeRegister.java index b8c28d42433..95634228be2 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerFileTypeRegister.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerFileTypeRegister.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerLocalization.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerLocalization.java index e5b530d2423..88a798fdc28 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerLocalization.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerLocalization.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerResources.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerResources.java index 332b1b51eaa..8aca2914030 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerResources.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/LanguageServerResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/DiagnosticAnnotation.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/DiagnosticAnnotation.java index ee24fbba635..8c63e3a8b2f 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/DiagnosticAnnotation.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/DiagnosticAnnotation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/DiagnosticCollector.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/DiagnosticCollector.java index 75cca712932..d05950a79fb 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/DiagnosticCollector.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/DiagnosticCollector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerAnnotationModel.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerAnnotationModel.java index 918dace25b0..0df8bcf20dd 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerAnnotationModel.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerAnnotationModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerAnnotationModelFactory.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerAnnotationModelFactory.java index 1643d81895a..16f4de1bb6e 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerAnnotationModelFactory.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerAnnotationModelFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerCodeassistProcessorFactory.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerCodeassistProcessorFactory.java index 56d618a16fc..bc0cd1b4d26 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerCodeassistProcessorFactory.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerCodeassistProcessorFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorConfiguration.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorConfiguration.java index d56379303cb..5e673b171a2 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorConfiguration.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorConfigurationFactory.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorConfigurationFactory.java index ff1d2cc4b99..008ab73923d 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorConfigurationFactory.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorConfigurationFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorProvider.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorProvider.java index 253394f60fe..8c15040f169 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorProvider.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerEditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerFormatter.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerFormatter.java index 73ab25ca698..6ad38c43d0c 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerFormatter.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerFormatter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerFormatterFactory.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerFormatterFactory.java index 22ad1f82a1c..8b3c38fc7cc 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerFormatterFactory.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerFormatterFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerReconcileStrategy.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerReconcileStrategy.java index 9134d5bd936..0e38ee72dec 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerReconcileStrategy.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerReconcileStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerReconcileStrategyFactory.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerReconcileStrategyFactory.java index f6219463d15..daf003adb04 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerReconcileStrategyFactory.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/LanguageServerReconcileStrategyFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/PublishDiagnosticsProcessor.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/PublishDiagnosticsProcessor.java index b351a32c422..6beb0c5dead 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/PublishDiagnosticsProcessor.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/PublishDiagnosticsProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/ShowMessageProcessor.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/ShowMessageProcessor.java index 3ed6feaff18..664eed849e2 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/ShowMessageProcessor.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/ShowMessageProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/CompletionImageProvider.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/CompletionImageProvider.java index 0fddb583a7c..8fd35aee8a0 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/CompletionImageProvider.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/CompletionImageProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.codeassist; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/CompletionItemBasedCompletionProposal.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/CompletionItemBasedCompletionProposal.java index 39f2e1d75aa..948487e1e03 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/CompletionItemBasedCompletionProposal.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/CompletionItemBasedCompletionProposal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.codeassist; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/LanguageServerCodeAssistProcessor.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/LanguageServerCodeAssistProcessor.java index 48daec7d02b..b6e5bedef3a 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/LanguageServerCodeAssistProcessor.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/codeassist/LanguageServerCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.codeassist; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/LanguageServerSignatureHelp.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/LanguageServerSignatureHelp.java index 11d07c13149..53b9543977f 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/LanguageServerSignatureHelp.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/LanguageServerSignatureHelp.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.signature; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/LanguageServerSignatureHelpFactory.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/LanguageServerSignatureHelpFactory.java index 2f2dccc8d20..ccd1a497f67 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/LanguageServerSignatureHelpFactory.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/LanguageServerSignatureHelpFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.signature; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/ParamterInfoImpl.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/ParamterInfoImpl.java index 72e27082ee5..fd88f3bc070 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/ParamterInfoImpl.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/ParamterInfoImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.signature; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/SignatureHelpImpl.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/SignatureHelpImpl.java index 6a2e24ae82e..d0867829029 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/SignatureHelpImpl.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/SignatureHelpImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.signature; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/SignatureInfoImpl.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/SignatureInfoImpl.java index e127e2f0e6a..3404a446b21 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/SignatureInfoImpl.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/signature/SignatureInfoImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.signature; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/FullTextDocumentSynchronize.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/FullTextDocumentSynchronize.java index b9234bded1e..4e1c4e026c2 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/FullTextDocumentSynchronize.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/FullTextDocumentSynchronize.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.sync; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/IncrementalTextDocumentSynchronize.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/IncrementalTextDocumentSynchronize.java index c81b6a9a7a1..e2992ce35e3 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/IncrementalTextDocumentSynchronize.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/IncrementalTextDocumentSynchronize.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.sync; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/TextDocumentSynchronize.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/TextDocumentSynchronize.java index c673f29beb3..68cd3d96db5 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/TextDocumentSynchronize.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/TextDocumentSynchronize.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.sync; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/TextDocumentSynchronizeFactory.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/TextDocumentSynchronizeFactory.java index 98dbc13b6d9..320e3281be1 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/TextDocumentSynchronizeFactory.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/editor/sync/TextDocumentSynchronizeFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.editor.sync; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/highlighting/OccurrencesProvider.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/highlighting/OccurrencesProvider.java index 6f18f8d3405..55d98682402 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/highlighting/OccurrencesProvider.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/highlighting/OccurrencesProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.highlighting; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/hover/HoverProvider.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/hover/HoverProvider.java index 8ab3b0d5c90..84e803040aa 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/hover/HoverProvider.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/hover/HoverProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.hover; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/inject/LanguageServerGinModule.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/inject/LanguageServerGinModule.java index 52191f545ca..2a0df06e677 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/inject/LanguageServerGinModule.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/inject/LanguageServerGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.inject; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationPresenter.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationPresenter.java index 4e7cf819000..3a3064787c6 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationPresenter.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.location; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationPresenterFactory.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationPresenterFactory.java index 37be61f0eb5..01d11aa0501 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationPresenterFactory.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationPresenterFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.location; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationView.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationView.java index ffa8e974e79..43bf66c2c8d 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationView.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.location; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationViewImpl.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationViewImpl.java index b726025b6d6..bc65d227b6a 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationViewImpl.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/location/OpenLocationViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.location; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/declaration/FindDefinitionAction.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/declaration/FindDefinitionAction.java index 07b55645af9..085105ba133 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/declaration/FindDefinitionAction.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/declaration/FindDefinitionAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.navigation.declaration; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/references/FindReferencesAction.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/references/FindReferencesAction.java index 7e94fa0c759..0412f7e62ff 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/references/FindReferencesAction.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/references/FindReferencesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.navigation.references; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/GoToSymbolAction.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/GoToSymbolAction.java index b45ad83f158..76d778b4a04 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/GoToSymbolAction.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/GoToSymbolAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.navigation.symbol; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/SymbolEntry.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/SymbolEntry.java index cc197f710c0..dcf6bf2016d 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/SymbolEntry.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/SymbolEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.navigation.symbol; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/SymbolKindHelper.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/SymbolKindHelper.java index c36f0248b55..081e552dd4e 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/SymbolKindHelper.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/symbol/SymbolKindHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.navigation.symbol; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/workspace/FindSymbolAction.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/workspace/FindSymbolAction.java index fb5dc09df83..a2b6848e88f 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/workspace/FindSymbolAction.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/workspace/FindSymbolAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.navigation.workspace; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/workspace/SymbolEntry.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/workspace/SymbolEntry.java index c4fb32137d0..3a20de600fd 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/workspace/SymbolEntry.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/navigation/workspace/SymbolEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.navigation.workspace; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/EditorQuickOpenEntry.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/EditorQuickOpenEntry.java index 542505a6ac3..d42015fb02f 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/EditorQuickOpenEntry.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/EditorQuickOpenEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.quickopen; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenEntry.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenEntry.java index 6e4d5b03fe3..cf9bab3ff53 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenEntry.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.quickopen; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenEntryGroup.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenEntryGroup.java index 8b060a2218c..93f04631697 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenEntryGroup.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenEntryGroup.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.quickopen; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenModel.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenModel.java index 27512bc331a..78d8c108efd 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenModel.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.quickopen; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenPresenter.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenPresenter.java index edfdc31d7d9..47c7634c813 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenPresenter.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.quickopen; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenView.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenView.java index 84bb23d5b02..8b18a78dfc8 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenView.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.quickopen; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenViewImpl.java b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenViewImpl.java index d01530082b9..dcc3c9cb2b3 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenViewImpl.java +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.languageserver.ide.quickopen; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenViewImpl.ui.xml b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenViewImpl.ui.xml index 67bf25c01aa..169b9b0ba23 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenViewImpl.ui.xml +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/java/org/eclipse/che/plugin/languageserver/ide/quickopen/QuickOpenViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/LanguageServer.gwt.xml b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/LanguageServer.gwt.xml index ed4207242af..7d0916887b6 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/LanguageServer.gwt.xml +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/LanguageServer.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/LanguageServerLocalization.properties b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/LanguageServerLocalization.properties index a04584eb9af..0bfe6e00880 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/LanguageServerLocalization.properties +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/LanguageServerLocalization.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # # ACTIONS diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/QuickOpenList.css b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/QuickOpenList.css index c82168132cc..3dc8abaf134 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/QuickOpenList.css +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/QuickOpenList.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @def menuListBorderPx 1px; diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/languageserver.css b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/languageserver.css index 5ae207483d8..9dbf8a40237 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/languageserver.css +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/languageserver.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .overview-mark-error, .overview-mark-warning, .overview-mark-task { diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/category.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/category.svg index 2d22c2d071c..5a32e198d2d 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/category.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/category.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/class.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/class.svg index 042e6ccf6bd..98e0278f971 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/class.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/class.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/interface.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/interface.svg index 61aaa4006e9..b76d0cf6c1f 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/interface.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/interface.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/method.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/method.svg index af574858b0b..ee819b9ba83 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/method.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/method.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/text.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/text.svg index 782e377d34b..0d1473adf04 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/text.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/text.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/value.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/value.svg index 4b453323cdb..1760c9f7bb5 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/value.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/codeassist/value.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/find.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/find.svg index abc35dea8f1..2151366d6a8 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/find.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/find.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/import.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/import.svg index f441cdabb2c..af93e12c678 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/import.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/import.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/mark-warning.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/mark-warning.svg index 8a4da9e522d..94c3dff4d29 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/mark-warning.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/mark-warning.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/taskmrk.svg b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/taskmrk.svg index 01d659dd203..3297bcffe08 100644 --- a/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/taskmrk.svg +++ b/plugins/plugin-languageserver/che-plugin-languageserver-ide/src/main/resources/org/eclipse/che/plugin/languageserver/ide/svg/taskmrk.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-languageserver/pom.xml b/plugins/plugin-languageserver/pom.xml index c5212b11dc7..c9d1c613e33 100644 --- a/plugins/plugin-languageserver/pom.xml +++ b/plugins/plugin-languageserver/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-machine/che-plugin-machine-ext-server/pom.xml b/plugins/plugin-machine/che-plugin-machine-ext-server/pom.xml index 923194ce6f0..5a7467f9d7f 100644 --- a/plugins/plugin-machine/che-plugin-machine-ext-server/pom.xml +++ b/plugins/plugin-machine/che-plugin-machine-ext-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/MachineModule.java b/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/MachineModule.java index f482d13685b..c771ae3f983 100644 --- a/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/MachineModule.java +++ b/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/MachineModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.machine.server; diff --git a/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/ssh/KeysInjector.java b/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/ssh/KeysInjector.java index 70aa92867ae..b14af55efec 100644 --- a/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/ssh/KeysInjector.java +++ b/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/ssh/KeysInjector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.machine.server.ssh; diff --git a/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/ssh/WorkspaceSshKeys.java b/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/ssh/WorkspaceSshKeys.java index c2e7b36d6a8..414468194dc 100644 --- a/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/ssh/WorkspaceSshKeys.java +++ b/plugins/plugin-machine/che-plugin-machine-ext-server/src/main/java/org/eclipse/che/ide/ext/machine/server/ssh/WorkspaceSshKeys.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.machine.server.ssh; diff --git a/plugins/plugin-machine/che-plugin-machine-ext-server/src/test/java/org/eclipse/che/ide/ext/machine/server/ssh/KeysInjectorTest.java b/plugins/plugin-machine/che-plugin-machine-ext-server/src/test/java/org/eclipse/che/ide/ext/machine/server/ssh/KeysInjectorTest.java index 58c91050d0d..3186b54813c 100644 --- a/plugins/plugin-machine/che-plugin-machine-ext-server/src/test/java/org/eclipse/che/ide/ext/machine/server/ssh/KeysInjectorTest.java +++ b/plugins/plugin-machine/che-plugin-machine-ext-server/src/test/java/org/eclipse/che/ide/ext/machine/server/ssh/KeysInjectorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.machine.server.ssh; diff --git a/plugins/plugin-machine/che-plugin-machine-ext-server/src/test/java/org/eclipse/che/ide/ext/machine/server/ssh/WorkspaceSshKeysTest.java b/plugins/plugin-machine/che-plugin-machine-ext-server/src/test/java/org/eclipse/che/ide/ext/machine/server/ssh/WorkspaceSshKeysTest.java index 747629ef61b..327c823ae30 100644 --- a/plugins/plugin-machine/che-plugin-machine-ext-server/src/test/java/org/eclipse/che/ide/ext/machine/server/ssh/WorkspaceSshKeysTest.java +++ b/plugins/plugin-machine/che-plugin-machine-ext-server/src/test/java/org/eclipse/che/ide/ext/machine/server/ssh/WorkspaceSshKeysTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.machine.server.ssh; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/pom.xml b/plugins/plugin-machine/che-plugin-machine-ssh-client/pom.xml index 84aaba2860e..9b2362216f2 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/pom.xml +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshExtension.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshExtension.java index 103bc854e17..53277d5686f 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshExtension.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshLocalizationConstant.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshLocalizationConstant.java index dbd0589713b..82de58cf28c 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshLocalizationConstant.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshResources.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshResources.java index ee8b1c0a827..9109b81c9f6 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshResources.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/SshResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/inject/SshGinModule.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/inject/SshGinModule.java index 0bb4fc50f05..d19f24ba92c 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/inject/SshGinModule.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/inject/SshGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.inject; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyView.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyView.java index 89eb26bb557..553e46f8125 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyView.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.manage; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyViewImpl.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyViewImpl.java index adbeaf57b9f..99056d0050a 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyViewImpl.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.manage; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyViewImpl.ui.xml b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyViewImpl.ui.xml index 2c1bcfbfa64..a0c46d88b45 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyViewImpl.ui.xml +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/ShowSshKeyViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerPresenter.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerPresenter.java index bba5a8dac8b..ab1c31bc67a 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerPresenter.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.manage; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerView.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerView.java index bf99356eb31..20817a4d1f7 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerView.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.manage; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerViewImpl.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerViewImpl.java index a533e2f45cc..87e486c879b 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerViewImpl.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.manage; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerViewImpl.ui.xml b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerViewImpl.ui.xml index cd9287faed3..0625f4da027 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerViewImpl.ui.xml +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/manage/SshKeyManagerViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyPresenter.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyPresenter.java index 8d14af53335..b6fdeac0b98 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyPresenter.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.upload; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyView.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyView.java index 6bcc7561509..27af1726a46 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyView.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.upload; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyViewImpl.java b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyViewImpl.java index 28144f02f5f..02e8a571727 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyViewImpl.java +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.ssh.client.upload; diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyViewImpl.ui.xml b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyViewImpl.ui.xml index bb57bf2712f..1b240e071be 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyViewImpl.ui.xml +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/java/org/eclipse/che/ide/ext/ssh/client/upload/UploadSshKeyViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/resources/org/eclipse/che/ide/ext/ssh/MachineSsh.gwt.xml b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/resources/org/eclipse/che/ide/ext/ssh/MachineSsh.gwt.xml index fd542b2a803..5a1080efb80 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/resources/org/eclipse/che/ide/ext/ssh/MachineSsh.gwt.xml +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/resources/org/eclipse/che/ide/ext/ssh/MachineSsh.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/resources/org/eclipse/che/ide/ext/ssh/client/SshLocalizationConstant.properties b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/resources/org/eclipse/che/ide/ext/ssh/client/SshLocalizationConstant.properties index 2df6c0087b7..33935234f72 100644 --- a/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/resources/org/eclipse/che/ide/ext/ssh/client/SshLocalizationConstant.properties +++ b/plugins/plugin-machine/che-plugin-machine-ssh-client/src/main/resources/org/eclipse/che/ide/ext/ssh/client/SshLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ############Generate SSH Key################# diff --git a/plugins/plugin-machine/pom.xml b/plugins/plugin-machine/pom.xml index 5c4e13daaa3..039a85ee589 100644 --- a/plugins/plugin-machine/pom.xml +++ b/plugins/plugin-machine/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-generator-archetype/pom.xml b/plugins/plugin-maven/che-plugin-maven-generator-archetype/pom.xml index 1f8a0a4e131..f0c73d0fd8d 100644 --- a/plugins/plugin-maven/che-plugin-maven-generator-archetype/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-generator-archetype/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeGenerator.java b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeGenerator.java index 70aaa92fba8..a94411eae20 100644 --- a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeGenerator.java +++ b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.generator.archetype; diff --git a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeOutputImpl.java b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeOutputImpl.java index 5414cb5268c..8269b617062 100644 --- a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeOutputImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeOutputImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.generator.archetype; diff --git a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/MavenArchetypeImpl.java b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/MavenArchetypeImpl.java index e6f4f55ab48..cb5e5f2adfb 100644 --- a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/MavenArchetypeImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/MavenArchetypeImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.generator.archetype; diff --git a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/MavenArchetypeJsonRpcMessenger.java b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/MavenArchetypeJsonRpcMessenger.java index af3cd9f87d7..43fafa6fc1b 100644 --- a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/MavenArchetypeJsonRpcMessenger.java +++ b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/main/java/org/eclipse/che/plugin/maven/generator/archetype/MavenArchetypeJsonRpcMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.generator.archetype; diff --git a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/test/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeGeneratorTest.java b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/test/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeGeneratorTest.java index 51420035a36..87b777ddd50 100644 --- a/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/test/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeGeneratorTest.java +++ b/plugins/plugin-maven/che-plugin-maven-generator-archetype/src/test/java/org/eclipse/che/plugin/maven/generator/archetype/ArchetypeGeneratorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.generator.archetype; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/pom.xml b/plugins/plugin-maven/che-plugin-maven-ide/pom.xml index 6e88dd076ee..24156b7f8fe 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenArchetype.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenArchetype.java index 92aa8418708..0a1ee43b9f8 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenArchetype.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenArchetype.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenExtension.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenExtension.java index 5a04634efdb..11ca70188c5 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenExtension.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenJsonRpcHandler.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenJsonRpcHandler.java index a252619a859..08abb8009b2 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenJsonRpcHandler.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenJsonRpcHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenLocalizationConstant.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenLocalizationConstant.java index a85622d24fa..42116de8ec6 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenLocalizationConstant.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenResources.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenResources.java index d93d5d41677..85222de5e59 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenResources.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/MavenResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/GetEffectivePomAction.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/GetEffectivePomAction.java index f83a7e555a8..354e6aaa022 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/GetEffectivePomAction.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/GetEffectivePomAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.actions; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/MavenActionsConstants.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/MavenActionsConstants.java index 95582d2d389..d1886b749d9 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/MavenActionsConstants.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/MavenActionsConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.actions; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/ReimportMavenDependenciesAction.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/ReimportMavenDependenciesAction.java index 436021fed51..c9976246316 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/ReimportMavenDependenciesAction.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/actions/ReimportMavenDependenciesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.actions; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandModel.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandModel.java index 68f50922c19..a4a3cf27cbf 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandModel.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.command; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPagePresenter.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPagePresenter.java index 1e11372a8d5..8894776a231 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPagePresenter.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.command; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageView.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageView.java index 463b3c21a7f..4af71679578 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageView.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.command; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageViewImpl.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageViewImpl.java index bf6a230b8ea..b7ab9279ebc 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageViewImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.command; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageViewImpl.ui.xml b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageViewImpl.ui.xml index 2db6a50b6ef..04d479830c4 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageViewImpl.ui.xml +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/command/MavenCommandPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/DependencyResolverAction.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/DependencyResolverAction.java index d815c19ef3e..b74ec84c42a 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/DependencyResolverAction.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/DependencyResolverAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.comunnication.progressor.background; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/editor/ClassFileSourcesDownloader.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/editor/ClassFileSourcesDownloader.java index 404efb074d6..8d3c1aafccd 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/editor/ClassFileSourcesDownloader.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/editor/ClassFileSourcesDownloader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.editor; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/inject/MavenGinModule.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/inject/MavenGinModule.java index 3fdc4954c96..0427e93f795 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/inject/MavenGinModule.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/inject/MavenGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.inject; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/project/MavenModelImporter.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/project/MavenModelImporter.java index 3e2fcd4bec6..f3a790b8edb 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/project/MavenModelImporter.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/project/MavenModelImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.project; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/project/ResolvingMavenProjectStateHolder.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/project/ResolvingMavenProjectStateHolder.java index e4c4cde8387..061509fc27b 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/project/ResolvingMavenProjectStateHolder.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/project/ResolvingMavenProjectStateHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.project; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/MavenProjectInterceptor.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/MavenProjectInterceptor.java index e3833a145e7..d51174bbc80 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/MavenProjectInterceptor.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/MavenProjectInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.resource; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/MavenSourceFolderInterceptor.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/MavenSourceFolderInterceptor.java index acfbe82fd50..79042b93827 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/MavenSourceFolderInterceptor.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/MavenSourceFolderInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.resource; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/PomInterceptor.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/PomInterceptor.java index b4d08759241..d7191b1eaff 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/PomInterceptor.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/resource/PomInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.resource; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/service/MavenServerServiceClient.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/service/MavenServerServiceClient.java index 2f028cae5b4..177f99b107f 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/service/MavenServerServiceClient.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/service/MavenServerServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.service; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/service/MavenServerServiceClientImpl.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/service/MavenServerServiceClientImpl.java index 868bf5fbf70..8eea4caa369 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/service/MavenServerServiceClientImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/service/MavenServerServiceClientImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.service; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPagePresenter.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPagePresenter.java index 7fee0629346..7b121d32eeb 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPagePresenter.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.wizard; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageView.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageView.java index aaf6f9392f5..4c1d6a84ffa 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageView.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.wizard; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageViewImpl.java b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageViewImpl.java index be02486ea20..f1e4ddec4c3 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageViewImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.client.wizard; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageViewImpl.ui.xml b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageViewImpl.ui.xml index 4887dd9bd1c..dd2f083a32f 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageViewImpl.ui.xml +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/java/org/eclipse/che/plugin/maven/client/wizard/MavenPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/Maven.css b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/Maven.css index 57a4a47364d..7722657a166 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/Maven.css +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/Maven.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .editorInfoPanel { width: 100%; diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/MavenLocalizationConstant.properties b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/MavenLocalizationConstant.properties index 20ad9f55883..5ab977f5230 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/MavenLocalizationConstant.properties +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/MavenLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ##### Actions ##### diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/command/maven-command-type.svg b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/command/maven-command-type.svg index 41e2c710ad5..578c3fdf798 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/command/maven-command-type.svg +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/command/maven-command-type.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/Loader.css b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/Loader.css index 7ff94ef10a1..ab36d1e6ddb 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/Loader.css +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/Loader.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @eval progressColor org.eclipse.che.ide.api.theme.Style.theme.loaderProgressStatusColor(); diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/error.svg b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/error.svg index 613e712edf6..79f4deebda2 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/error.svg +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/error.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/loaderIcon.svg b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/loaderIcon.svg index 2656299794f..3a7c8c08cdf 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/loaderIcon.svg +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/comunnication/progressor/background/loaderIcon.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/maven.svg b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/maven.svg index 25d52352391..340f829285e 100644 --- a/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/maven.svg +++ b/plugins/plugin-maven/che-plugin-maven-ide/src/main/resources/org/eclipse/che/plugin/maven/client/maven.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenServerManager.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenServerManager.java index b0c9246733f..7c6e2eac3e8 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenServerManager.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenServerManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenServerWrapper.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenServerWrapper.java index 82e36bcbb98..21f122411e1 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenServerWrapper.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenServerWrapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenWrapperManager.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenWrapperManager.java index d8c360f6638..30d4149a438 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenWrapperManager.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/MavenWrapperManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/PomModificationDetector.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/PomModificationDetector.java index 51d03582795..682294dfd6b 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/PomModificationDetector.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/PomModificationDetector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/BufferOutputFixedRateSender.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/BufferOutputFixedRateSender.java index 0388f46850d..c43f6aa836c 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/BufferOutputFixedRateSender.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/BufferOutputFixedRateSender.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/EclipseWorkspaceProvider.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/EclipseWorkspaceProvider.java index e45c798070a..22558508239 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/EclipseWorkspaceProvider.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/EclipseWorkspaceProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathContainer.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathContainer.java index 667b3a8a6ba..800eae9fe89 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathContainer.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathContainer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathContainerInitializer.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathContainerInitializer.java index 275b8a09eef..083698474f2 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathContainerInitializer.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathContainerInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathUtil.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathUtil.java index b88c0f0493c..4ca02fe3d35 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathUtil.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenClasspathUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenCommunication.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenCommunication.java index 5aa93e4a04c..51038f6733d 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenCommunication.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenCommunication.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenExecutorService.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenExecutorService.java index a5ddb7d2051..23e35449f26 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenExecutorService.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenExecutorService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenJavaProjectConfigurator.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenJavaProjectConfigurator.java index 5c3d491b246..b3682e97d44 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenJavaProjectConfigurator.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenJavaProjectConfigurator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenJsonRpcCommunication.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenJsonRpcCommunication.java index 9cdb14d70f5..fdd91330fce 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenJsonRpcCommunication.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenJsonRpcCommunication.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProgressNotifier.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProgressNotifier.java index 8698f5732f8..2e2aa33df85 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProgressNotifier.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProgressNotifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectListener.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectListener.java index e40fee5fd76..e0a2c0158b5 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectListener.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectManager.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectManager.java index 8aa76e4e7d0..f9c27a24b24 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectManager.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectResolveTask.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectResolveTask.java index 33f3d0c3d97..b1be4cfd48c 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectResolveTask.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectResolveTask.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectTask.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectTask.java index ea31537024c..ebe40b207ce 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectTask.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenProjectTask.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenServerNotifier.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenServerNotifier.java index 29c32efc7cb..0d26a620a7c 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenServerNotifier.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenServerNotifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenTaskExecutor.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenTaskExecutor.java index f9b006e088d..1c5786a7b52 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenTaskExecutor.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenTaskExecutor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenTerminalImpl.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenTerminalImpl.java index 408f4258fbb..4d239927b6d 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenTerminalImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenTerminalImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenWebSocketCommunication.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenWebSocketCommunication.java index 8ed2faaa8a1..1021617b685 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenWebSocketCommunication.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenWebSocketCommunication.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenWorkspace.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenWorkspace.java index b062dc690cf..258b0de0a38 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenWorkspace.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/MavenWorkspace.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathEntryHelper.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathEntryHelper.java index 9e7e8b7993c..829d9a0377c 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathEntryHelper.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathEntryHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.classpath; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathHelper.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathHelper.java index e0813ef64b7..101f1665ea8 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathHelper.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.classpath; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathManager.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathManager.java index d3b4e7f6002..e88709a5a60 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathManager.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/ClasspathManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.classpath; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/MavenLocalRepositoryUtil.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/MavenLocalRepositoryUtil.java index 7baa1fa0f8d..8fee312f32f 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/MavenLocalRepositoryUtil.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/classpath/MavenLocalRepositoryUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.classpath; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReader.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReader.java index 72c70989e71..318d24d9e07 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReader.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.project; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReaderResult.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReaderResult.java index f8cd899a719..ccc1957c5ef 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReaderResult.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReaderResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.project; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenProject.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenProject.java index b8f3ae13632..bf928df2fc2 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenProject.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenProject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.project; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenProjectModifications.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenProjectModifications.java index 0677622f885..62ff57999ca 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenProjectModifications.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/MavenProjectModifications.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.project; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/PomChangeListener.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/PomChangeListener.java index c8e9d86f0e8..a8d868c579b 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/PomChangeListener.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/project/PomChangeListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.project; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/reconcile/PomReconciler.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/reconcile/PomReconciler.java index 3804b044f20..2847256ff47 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/reconcile/PomReconciler.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/core/reconcile/PomReconciler.java @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.reconcile; /******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/inject/MavenModule.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/inject/MavenModule.java index 0b07d01cf8d..66409d84553 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/inject/MavenModule.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/inject/MavenModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.inject; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenProjectType.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenProjectType.java index 1ae3a7a8156..c166a882487 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenProjectType.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProvider.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProvider.java index 46d7c0b7e06..58858db3c66 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProvider.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProviderFactory.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProviderFactory.java index 78fdfe74158..86cf62c82ba 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProviderFactory.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProviderFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/ArchetypeGenerationStrategy.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/ArchetypeGenerationStrategy.java index d29f53d3e51..7c8fe54a87a 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/ArchetypeGenerationStrategy.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/ArchetypeGenerationStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype.handler; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/GeneratorStrategy.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/GeneratorStrategy.java index afeea0052b6..185b8ceaf8d 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/GeneratorStrategy.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/GeneratorStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype.handler; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectGenerator.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectGenerator.java index 3a19552f59c..bee05109a06 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectGenerator.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype.handler; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectInitHandler.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectInitHandler.java index 07aeee9f941..79ec290165b 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectInitHandler.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectInitHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype.handler; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/SimpleGeneratorStrategy.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/SimpleGeneratorStrategy.java index 8202a78dff5..f156f87cb39 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/SimpleGeneratorStrategy.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/projecttype/handler/SimpleGeneratorStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype.handler; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rest/MavenServerService.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rest/MavenServerService.java index 79cb35ef9c2..d6383c36fbd 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rest/MavenServerService.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rest/MavenServerService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.rest; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/Ref.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/Ref.java index 122a954723b..011933f88d3 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/Ref.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/Ref.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.rmi; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/RmiClient.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/RmiClient.java index 2d9a589ac08..be2cd88cd33 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/RmiClient.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/RmiClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.rmi; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/RmiObjectWrapper.java b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/RmiObjectWrapper.java index 1d1f7e39dd5..3b52173ff51 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/RmiObjectWrapper.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/main/java/org/eclipse/che/plugin/maven/server/rmi/RmiObjectWrapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.rmi; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/BaseTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/BaseTest.java index 6518a3deb9a..789b4575101 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/BaseTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/BaseTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/WorkspaceTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/WorkspaceTest.java index dbfe7d04889..9fb91938b4a 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/WorkspaceTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/WorkspaceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/classpath/ClasspathManagerTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/classpath/ClasspathManagerTest.java index c8a9bf3cbc4..4751cef3c61 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/classpath/ClasspathManagerTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/classpath/ClasspathManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.classpath; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/classpath/OutputPathTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/classpath/OutputPathTest.java index bed66216fa5..c512a764c19 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/classpath/OutputPathTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/classpath/OutputPathTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.classpath; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReaderTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReaderTest.java index a4a593e5629..e3fa399ddea 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReaderTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/core/project/MavenModelReaderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.project; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/core/reconcile/PomReconcilerTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/core/reconcile/PomReconcilerTest.java index b4e1cb6a3ba..93547ac621a 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/core/reconcile/PomReconcilerTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/core/reconcile/PomReconcilerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.core.reconcile; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/MavenProjectTypeTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/MavenProjectTypeTest.java index 280eb1696c7..09d52df4c48 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/MavenProjectTypeTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/MavenProjectTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProviderTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProviderTest.java index 4432a9a1f59..020c27c2f1a 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProviderTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/MavenValueProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectGeneratorTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectGeneratorTest.java index 53501f721bf..fc69bcf97e4 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectGeneratorTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/handler/MavenProjectGeneratorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype.handler; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/handler/SimpleGeneratorStrategyTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/handler/SimpleGeneratorStrategyTest.java index d61a0301d4c..629bb1fbfc0 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/handler/SimpleGeneratorStrategyTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/projecttype/handler/SimpleGeneratorStrategyTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.projecttype.handler; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/rmi/MavenProjectManagerTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/rmi/MavenProjectManagerTest.java index b66897b5cc3..b58e73ab313 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/rmi/MavenProjectManagerTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/rmi/MavenProjectManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.rmi; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/rmi/MavenServerManagerTest.java b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/rmi/MavenServerManagerTest.java index 3f2580f2f26..5b40f71e434 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/rmi/MavenServerManagerTest.java +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/java/org/eclipse/che/plugin/maven/server/rmi/MavenServerManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.server.rmi; diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/BadProject/pom.xml b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/BadProject/pom.xml index 0947cf56b20..53a39927fea 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/BadProject/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/BadProject/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/module1/pom.xml b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/module1/pom.xml index 31021370a9b..e25d2b9ac41 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/module1/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/module1/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/module2/pom.xml b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/module2/pom.xml index 8683ec9daa3..31e806a2c4b 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/module2/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/module2/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/module3/pom.xml b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/module3/pom.xml index 8fd0e259f18..91f3fe222b1 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/module3/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/module3/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/module4/pom.xml b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/module4/pom.xml index 9120bfbfaca..411e7dc8481 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/module4/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/module4/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/pom.xml b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/pom.xml index c251543d5f7..31efab79ffd 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/modulesX/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/pom.xml b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/pom.xml index c5da667c441..cdb703e7549 100644 --- a/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-server/src/test/resources/multi-module-with-profiles/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MavenArchetype.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MavenArchetype.java index cc5c10fa19e..67dfc19247d 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MavenArchetype.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MavenArchetype.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MavenAttributes.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MavenAttributes.java index e06afc32299..ea6c01501ea 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MavenAttributes.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MavenAttributes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MessageType.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MessageType.java index 6593f07f1a3..43048aa787a 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MessageType.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/MessageType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/ArchetypeOutput.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/ArchetypeOutput.java index bf1d103173c..9e7496fc51f 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/ArchetypeOutput.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/ArchetypeOutput.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenArchetypeDto.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenArchetypeDto.java index 60e7daf145c..24ece1c2601 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenArchetypeDto.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenArchetypeDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenOutputEventDto.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenOutputEventDto.java index 7ea20ea94f6..6dadced297a 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenOutputEventDto.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenOutputEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenProblem.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenProblem.java index 729bac382fc..74a0e2bf814 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenProblem.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/MavenProblem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/NotificationMessage.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/NotificationMessage.java index d262a9d38e4..8f6f5731132 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/NotificationMessage.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/NotificationMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/PercentMessageDto.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/PercentMessageDto.java index aa9faed306c..14da5571c45 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/PercentMessageDto.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/PercentMessageDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/PercentUndefinedMessageDto.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/PercentUndefinedMessageDto.java index 24502bdd86c..ee161201d11 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/PercentUndefinedMessageDto.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/PercentUndefinedMessageDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/ProjectsUpdateMessage.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/ProjectsUpdateMessage.java index 94948f61f57..8d7abc5ba9a 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/ProjectsUpdateMessage.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/ProjectsUpdateMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/StartStopNotification.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/StartStopNotification.java index 30b37949051..f7c4991f854 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/StartStopNotification.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/StartStopNotification.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/TextMessageDto.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/TextMessageDto.java index 43bb78c2f3e..6c28c6bb488 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/TextMessageDto.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/dto/TextMessageDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.dto; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenOutputEvent.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenOutputEvent.java index 9572e9cfd64..072c637dd5f 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenOutputEvent.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenOutputEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.event; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenPercentMessageEvent.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenPercentMessageEvent.java index b59dbb005b8..9bd9c9636ab 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenPercentMessageEvent.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenPercentMessageEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.event; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenPercentUndefinedEvent.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenPercentUndefinedEvent.java index 8eaf5ee6841..980c4e380d1 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenPercentUndefinedEvent.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenPercentUndefinedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.event; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenStartStopEvent.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenStartStopEvent.java index 3081d2d4de6..dc5ac906394 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenStartStopEvent.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenStartStopEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.event; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenTextMessageEvent.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenTextMessageEvent.java index a5cea284ab8..3e5b2d37063 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenTextMessageEvent.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenTextMessageEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.event; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenUpdateEvent.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenUpdateEvent.java index dc3edc0cdc9..79e0adb4a89 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenUpdateEvent.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/event/MavenUpdateEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.event; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenOutputEventImpl.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenOutputEventImpl.java index 028c198ecd8..b288ceb4cb8 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenOutputEventImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenOutputEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.impl; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenPercentEventImpl.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenPercentEventImpl.java index 087021585d3..717c8f287ef 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenPercentEventImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenPercentEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.impl; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenPercentUndefinedEventImpl.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenPercentUndefinedEventImpl.java index 6aa4ef44bc5..7511ce7c457 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenPercentUndefinedEventImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenPercentUndefinedEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.impl; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenStartStopEventImpl.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenStartStopEventImpl.java index a1017c436c9..ff019c0e2df 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenStartStopEventImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenStartStopEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.impl; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenTextMessageEventImpl.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenTextMessageEventImpl.java index 08dc09210f2..ca20e50013a 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenTextMessageEventImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenTextMessageEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.impl; diff --git a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenUpdateEventImpl.java b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenUpdateEventImpl.java index 3b04b93b890..0d6f8729e0b 100644 --- a/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenUpdateEventImpl.java +++ b/plugins/plugin-maven/che-plugin-maven-shared/src/main/java/org/eclipse/che/plugin/maven/shared/impl/MavenUpdateEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven.shared.impl; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/pom.xml b/plugins/plugin-maven/che-plugin-maven-tools/pom.xml index c471c07101a..bd651b5c24f 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-tools/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Activation.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Activation.java index e098c7f6790..f86d89cca2e 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Activation.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Activation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationFile.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationFile.java index 5eb3a484c01..e2e919b8894 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationFile.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationOS.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationOS.java index 3d32ad24365..cba5c8dc71a 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationOS.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationOS.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationProperty.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationProperty.java index c9f02b72c8c..725c3ce2b26 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationProperty.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/ActivationProperty.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Build.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Build.java index 353f2c12b23..5f3ef14803b 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Build.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Build.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/BuildBase.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/BuildBase.java index 43fa4aa3379..93b77ca30e2 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/BuildBase.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/BuildBase.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Dependencies.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Dependencies.java index 523a350f031..6cf7a4ad860 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Dependencies.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Dependencies.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Dependency.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Dependency.java index f03ef1b8817..d102d77237b 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Dependency.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Dependency.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/DependencyManagement.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/DependencyManagement.java index d6322d16680..559f599c138 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/DependencyManagement.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/DependencyManagement.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Exclusion.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Exclusion.java index 3945962865c..85af3d770cc 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Exclusion.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Exclusion.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/MavenArtifact.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/MavenArtifact.java index f4f91d88ea1..7a7db848be5 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/MavenArtifact.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/MavenArtifact.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/MavenUtils.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/MavenUtils.java index cc5bbdf6403..a9bd31c56cb 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/MavenUtils.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/MavenUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Model.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Model.java index d295bea4f0b..7e3d092a2d7 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Model.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Model.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Parent.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Parent.java index d58d8ba9ee2..4a935cefc4d 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Parent.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Parent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Plugin.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Plugin.java index fd4f77a9268..2214dc03e34 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Plugin.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Plugin.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Profile.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Profile.java index a3de4c00bbc..74206b54d6f 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Profile.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Profile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Repository.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Repository.java index 310ec68011f..f74f4134241 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Repository.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Repository.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/RepositoryPolicy.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/RepositoryPolicy.java index eae2bc289f4..7451fb6d8ec 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/RepositoryPolicy.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/RepositoryPolicy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Resource.java b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Resource.java index 33dd723d77e..a151ad46074 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Resource.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/main/java/org/eclipse/che/ide/maven/tools/Resource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/java/org/eclipse/che/ide/maven/tools/MavenUtilTest.java b/plugins/plugin-maven/che-plugin-maven-tools/src/test/java/org/eclipse/che/ide/maven/tools/MavenUtilTest.java index 30a8fdd43eb..b70d1db0cab 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/java/org/eclipse/che/ide/maven/tools/MavenUtilTest.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/java/org/eclipse/che/ide/maven/tools/MavenUtilTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/java/org/eclipse/che/ide/maven/tools/ModelTest.java b/plugins/plugin-maven/che-plugin-maven-tools/src/test/java/org/eclipse/che/ide/maven/tools/ModelTest.java index b6a81c198f2..13c08039587 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/java/org/eclipse/che/ide/maven/tools/ModelTest.java +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/java/org/eclipse/che/ide/maven/tools/ModelTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.maven.tools; diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/module1/pom.xml b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/module1/pom.xml index 31021370a9b..e25d2b9ac41 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/module1/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/module1/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/module2/pom.xml b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/module2/pom.xml index 8683ec9daa3..31e806a2c4b 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/module2/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/module2/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/module3/pom.xml b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/module3/pom.xml index 8fd0e259f18..91f3fe222b1 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/module3/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/module3/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/module4/pom.xml b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/module4/pom.xml index 9120bfbfaca..411e7dc8481 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/module4/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/module4/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/pom.xml b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/pom.xml index c251543d5f7..31efab79ffd 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/modulesX/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/pom.xml b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/pom.xml index 772fa47095e..e0e92e0dcbc 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/multi-module/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/no-packaging.xml b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/no-packaging.xml index 46e4d20b638..9359acc6c38 100644 --- a/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/no-packaging.xml +++ b/plugins/plugin-maven/che-plugin-maven-tools/src/test/resources/no-packaging.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-wsmaster/pom.xml b/plugins/plugin-maven/che-plugin-maven-wsmaster/pom.xml index d361290ff38..cda2102c91a 100644 --- a/plugins/plugin-maven/che-plugin-maven-wsmaster/pom.xml +++ b/plugins/plugin-maven/che-plugin-maven-wsmaster/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/che-plugin-maven-wsmaster/src/main/java/org/eclipse/che/plugin/maven/MavenOptsEnvVariableProvider.java b/plugins/plugin-maven/che-plugin-maven-wsmaster/src/main/java/org/eclipse/che/plugin/maven/MavenOptsEnvVariableProvider.java index 3f3f2a366f8..6b1ef17e059 100644 --- a/plugins/plugin-maven/che-plugin-maven-wsmaster/src/main/java/org/eclipse/che/plugin/maven/MavenOptsEnvVariableProvider.java +++ b/plugins/plugin-maven/che-plugin-maven-wsmaster/src/main/java/org/eclipse/che/plugin/maven/MavenOptsEnvVariableProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven; diff --git a/plugins/plugin-maven/che-plugin-maven-wsmaster/src/main/java/org/eclipse/che/plugin/maven/WsMasterModule.java b/plugins/plugin-maven/che-plugin-maven-wsmaster/src/main/java/org/eclipse/che/plugin/maven/WsMasterModule.java index 53d965c3c47..34fc4af2f6c 100644 --- a/plugins/plugin-maven/che-plugin-maven-wsmaster/src/main/java/org/eclipse/che/plugin/maven/WsMasterModule.java +++ b/plugins/plugin-maven/che-plugin-maven-wsmaster/src/main/java/org/eclipse/che/plugin/maven/WsMasterModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.maven; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/pom.xml b/plugins/plugin-maven/maven-server/maven-server-api/pom.xml index bc6ede22525..f2f242a0c74 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-api/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivation.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivation.java index 8de38d0425b..b576fa1e228 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivation.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationFile.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationFile.java index ee04d8622d3..3cd4cac8471 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationFile.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationOS.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationOS.java index 3d2f0b67005..fa1d9701d9c 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationOS.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationOS.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationProperty.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationProperty.java index 54ed52977c4..4ef6b5461de 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationProperty.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenActivationProperty.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenArtifact.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenArtifact.java index a4b7143f578..09feea774dc 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenArtifact.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenArtifact.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenArtifactKey.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenArtifactKey.java index 944f435fe6c..bc84cb1e93f 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenArtifactKey.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenArtifactKey.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenBuild.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenBuild.java index cbb5767c662..ceba5aba35f 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenBuild.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenBuild.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenBuildBase.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenBuildBase.java index d8828afffe4..90b29322df2 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenBuildBase.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenBuildBase.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenConstants.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenConstants.java index 77aac7c05ca..314ff4254a7 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenConstants.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenExplicitProfiles.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenExplicitProfiles.java index dd4190fedc0..a135de3e745 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenExplicitProfiles.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenExplicitProfiles.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenKey.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenKey.java index 05b04bbb3cb..ee157249bd1 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenKey.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenKey.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenModel.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenModel.java index 9a7c51c9cf3..ecf3b7f7227 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenModel.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenModelBase.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenModelBase.java index 15dd96cdb6c..e6dd804f8af 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenModelBase.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenModelBase.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenParent.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenParent.java index ccf52c8589d..7de94ea1c12 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenParent.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenParent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenPlugin.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenPlugin.java index 45edb64085d..3a72de2277f 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenPlugin.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenPlugin.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenPluginExecution.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenPluginExecution.java index b764a96cfbf..4397de57fbc 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenPluginExecution.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenPluginExecution.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProblemType.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProblemType.java index 0eb4e2cd17a..3f92e1b2dc3 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProblemType.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProblemType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProfile.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProfile.java index 7298eaa0cd9..76c60a2b438 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProfile.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProfile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProjectProblem.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProjectProblem.java index 5922c243f6f..33808627f42 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProjectProblem.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenProjectProblem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenRemoteRepository.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenRemoteRepository.java index dca824c4670..cb1c52ba5f8 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenRemoteRepository.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenRemoteRepository.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenRepositoryPolicy.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenRepositoryPolicy.java index f34bc898ac4..d9163345ee9 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenRepositoryPolicy.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenRepositoryPolicy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenResource.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenResource.java index a783cae32ee..ea715e10f4c 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenResource.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenResource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenWorkspaceCache.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenWorkspaceCache.java index 93c074e1d5b..468939f7265 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenWorkspaceCache.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/data/MavenWorkspaceCache.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.data; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenProjectInfo.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenProjectInfo.java index f5a6342de11..81f29a2c24e 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenProjectInfo.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenProjectInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenRemoteServer.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenRemoteServer.java index 703d91136cd..02318ef466f 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenRemoteServer.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenRemoteServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServer.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServer.java index 8e8acce8b95..005794a54ec 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServer.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerDownloadListener.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerDownloadListener.java index 24297162e9b..4364942afe8 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerDownloadListener.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerDownloadListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerLogger.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerLogger.java index f5ae82bb1a0..676f76891e2 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerLogger.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerLogger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerProgressNotifier.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerProgressNotifier.java index 539e0dd7630..d56f6261426 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerProgressNotifier.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerProgressNotifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerResult.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerResult.java index 976c2c2e681..ace2a70e65e 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerResult.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenServerResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenSettings.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenSettings.java index 0f642b77cb2..f018d74c379 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenSettings.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenSettings.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenTerminal.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenTerminal.java index abebba69523..91fbcdb52c8 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenTerminal.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/MavenTerminal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/ProfileApplicationResult.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/ProfileApplicationResult.java index c68db4c1e63..f35079d6d50 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/ProfileApplicationResult.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/server/ProfileApplicationResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/util/JdomUtil.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/util/JdomUtil.java index b722cec3465..6ad9d051ec5 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/util/JdomUtil.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/maven/util/JdomUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.util; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/JNDI.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/JNDI.java index a85d0e9f1d0..d62219bb779 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/JNDI.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/JNDI.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.rmi; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/RmiObject.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/RmiObject.java index 3f9b77d972d..caba412faf9 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/RmiObject.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/RmiObject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.rmi; diff --git a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/RmiServer.java b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/RmiServer.java index c5a11fcb0b9..24ca20974e0 100644 --- a/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/RmiServer.java +++ b/plugins/plugin-maven/maven-server/maven-server-api/src/main/java/org/eclipse/che/rmi/RmiServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.rmi; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/pom.xml index e0d9a8ba928..b31630ad3ad 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/ArtifactTransferListener.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/ArtifactTransferListener.java index ce632921aa8..3cb04d3c0f2 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/ArtifactTransferListener.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/ArtifactTransferListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenFileProfileActivator.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenFileProfileActivator.java index a341e2a185f..4322e096cd9 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenFileProfileActivator.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenFileProfileActivator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenModelUtil.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenModelUtil.java index d38eba9b150..7adda5736ed 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenModelUtil.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenModelUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenRemoteServerImpl.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenRemoteServerImpl.java index 849e7c71e2c..08d0648fb21 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenRemoteServerImpl.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenRemoteServerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenResult.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenResult.java index 031542f42f3..13477e89bcf 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenResult.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenRmiObject.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenRmiObject.java index 479a21d0805..4102758d5b6 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenRmiObject.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenRmiObject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerContext.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerContext.java index 809ab1feb6f..2147ad6eb46 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerContext.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerContext.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerImpl.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerImpl.java index 7a25cb89ec6..5a39c7d69d9 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerImpl.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerMain.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerMain.java index 180fba2d206..04c898f6a03 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerMain.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerMain.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerProgressNotifierImpl.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerProgressNotifierImpl.java index cf538f45fb8..cd8620c5ee5 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerProgressNotifierImpl.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerProgressNotifierImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerTerminalLogger.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerTerminalLogger.java index 83ddb48e0c5..21f02ce9cc3 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerTerminalLogger.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenServerTerminalLogger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenWorkspaceReader.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenWorkspaceReader.java index 41e27344919..f3ace6d70bf 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenWorkspaceReader.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/MavenWorkspaceReader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/RuntimeRemoteException.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/RuntimeRemoteException.java index 955726fe89f..637b9d01e3f 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/RuntimeRemoteException.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/main/java/org/eclipse/che/maven/server/RuntimeRemoteException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/java/org/eclipse/che/maven/server/MavenServerTest.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/java/org/eclipse/che/maven/server/MavenServerTest.java index 382987084bb..670c37abea9 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/java/org/eclipse/che/maven/server/MavenServerTest.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/java/org/eclipse/che/maven/server/MavenServerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/java/org/eclipse/che/maven/server/ProjectResolverTest.java b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/java/org/eclipse/che/maven/server/ProjectResolverTest.java index ac4c2070c0e..0b099b696d5 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/java/org/eclipse/che/maven/server/ProjectResolverTest.java +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/java/org/eclipse/che/maven/server/ProjectResolverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.maven.server; diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/BadProject/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/BadProject/pom.xml index 928b2d51b4b..cc8e9cf25bd 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/BadProject/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/BadProject/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/ComplexPom/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/ComplexPom/pom.xml index 61dd37dcacf..502ed1bc659 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/ComplexPom/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/ComplexPom/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/EffectivePom/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/EffectivePom/pom.xml index 064a30fce58..aa979a98793 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/EffectivePom/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/EffectivePom/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/FirstProject/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/FirstProject/pom.xml index 87e0b84ff24..10979e8e7ed 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/FirstProject/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/FirstProject/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/dir/file.txt b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/dir/file.txt index 63e5926daa5..05057f4f697 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/dir/file.txt +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/dir/file.txt @@ -1,11 +1,11 @@ ==== - Copyright (c) 2012-2017 Codenvy, S.A. + Copyright (c) 2012-2017 Red Hat, 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: - Codenvy, S.A. - initial API and implementation + Red Hat, Inc. - initial API and implementation ==== diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/module1/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/module1/pom.xml index 31021370a9b..e25d2b9ac41 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/module1/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/module1/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/module2/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/module2/pom.xml index 8683ec9daa3..31e806a2c4b 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/module2/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/module2/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/module3/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/module3/pom.xml index 8fd0e259f18..91f3fe222b1 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/module3/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/module3/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/module4/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/module4/pom.xml index 9120bfbfaca..411e7dc8481 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/module4/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/module4/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/pom.xml index c251543d5f7..31efab79ffd 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/modulesX/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/pom.xml b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/pom.xml index a94c22e3a21..886d51f0dad 100644 --- a/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/pom.xml +++ b/plugins/plugin-maven/maven-server/maven-server-impl/src/test/resources/multi-module-with-profiles/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-maven/pom.xml b/plugins/plugin-maven/pom.xml index ab9576bc289..7eaf25be291 100644 --- a/plugins/plugin-maven/pom.xml +++ b/plugins/plugin-maven/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/pom.xml b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/pom.xml index e6d10bb946d..2a1767488da 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/pom.xml +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebugger.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebugger.java index fd97ebf6891..c5937ebf54e 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebugger.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebugger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerExtension.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerExtension.java index 4c3761c8f57..12643b85895 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerExtension.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerGinModule.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerGinModule.java index 9f8f117ebb1..59ff8561675 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerGinModule.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerLocalizationConstant.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerLocalizationConstant.java index 980860258e0..67c5c7cfdbe 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerLocalizationConstant.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerResources.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerResources.java index 0736e42870e..8d22cb4146a 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerResources.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPagePresenter.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPagePresenter.java index 9028228b6e9..f905089de42 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPagePresenter.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide.configuration; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageView.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageView.java index 2b84f2f3524..212505a06b4 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageView.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide.configuration; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageViewImpl.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageViewImpl.java index 48d644216a4..9cf4749d006 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageViewImpl.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide.configuration; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageViewImpl.ui.xml b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageViewImpl.ui.xml index 7c010cb2765..1d1114eeafa 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageViewImpl.ui.xml +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/resources/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerLocalizationConstant.properties b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/resources/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerLocalizationConstant.properties index b84df419803..b78eaf7a337 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/resources/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerLocalizationConstant.properties +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/resources/org/eclipse/che/plugin/nodejsdbg/ide/NodeJsDebuggerLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # # NodeJsDebuggerConfigurationPage diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/resources/org/eclipse/che/plugin/nodejsdbg/ide/configuration/nodejs-debugger-configuration-type.svg b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/resources/org/eclipse/che/plugin/nodejsdbg/ide/configuration/nodejs-debugger-configuration-type.svg index c7e4bc6eac3..d8c438a6be1 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/resources/org/eclipse/che/plugin/nodejsdbg/ide/configuration/nodejs-debugger-configuration-type.svg +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/main/resources/org/eclipse/che/plugin/nodejsdbg/ide/configuration/nodejs-debugger-configuration-type.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPagePresenterTest.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPagePresenterTest.java index 5a59d07b7e8..0173422a73e 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPagePresenterTest.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationPagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide.configuration; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationTypeTest.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationTypeTest.java index b46131818fa..638f1758343 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationTypeTest.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/java/org/eclipse/che/plugin/nodejsdbg/ide/configuration/NodeJsDebuggerConfigurationTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.ide.configuration; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/resources/logback-test.xml b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/resources/logback-test.xml index 66532473f0b..5b0ed77dc0e 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/resources/logback-test.xml +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-ide/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/pom.xml b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/pom.xml index 8c7b3f3ef23..718923c4bf7 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/pom.xml +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebugProcess.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebugProcess.java index 1b07d0ee729..33a2069943c 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebugProcess.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebugProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebugger.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebugger.java index 9e21d8838e6..3e4488133c0 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebugger.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebugger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerFactory.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerFactory.java index 0eddc2d2aad..6670024adc6 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerFactory.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerModule.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerModule.java index 09eeb90d739..a37577092aa 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerModule.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsOutput.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsOutput.java index 42b4d50a356..660f4957cb1 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsOutput.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsOutput.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsProcessObservable.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsProcessObservable.java index a39f03d785d..6387bf4ccc1 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsProcessObservable.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsProcessObservable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsProcessObserver.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsProcessObserver.java index d7927ebb717..ad728faf887 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsProcessObserver.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsProcessObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/OutputReader.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/OutputReader.java index c894933c6b5..a9cc5806b03 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/OutputReader.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/OutputReader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommand.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommand.java index 6a864dc57b4..6b5a8e915b3 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommand.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommand.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.command; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandImpl.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandImpl.java index a93f112dfd9..5a20c14b1c6 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandImpl.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.command; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandsLibrary.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandsLibrary.java index 0cec859c29a..4574024ec4d 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandsLibrary.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/command/NodeJsDebugCommandsLibrary.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.command; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerException.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerException.java index 78a43ff136a..5a0888a6dc4 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerException.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.exception; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerParseException.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerParseException.java index 7c9f87f4fe7..2f6ed744072 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerParseException.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerParseException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.exception; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerTerminatedException.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerTerminatedException.java index ede8f748fde..e3666fe8261 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerTerminatedException.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/exception/NodeJsDebuggerTerminatedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.exception; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBackTraceParser.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBackTraceParser.java index 864c1b7c533..f3dd69323d4 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBackTraceParser.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBackTraceParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBreakpointsParser.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBreakpointsParser.java index fbe2fb94f73..d4e832138a0 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBreakpointsParser.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBreakpointsParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsOutputParser.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsOutputParser.java index 9407ab14bdc..1e1bae04a6a 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsOutputParser.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsOutputParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsScriptsParser.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsScriptsParser.java index 0759d7a61b5..a1019518aff 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsScriptsParser.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsScriptsParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsStepParser.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsStepParser.java index e4b71aaec9b..4ba668e60fb 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsStepParser.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/main/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsStepParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerTest.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerTest.java index 9ef42613a4d..35b1ca254d2 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerTest.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/NodeJsDebuggerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBackTraceParserTest.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBackTraceParserTest.java index e0a2e9ce6a0..c61ac02ae60 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBackTraceParserTest.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBackTraceParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBreakpointsParserTest.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBreakpointsParserTest.java index 474362447e7..d1abfba9329 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBreakpointsParserTest.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsBreakpointsParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsScriptsParserTest.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsScriptsParserTest.java index 9db07c4bff2..1300d4626c3 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsScriptsParserTest.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsScriptsParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsStepParserTest.java b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsStepParserTest.java index 9dd976d5ba5..ae82b5f80b6 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsStepParserTest.java +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/java/org/eclipse/che/plugin/nodejsdbg/server/parser/NodeJsStepParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejsdbg.server.parser; diff --git a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/resources/logback-test.xml b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/resources/logback-test.xml index 2a7fd9851a8..26f112f15b5 100644 --- a/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/resources/logback-test.xml +++ b/plugins/plugin-nodejs-debugger/che-plugin-nodejs-debugger-server/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs-debugger/pom.xml b/plugins/plugin-nodejs-debugger/pom.xml index 917a1307eab..5abe9826b63 100644 --- a/plugins/plugin-nodejs-debugger/pom.xml +++ b/plugins/plugin-nodejs-debugger/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/pom.xml b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/pom.xml index bd1ce56b42f..6bf3e1ac924 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/pom.xml +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/NodeJsExtension.java b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/NodeJsExtension.java index 69c896a17df..ef53b798cb8 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/NodeJsExtension.java +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/NodeJsExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejs.ide; diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/NodeJsResources.java b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/NodeJsResources.java index 2873045d32f..745eb765c58 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/NodeJsResources.java +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/NodeJsResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejs.ide; diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/inject/NodeJsGinModule.java b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/inject/NodeJsGinModule.java index 7c69596c047..40c4a16d48e 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/inject/NodeJsGinModule.java +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/inject/NodeJsGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejs.ide.inject; diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/project/NodeJsProjectWizardRegistrar.java b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/project/NodeJsProjectWizardRegistrar.java index 2e290effe75..f0d757658e0 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/project/NodeJsProjectWizardRegistrar.java +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/java/org/eclipse/che/plugin/nodejs/ide/project/NodeJsProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejs.ide.project; diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/resources/org/eclipse/che/plugin/nodejs/NodeJs.gwt.xml b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/resources/org/eclipse/che/plugin/nodejs/NodeJs.gwt.xml index 7c3c2ff6e0e..475e33505ef 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/resources/org/eclipse/che/plugin/nodejs/NodeJs.gwt.xml +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/resources/org/eclipse/che/plugin/nodejs/NodeJs.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/resources/org/eclipse/che/plugin/nodejs/ide/icons/js.svg b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/resources/org/eclipse/che/plugin/nodejs/ide/icons/js.svg index 24efe588848..f810bf63b3f 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/resources/org/eclipse/che/plugin/nodejs/ide/icons/js.svg +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-ide/src/main/resources/org/eclipse/che/plugin/nodejs/ide/icons/js.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/pom.xml b/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/pom.xml index e81ac14dcdf..de56a3fd5e4 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/pom.xml +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/generator/NodeJsProjectGenerator.java b/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/generator/NodeJsProjectGenerator.java index 15fe54fc6a3..fdc29db6d8c 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/generator/NodeJsProjectGenerator.java +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/generator/NodeJsProjectGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejs.generator; diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/inject/NodeJsModule.java b/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/inject/NodeJsModule.java index e72b6b15dd9..b603b7cb331 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/inject/NodeJsModule.java +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/inject/NodeJsModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejs.inject; diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/projecttype/NodeJsProjectType.java b/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/projecttype/NodeJsProjectType.java index 42d01aaa62b..65721e78047 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/projecttype/NodeJsProjectType.java +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-server/src/main/java/org/eclipse/che/plugin/nodejs/projecttype/NodeJsProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejs.projecttype; diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-shared/pom.xml b/plugins/plugin-nodejs/che-plugin-nodejs-lang-shared/pom.xml index e19b3c53481..288c18348e2 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-shared/pom.xml +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-nodejs/che-plugin-nodejs-lang-shared/src/main/java/org/eclipse/che/plugin/nodejs/shared/Constants.java b/plugins/plugin-nodejs/che-plugin-nodejs-lang-shared/src/main/java/org/eclipse/che/plugin/nodejs/shared/Constants.java index 26e76e9c423..b0b97542cad 100644 --- a/plugins/plugin-nodejs/che-plugin-nodejs-lang-shared/src/main/java/org/eclipse/che/plugin/nodejs/shared/Constants.java +++ b/plugins/plugin-nodejs/che-plugin-nodejs-lang-shared/src/main/java/org/eclipse/che/plugin/nodejs/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nodejs.shared; diff --git a/plugins/plugin-nodejs/pom.xml b/plugins/plugin-nodejs/pom.xml index cb58cadf54c..33850ee0d1a 100644 --- a/plugins/plugin-nodejs/pom.xml +++ b/plugins/plugin-nodejs/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-orion/che-plugin-orion-compare/pom.xml b/plugins/plugin-orion/che-plugin-orion-compare/pom.xml index ab366fe99a1..18b3c8f6387 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/pom.xml +++ b/plugins/plugin-orion/che-plugin-orion-compare/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareConfig.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareConfig.java index 13792def1cb..fc6f9d49a12 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareConfig.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareConfig.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareFactory.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareFactory.java index cc02dcaef70..7d5a9ee3f99 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareFactory.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareFactoryImpl.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareFactoryImpl.java index a5fb5a67f95..c5b2b979adf 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareFactoryImpl.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareFactoryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java index 91afa366fbf..8a574316ae9 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/FileOptions.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/FileOptions.java index d4ea7097316..670a89e8b93 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/FileOptions.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/FileOptions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/OrionCompareExtension.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/OrionCompareExtension.java index 0b8073947bb..fc29c14fff6 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/OrionCompareExtension.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/OrionCompareExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/OrionCompareModule.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/OrionCompareModule.java index b9a480dc3ca..96fbdc5ebf9 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/OrionCompareModule.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/OrionCompareModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/CompareConfigJs.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/CompareConfigJs.java index 7e94c9a008c..9f741205cf1 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/CompareConfigJs.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/CompareConfigJs.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare.jso; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/FileOptionsJs.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/FileOptionsJs.java index a92933c7520..aee13c60f76 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/FileOptionsJs.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/FileOptionsJs.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.orion.compare.jso; diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/resources/org/eclipse/che/ide/orion/OrionCompare.gwt.xml b/plugins/plugin-orion/che-plugin-orion-compare/src/main/resources/org/eclipse/che/ide/orion/OrionCompare.gwt.xml index 4c8113528a4..8aece44a63e 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/resources/org/eclipse/che/ide/orion/OrionCompare.gwt.xml +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/resources/org/eclipse/che/ide/orion/OrionCompare.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-orion/che-plugin-orion-editor/pom.xml b/plugins/plugin-orion/che-plugin-orion-editor/pom.xml index f7afbad9896..18ad5df9838 100644 --- a/plugins/plugin-orion/che-plugin-orion-editor/pom.xml +++ b/plugins/plugin-orion/che-plugin-orion-editor/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-orion/pom.xml b/plugins/plugin-orion/pom.xml index a49a77eefb0..424b1b08e39 100644 --- a/plugins/plugin-orion/pom.xml +++ b/plugins/plugin-orion/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/pom.xml b/plugins/plugin-php/che-plugin-php-lang-ide/pom.xml index 626f05a75b7..c0ba14c343d 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/pom.xml +++ b/plugins/plugin-php/che-plugin-php-lang-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpExtension.java b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpExtension.java index f3a53d0c479..c6384d868df 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpExtension.java +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.ide; diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpLocalizationConstant.java b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpLocalizationConstant.java index 7c895fee8d4..6ea2b356429 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpLocalizationConstant.java +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.ide; diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpResources.java b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpResources.java index 980d934bf6c..018f1b989d1 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpResources.java +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/PhpResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.ide; diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/action/CreatePhpSourceFileAction.java b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/action/CreatePhpSourceFileAction.java index 161939c5634..9a153ee635c 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/action/CreatePhpSourceFileAction.java +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/action/CreatePhpSourceFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.ide.action; diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/action/NewPhplikeResourceAction.java b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/action/NewPhplikeResourceAction.java index 09cee09f5fb..9f88e4d1395 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/action/NewPhplikeResourceAction.java +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/action/NewPhplikeResourceAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.ide.action; diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/inject/PhpGinModule.java b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/inject/PhpGinModule.java index 362401c795e..f7eb3ced4aa 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/inject/PhpGinModule.java +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/inject/PhpGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.ide.inject; diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/project/PhpProjectWizardRegistrar.java b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/project/PhpProjectWizardRegistrar.java index 7dd374cfe09..cfce17f555f 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/project/PhpProjectWizardRegistrar.java +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/java/org/eclipse/che/plugin/php/ide/project/PhpProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.ide.project; diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/Php.gwt.xml b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/Php.gwt.xml index 7c3c2ff6e0e..475e33505ef 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/Php.gwt.xml +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/Php.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/ide/svg/category.svg b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/ide/svg/category.svg index 5420aea89c4..e7481be2dac 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/ide/svg/category.svg +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/ide/svg/category.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/ide/svg/php_file.svg b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/ide/svg/php_file.svg index 5420aea89c4..e7481be2dac 100644 --- a/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/ide/svg/php_file.svg +++ b/plugins/plugin-php/che-plugin-php-lang-ide/src/main/resources/org/eclipse/che/plugin/php/ide/svg/php_file.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-php/che-plugin-php-lang-server/pom.xml b/plugins/plugin-php/che-plugin-php-lang-server/pom.xml index 5dcc5930358..0579405bd20 100644 --- a/plugins/plugin-php/che-plugin-php-lang-server/pom.xml +++ b/plugins/plugin-php/che-plugin-php-lang-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/inject/PhpModule.java b/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/inject/PhpModule.java index 623dd6ee45e..2b4c4317a3d 100644 --- a/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/inject/PhpModule.java +++ b/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/inject/PhpModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.inject; diff --git a/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/languageserver/PhpLanguageServerLauncher.java b/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/languageserver/PhpLanguageServerLauncher.java index 73ed6353e47..467e15ac13d 100644 --- a/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/languageserver/PhpLanguageServerLauncher.java +++ b/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/languageserver/PhpLanguageServerLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.languageserver; diff --git a/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/projecttype/PhpProjectGenerator.java b/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/projecttype/PhpProjectGenerator.java index 395dc0849d1..74d17996fad 100644 --- a/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/projecttype/PhpProjectGenerator.java +++ b/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/projecttype/PhpProjectGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.projecttype; diff --git a/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/projecttype/PhpProjectType.java b/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/projecttype/PhpProjectType.java index 1f34dc37d74..6cac0f16e7c 100644 --- a/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/projecttype/PhpProjectType.java +++ b/plugins/plugin-php/che-plugin-php-lang-server/src/main/java/org/eclipse/che/plugin/php/projecttype/PhpProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.projecttype; diff --git a/plugins/plugin-php/che-plugin-php-lang-shared/pom.xml b/plugins/plugin-php/che-plugin-php-lang-shared/pom.xml index ee71b0c310e..925e680d79d 100644 --- a/plugins/plugin-php/che-plugin-php-lang-shared/pom.xml +++ b/plugins/plugin-php/che-plugin-php-lang-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-php/che-plugin-php-lang-shared/src/main/java/org/eclipse/che/plugin/php/shared/Constants.java b/plugins/plugin-php/che-plugin-php-lang-shared/src/main/java/org/eclipse/che/plugin/php/shared/Constants.java index 7a80f682689..1b6a80e552c 100644 --- a/plugins/plugin-php/che-plugin-php-lang-shared/src/main/java/org/eclipse/che/plugin/php/shared/Constants.java +++ b/plugins/plugin-php/che-plugin-php-lang-shared/src/main/java/org/eclipse/che/plugin/php/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.php.shared; diff --git a/plugins/plugin-php/pom.xml b/plugins/plugin-php/pom.xml index 6804b0ba0f6..bfe42bfbab7 100644 --- a/plugins/plugin-php/pom.xml +++ b/plugins/plugin-php/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-product-info/pom.xml b/plugins/plugin-product-info/pom.xml index c8cd75a6451..7b2c836929e 100644 --- a/plugins/plugin-product-info/pom.xml +++ b/plugins/plugin-product-info/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/CheProductInfoDataProvider.java b/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/CheProductInfoDataProvider.java index 7f193a4dd00..58dd784894a 100644 --- a/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/CheProductInfoDataProvider.java +++ b/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/CheProductInfoDataProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.product.info.client; diff --git a/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/LocalizationConstant.java b/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/LocalizationConstant.java index c353f6b1ee4..a1772f40037 100644 --- a/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/LocalizationConstant.java +++ b/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/LocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.product.info.client; diff --git a/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/inject/ProductInfoGinModule.java b/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/inject/ProductInfoGinModule.java index a448cf9c138..a88dd90c92d 100644 --- a/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/inject/ProductInfoGinModule.java +++ b/plugins/plugin-product-info/src/main/java/org/eclipse/che/plugin/product/info/client/inject/ProductInfoGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.product.info.client.inject; diff --git a/plugins/plugin-product-info/src/main/resources/org/eclipse/che/plugin/product/info/ProductInfo.gwt.xml b/plugins/plugin-product-info/src/main/resources/org/eclipse/che/plugin/product/info/ProductInfo.gwt.xml index 6eb8dd1e7a1..25a168459eb 100644 --- a/plugins/plugin-product-info/src/main/resources/org/eclipse/che/plugin/product/info/ProductInfo.gwt.xml +++ b/plugins/plugin-product-info/src/main/resources/org/eclipse/che/plugin/product/info/ProductInfo.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-product-info/src/main/resources/org/eclipse/che/plugin/product/info/client/LocalizationConstant.properties b/plugins/plugin-product-info/src/main/resources/org/eclipse/che/plugin/product/info/client/LocalizationConstant.properties index 96626f85429..33abeeed84b 100644 --- a/plugins/plugin-product-info/src/main/resources/org/eclipse/che/plugin/product/info/client/LocalizationConstant.properties +++ b/plugins/plugin-product-info/src/main/resources/org/eclipse/che/plugin/product/info/client/LocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # che.tab.title = Eclipse Che diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/pom.xml b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/pom.xml index 36297f599f2..d67d78cf205 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/pom.xml +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributeMessages.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributeMessages.java index 11685c9abc9..d1db5b797e7 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributeMessages.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributeMessages.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributeResources.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributeResources.java index b0df857b15c..ed7e3d3409e 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributeResources.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributeResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributionExtension.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributionExtension.java index cde40cba504..1606d8d6f92 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributionExtension.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributionExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributionMixinProvider.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributionMixinProvider.java index c3341c9d01b..2a3b62ca6be 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributionMixinProvider.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/ContributionMixinProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitPresenter.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitPresenter.java index 051addf14cb..0358058bfcc 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitPresenter.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.dialogs.commit; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitView.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitView.java index 61893bce0a8..7c048e711a1 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitView.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.dialogs.commit; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewImpl.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewImpl.java index e7832a70d58..b3538502e68 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewImpl.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.dialogs.commit; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewImpl.ui.xml b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewImpl.ui.xml index 540ffaa5f33..35d60663cca 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewImpl.ui.xml +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewUiBinder.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewUiBinder.java index ecf8e96d709..fc74b0241b9 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewUiBinder.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/commit/CommitViewUiBinder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.dialogs.commit; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteAwareTextBox.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteAwareTextBox.java index 9d713e4eb77..f89e4e1ee49 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteAwareTextBox.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteAwareTextBox.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.dialogs.paste; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteEvent.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteEvent.java index d7bffb5dab7..446cf1c5e81 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteEvent.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.dialogs.paste; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteHandler.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteHandler.java index 981045e5fe3..5f97fc2d843 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteHandler.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/dialogs/paste/PasteHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.dialogs.paste; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextInvalidatedEvent.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextInvalidatedEvent.java index 3a752031822..3772e3d3b93 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextInvalidatedEvent.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextInvalidatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.events; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextInvalidatedHandler.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextInvalidatedHandler.java index 4621ddcd393..2a29e9a2b6a 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextInvalidatedHandler.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextInvalidatedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.events; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextPropertyChangeEvent.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextPropertyChangeEvent.java index 0fd96bb6bb6..c63e5d37893 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextPropertyChangeEvent.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextPropertyChangeEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.events; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextPropertyChangeHandler.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextPropertyChangeHandler.java index fcbae967d24..6a2d6985bc6 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextPropertyChangeHandler.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/ContextPropertyChangeHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.events; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/CurrentContextChangedEvent.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/CurrentContextChangedEvent.java index b9e9f0b421c..743c411f3da 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/CurrentContextChangedEvent.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/CurrentContextChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.events; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/CurrentContextChangedHandler.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/CurrentContextChangedHandler.java index fba45a8a339..51357b39586 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/CurrentContextChangedHandler.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/CurrentContextChangedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.events; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/StepEvent.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/StepEvent.java index 42b8a8672dc..bf1633cca02 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/StepEvent.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/StepEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.events; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/StepHandler.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/StepHandler.java index e4dfe39088e..199c0e49ff3 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/StepHandler.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/events/StepHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.events; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/inject/PullRequestGinModule.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/inject/PullRequestGinModule.java index 7688d943ede..8c9a91571eb 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/inject/PullRequestGinModule.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/inject/PullRequestGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.inject; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartPresenter.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartPresenter.java index 51d5286056f..2abd3d56059 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartPresenter.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.parts.contribute; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartView.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartView.java index 2911b3b570a..ee2968b4cb6 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartView.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.parts.contribute; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartViewImpl.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartViewImpl.java index 94f75282f3b..d5eab201b90 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartViewImpl.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.client.parts.contribute; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartViewImpl.ui.xml b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartViewImpl.ui.xml index 2a1e088ea1e..87ea6d2b362 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartViewImpl.ui.xml +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/java/org/eclipse/che/plugin/pullrequest/client/parts/contribute/ContributePartViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/Contribute.css b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/Contribute.css index 3b3ecd1b17a..40a683a23f8 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/Contribute.css +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/Contribute.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .blueButton { background: primaryButtonBackground; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/ContributeMessages.properties b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/ContributeMessages.properties index 9e22364480c..0b6f43a7aed 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/ContributeMessages.properties +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/ContributeMessages.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/images/refresh.svg b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/images/refresh.svg index 961e531dba0..c46f9123510 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/images/refresh.svg +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-ide/src/main/resources/org/eclipse/che/plugin/pullrequest/client/images/refresh.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/pom.xml b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/pom.xml index d8004a42425..4f45d994551 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/pom.xml +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/src/main/java/org/eclipse/che/plugin/pullrequest/server/ContributionProjectType.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/src/main/java/org/eclipse/che/plugin/pullrequest/server/ContributionProjectType.java index 9e6d6edfc72..823f0682528 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/src/main/java/org/eclipse/che/plugin/pullrequest/server/ContributionProjectType.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/src/main/java/org/eclipse/che/plugin/pullrequest/server/ContributionProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.server; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/src/main/java/org/eclipse/che/plugin/pullrequest/server/ContributionProjectTypeModule.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/src/main/java/org/eclipse/che/plugin/pullrequest/server/ContributionProjectTypeModule.java index d8cc5fe0aaa..cf0919bffc3 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/src/main/java/org/eclipse/che/plugin/pullrequest/server/ContributionProjectTypeModule.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-server/src/main/java/org/eclipse/che/plugin/pullrequest/server/ContributionProjectTypeModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.server; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/pom.xml b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/pom.xml index dadcaede60f..e0377b5156a 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/pom.xml +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/ContributionProjectTypeConstants.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/ContributionProjectTypeConstants.java index 1f5495b7463..7f6cdea8634 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/ContributionProjectTypeConstants.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/ContributionProjectTypeConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.shared; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/Configuration.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/Configuration.java index 94031cbfa1f..4899be5b071 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/Configuration.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/Configuration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.shared.dto; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/HostUser.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/HostUser.java index c6f262209e3..1b055742fae 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/HostUser.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/HostUser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.shared.dto; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/IssueComment.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/IssueComment.java index 347bcb59cbb..df5d7217e8a 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/IssueComment.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/IssueComment.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.shared.dto; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/PullRequest.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/PullRequest.java index 18ba7c45cb2..31c2c4ce0fd 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/PullRequest.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/PullRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.shared.dto; diff --git a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/Repository.java b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/Repository.java index d5bdd475be8..4868b00959c 100644 --- a/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/Repository.java +++ b/plugins/plugin-pullrequest-parent/che-plugin-pullrequest-shared/src/main/java/org/eclipse/che/plugin/pullrequest/shared/dto/Repository.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.pullrequest.shared.dto; diff --git a/plugins/plugin-pullrequest-parent/pom.xml b/plugins/plugin-pullrequest-parent/pom.xml index b7b93e8d5a6..db1fe5b6ba8 100644 --- a/plugins/plugin-pullrequest-parent/pom.xml +++ b/plugins/plugin-pullrequest-parent/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/pom.xml b/plugins/plugin-python/che-plugin-python-lang-ide/pom.xml index bfc0ff83959..dc4e2884119 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/pom.xml +++ b/plugins/plugin-python/che-plugin-python-lang-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonExtension.java b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonExtension.java index 288f68001b7..0aee94600c5 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonExtension.java +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.ide; diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonLocalizationConstant.java b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonLocalizationConstant.java index 07afd93c131..3777030e6db 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonLocalizationConstant.java +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.ide; diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonResources.java b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonResources.java index 96c8e6cc4e4..ef38aa86e2c 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonResources.java +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/PythonResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.ide; diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/action/CreatePythonFileAction.java b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/action/CreatePythonFileAction.java index fde21f7707b..01610914fb7 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/action/CreatePythonFileAction.java +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/action/CreatePythonFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.ide.action; diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/inject/PythonGinModule.java b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/inject/PythonGinModule.java index 231b70332be..ee9f83246c7 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/inject/PythonGinModule.java +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/inject/PythonGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.ide.inject; diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/project/PythonProjectWizardRegistrar.java b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/project/PythonProjectWizardRegistrar.java index 8fe6d32413c..b43f645bdd2 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/project/PythonProjectWizardRegistrar.java +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/java/org/eclipse/che/plugin/python/ide/project/PythonProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.ide.project; diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/Python.gwt.xml b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/Python.gwt.xml index 7c3c2ff6e0e..475e33505ef 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/Python.gwt.xml +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/Python.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/ide/PythonLocalizationConstant.properties b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/ide/PythonLocalizationConstant.properties index 51587d542f7..2242ae69ed6 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/ide/PythonLocalizationConstant.properties +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/ide/PythonLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ##### Action ##### diff --git a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/ide/svg/python.svg b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/ide/svg/python.svg index 90cf51edeba..040cdb96849 100644 --- a/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/ide/svg/python.svg +++ b/plugins/plugin-python/che-plugin-python-lang-ide/src/main/resources/org/eclipse/che/plugin/python/ide/svg/python.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-python/che-plugin-python-lang-server/pom.xml b/plugins/plugin-python/che-plugin-python-lang-server/pom.xml index 6e1d961e858..2102723b6cb 100644 --- a/plugins/plugin-python/che-plugin-python-lang-server/pom.xml +++ b/plugins/plugin-python/che-plugin-python-lang-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/generator/PythonProjectGenerator.java b/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/generator/PythonProjectGenerator.java index 640900fa14a..61a7890ebc8 100644 --- a/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/generator/PythonProjectGenerator.java +++ b/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/generator/PythonProjectGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.generator; diff --git a/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/inject/PythonModule.java b/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/inject/PythonModule.java index 20c2ef2a361..fc4deace9b0 100644 --- a/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/inject/PythonModule.java +++ b/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/inject/PythonModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.inject; diff --git a/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/languageserver/PythonLanguageSeverLauncher.java b/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/languageserver/PythonLanguageSeverLauncher.java index 88b64db7973..545f7dcf8df 100644 --- a/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/languageserver/PythonLanguageSeverLauncher.java +++ b/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/languageserver/PythonLanguageSeverLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.languageserver; diff --git a/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/projecttype/PythonProjectType.java b/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/projecttype/PythonProjectType.java index 79f85a2a379..0cc6270a621 100644 --- a/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/projecttype/PythonProjectType.java +++ b/plugins/plugin-python/che-plugin-python-lang-server/src/main/java/org/eclipse/che/plugin/python/projecttype/PythonProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.projecttype; diff --git a/plugins/plugin-python/che-plugin-python-lang-shared/pom.xml b/plugins/plugin-python/che-plugin-python-lang-shared/pom.xml index 7a43c7b0ff5..023dc76c932 100644 --- a/plugins/plugin-python/che-plugin-python-lang-shared/pom.xml +++ b/plugins/plugin-python/che-plugin-python-lang-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-python/che-plugin-python-lang-shared/src/main/java/org/eclipse/che/plugin/python/shared/ProjectAttributes.java b/plugins/plugin-python/che-plugin-python-lang-shared/src/main/java/org/eclipse/che/plugin/python/shared/ProjectAttributes.java index ae205300063..d2f47670059 100644 --- a/plugins/plugin-python/che-plugin-python-lang-shared/src/main/java/org/eclipse/che/plugin/python/shared/ProjectAttributes.java +++ b/plugins/plugin-python/che-plugin-python-lang-shared/src/main/java/org/eclipse/che/plugin/python/shared/ProjectAttributes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.python.shared; diff --git a/plugins/plugin-python/pom.xml b/plugins/plugin-python/pom.xml index 7bd8b19839f..eef4b9cd732 100644 --- a/plugins/plugin-python/pom.xml +++ b/plugins/plugin-python/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/pom.xml b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/pom.xml index 97f8b7a65ca..2b19de39f59 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/pom.xml +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/GwtCheExtension.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/GwtCheExtension.java index cbe130d1a7a..c3db1cea4f7 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/GwtCheExtension.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/GwtCheExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client; diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsGinModule.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsGinModule.java index 0a406b7b0f0..6fa927dd655 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsGinModule.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client; diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsLocalizationConstant.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsLocalizationConstant.java index 24e4b903a49..a64e245f388 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsLocalizationConstant.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client; diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsResources.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsResources.java index 6b2eef9c108..9c5610acf16 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsResources.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/PluginsResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client; diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandModel.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandModel.java index 56bcf7db555..230c1a270f4 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandModel.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandModel.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client.command; diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPagePresenter.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPagePresenter.java index e4415c39749..b34ac7cbb62 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPagePresenter.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client.command; diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageView.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageView.java index a5312d9522e..30538cbe712 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageView.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client.command; diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageViewImpl.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageViewImpl.java index 562b6012c1e..19e4c1e182a 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageViewImpl.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client.command; diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageViewImpl.ui.xml b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageViewImpl.ui.xml index e85e25a416f..25123462ad0 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageViewImpl.ui.xml +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/java/org/eclipse/che/ide/ext/plugins/client/command/GwtCheCommandPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/resources/org/eclipse/che/ide/ext/plugins/client/PluginsLocalizationConstant.properties b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/resources/org/eclipse/che/ide/ext/plugins/client/PluginsLocalizationConstant.properties index 6377eda7291..ddec25fa55c 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/resources/org/eclipse/che/ide/ext/plugins/client/PluginsLocalizationConstant.properties +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/resources/org/eclipse/che/ide/ext/plugins/client/PluginsLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ##### GwtCheCommandPageView ##### diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/resources/org/eclipse/che/ide/ext/plugins/client/images/gwt-che-command-type.svg b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/resources/org/eclipse/che/ide/ext/plugins/client/images/gwt-che-command-type.svg index c7e4bc6eac3..d8c438a6be1 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/resources/org/eclipse/che/ide/ext/plugins/client/images/gwt-che-command-type.svg +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/main/resources/org/eclipse/che/ide/ext/plugins/client/images/gwt-che-command-type.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/test/java/org/eclipse/che/ide/ext/plugins/client/command/GwtChePagePresenterTest.java b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/test/java/org/eclipse/che/ide/ext/plugins/client/command/GwtChePagePresenterTest.java index 053ba9ff93e..2eb10dd8df7 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/test/java/org/eclipse/che/ide/ext/plugins/client/command/GwtChePagePresenterTest.java +++ b/plugins/plugin-sdk/che-plugin-sdk-ext-plugins/src/test/java/org/eclipse/che/ide/ext/plugins/client/command/GwtChePagePresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.plugins.client.command; diff --git a/plugins/plugin-sdk/che-plugin-sdk-tools/pom.xml b/plugins/plugin-sdk/che-plugin-sdk-tools/pom.xml index d3ac4b89583..da9465d017a 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-tools/pom.xml +++ b/plugins/plugin-sdk/che-plugin-sdk-tools/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-sdk/che-plugin-sdk-tools/src/main/java/org/eclipse/che/ide/sdk/tools/InstallExtension.java b/plugins/plugin-sdk/che-plugin-sdk-tools/src/main/java/org/eclipse/che/ide/sdk/tools/InstallExtension.java index 8bcce2f8b5e..cd335754915 100644 --- a/plugins/plugin-sdk/che-plugin-sdk-tools/src/main/java/org/eclipse/che/ide/sdk/tools/InstallExtension.java +++ b/plugins/plugin-sdk/che-plugin-sdk-tools/src/main/java/org/eclipse/che/ide/sdk/tools/InstallExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.sdk.tools; diff --git a/plugins/plugin-sdk/pom.xml b/plugins/plugin-sdk/pom.xml index a6b5e886e39..c6d12eeb0b5 100644 --- a/plugins/plugin-sdk/pom.xml +++ b/plugins/plugin-sdk/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-ssh-machine/pom.xml b/plugins/plugin-ssh-machine/pom.xml index d3a90dc40dc..fa8fe32b0e6 100644 --- a/plugins/plugin-ssh-machine/pom.xml +++ b/plugins/plugin-ssh-machine/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshClient.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshClient.java index 455e846ff95..e0dd7187e09 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshClient.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineFactory.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineFactory.java index 2b72942a4d8..65ef44e12f2 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineFactory.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstance.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstance.java index 16809b19496..36296eb1f5e 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstance.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstance.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceProvider.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceProvider.java index a114423c64e..fbaa00166a0 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceProvider.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineModule.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineModule.java index ca20b46fc3f..4911e61a129 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineModule.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineProcess.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineProcess.java index bc419a9d7f8..64e5d568907 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineProcess.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineRecipe.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineRecipe.java index 0d7969a97de..93be48a5188 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineRecipe.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshMachineRecipe.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshProcess.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshProcess.java index 3905d9a07bf..db90e570d93 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshProcess.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/SshProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/exec/SshMachineExecAgentLauncher.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/exec/SshMachineExecAgentLauncher.java index 77e3796bff0..d164e707ed0 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/exec/SshMachineExecAgentLauncher.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/exec/SshMachineExecAgentLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh.exec; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/exec/SshProcessLaunchedChecker.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/exec/SshProcessLaunchedChecker.java index 6b65bcb11c5..1530d9f86f8 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/exec/SshProcessLaunchedChecker.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/exec/SshProcessLaunchedChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh.exec; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschSshClient.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschSshClient.java index 914ec6d09de..3f967060007 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschSshClient.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschSshClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh.jsch; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschSshProcess.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschSshProcess.java index c834825049b..6b03bb9cbcb 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschSshProcess.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschSshProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh.jsch; diff --git a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschUserInfoImpl.java b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschUserInfoImpl.java index 4d8e2da984f..49bf338e5d8 100644 --- a/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschUserInfoImpl.java +++ b/plugins/plugin-ssh-machine/src/main/java/org/eclipse/che/plugin/machine/ssh/jsch/JschUserInfoImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh.jsch; diff --git a/plugins/plugin-ssh-machine/src/test/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceProviderTest.java b/plugins/plugin-ssh-machine/src/test/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceProviderTest.java index 012929ecf17..28cce1e26c2 100644 --- a/plugins/plugin-ssh-machine/src/test/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceProviderTest.java +++ b/plugins/plugin-ssh-machine/src/test/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-ssh-machine/src/test/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceTest.java b/plugins/plugin-ssh-machine/src/test/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceTest.java index 21c4381fec6..711edd509ae 100644 --- a/plugins/plugin-ssh-machine/src/test/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceTest.java +++ b/plugins/plugin-ssh-machine/src/test/java/org/eclipse/che/plugin/machine/ssh/SshMachineInstanceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.machine.ssh; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/pom.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/pom.xml index 52335f3919c..909d5309c98 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/pom.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionClientService.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionClientService.java index 00f40aad45d..f2238e55315 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionClientService.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionClientService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionClientServiceImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionClientServiceImpl.java index 23a1140ddee..3b808c85582 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionClientServiceImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionClientServiceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtension.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtension.java index 8ff8fa96ff6..e72cb835810 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtension.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtensionLocalizationConstants.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtensionLocalizationConstants.java index 25e7862c155..5765d24c4e5 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtensionLocalizationConstants.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtensionLocalizationConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtensionResources.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtensionResources.java index 22fda7c8b97..fbe3f4d3cb8 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtensionResources.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SubversionExtensionResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SvnUtil.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SvnUtil.java index f8fe5eff6ed..4a8d53d8a79 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SvnUtil.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/SvnUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/AddAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/AddAction.java index 63f15886158..f7d38046921 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/AddAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/AddAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ApplyPatchAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ApplyPatchAction.java index 8c93eb7cfc7..b1bb5f81981 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ApplyPatchAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ApplyPatchAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/BranchTagAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/BranchTagAction.java index 899b05da75f..eeab5ec0cd9 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/BranchTagAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/BranchTagAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CleanupAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CleanupAction.java index 927e61796a3..18acb943690 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CleanupAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CleanupAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CommitAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CommitAction.java index be891b4e99d..406fc4b9d6c 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CommitAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CommitAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CopyAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CopyAction.java index d27aa3b0a62..905d0920691 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CopyAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CopyAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CreatePatchAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CreatePatchAction.java index 085a090027f..eee7e6466b5 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CreatePatchAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/CreatePatchAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/DiffAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/DiffAction.java index 7118dc60e74..8235af94ec7 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/DiffAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/DiffAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ExportAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ExportAction.java index 348e1e7cbf6..34653688158 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ExportAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ExportAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/LockAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/LockAction.java index bb47abae611..9d0d8a737ae 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/LockAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/LockAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/LogAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/LogAction.java index 7eb03d046c7..e2159ee8b0a 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/LogAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/LogAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/MergeAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/MergeAction.java index 474e25ab5ab..413d41177e1 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/MergeAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/MergeAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/MoveAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/MoveAction.java index 57dbf004ddc..01a8b44b0d4 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/MoveAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/MoveAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/PropertiesAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/PropertiesAction.java index cab19f52330..ed74c326aa3 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/PropertiesAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/PropertiesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RelocateAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RelocateAction.java index d52ccd90b25..f65b54515d5 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RelocateAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RelocateAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RemoveAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RemoveAction.java index 508944723d5..4bbdc9d8d55 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RemoveAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RemoveAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RenameAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RenameAction.java index b49bed72063..b1fddb709a1 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RenameAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RenameAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ResolveAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ResolveAction.java index a3a08a2c7bb..d2d7d894781 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ResolveAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/ResolveAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RevertAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RevertAction.java index b9f29b0c3be..ce3c4db6952 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RevertAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/RevertAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/StatusAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/StatusAction.java index 32aa2eac03d..e36ace6762c 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/StatusAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/StatusAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/SubversionAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/SubversionAction.java index e1116e7dc0b..76b0648451a 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/SubversionAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/SubversionAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/SwitchAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/SwitchAction.java index e5b32359859..7f8352bce87 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/SwitchAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/SwitchAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UnlockAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UnlockAction.java index 9aa7945ffb3..bb606f8ba28 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UnlockAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UnlockAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UpdateAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UpdateAction.java index 21205109460..91e2815359a 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UpdateAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UpdateAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UpdateToRevisionAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UpdateToRevisionAction.java index 361cd55d156..9179c1db0ba 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UpdateToRevisionAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/action/UpdateToRevisionAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.action; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/add/AddPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/add/AddPresenter.java index 80ff6f64545..aea0a4723d0 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/add/AddPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/add/AddPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.add; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/cleanup/CleanupPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/cleanup/CleanupPresenter.java index 3afe0ce0127..574a8f78d48 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/cleanup/CleanupPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/cleanup/CleanupPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.cleanup; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitPresenter.java index d9d1e960bf1..85955c8f05c 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.commit; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitView.java index 5c74d487bb9..e6a15f83769 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.commit; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitViewImpl.java index 96f7529f24a..85e69b40b0b 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.commit; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitViewImpl.ui.xml index e1ea1454697..ebeec844932 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/CommitViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerPresenter.java index d3c2b1011d8..1a34344dcf2 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.commit.diff; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerView.java index a3502e49586..8497e0e57c6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.commit.diff; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerViewImpl.java index 8e4cccfe9a4..a9cc1e066e9 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.commit.diff; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerViewImpl.ui.xml index 00e4367411a..8a22a7329b0 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/commit/diff/DiffViewerViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/StatusColors.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/StatusColors.java index 4f92e97a5fd..ef954fd5ce8 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/StatusColors.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/StatusColors.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionActionPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionActionPresenter.java index 79ae5979021..0f4961ce79d 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionActionPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionActionPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsole.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsole.java index 50f33622149..ad27eb56b2f 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsole.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsole.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleFactory.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleFactory.java index 211c0428fe1..c6d17ed3650 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleFactory.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsolePresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsolePresenter.java index 4897db9d85d..de340e91fa2 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsolePresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsolePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleView.java index 5052e976fbd..9f1fbe3ce00 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleViewImpl.java index dc17ccb333c..788b75ce287 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleViewImpl.ui.xml index 634f44448a0..3394a3506f7 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/SubversionOutputConsoleViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialog.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialog.java index 4a1968f383d..7492269243d 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialog.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialog.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common.threechoices; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFactory.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFactory.java index 4e9f51028d6..b4609e22ff1 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFactory.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common.threechoices; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFooter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFooter.java index de452bfc26e..85e2f88be4e 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFooter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFooter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common.threechoices; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFooter.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFooter.ui.xml index bccfc41c68d..a98760464b8 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFooter.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogFooter.ui.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogPresenter.java index ec0404149da..0aa1f0eecb5 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common.threechoices; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogView.java index 72ab856b33c..1871510c6f6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common.threechoices; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogViewImpl.java index 2dd51e54821..bc4b208fb2f 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common.threechoices; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogViewImpl.ui.xml index 30b8eb3bd7f..bb51f1a33a2 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/common/threechoices/ChoiceDialogViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyPresenter.java index 9be4c073a0a..bc2b8f07d47 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.copy; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyView.java index 36b4fc991f7..af119a2a209 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.copy; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyViewImpl.java index d5246d52022..706dff06e60 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.copy; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyViewImpl.ui.xml index 7f102fbaf3a..a7c4fb89a4b 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/copy/CopyViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogImpl.java index 4b1ed122e91..18868525ac6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.credentialsdialog; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogView.java index 27fadb99090..45fa40c93d7 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.credentialsdialog; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogViewImpl.java index 5a02a792546..4939ef2d9b3 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.credentialsdialog; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogViewImpl.ui.xml index f94e1981c8d..c4a673d4e32 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/credentialsdialog/SubversionCredentialsDialogViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/diff/DiffPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/diff/DiffPresenter.java index 0ab16774555..c0c4ee3de56 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/diff/DiffPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/diff/DiffPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.diff; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportPresenter.java index ddecbc1d974..1f8c7be9936 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.export; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportView.java index 36f3c562ceb..a508fb325cd 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.export; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportViewImpl.java index c508da07a6a..ec301a1d9f4 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.export; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportViewImpl.ui.xml index b9af75d6094..b3858d17a5c 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/export/ExportViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionImportWizardRegistrar.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionImportWizardRegistrar.java index 1b9da1e6a22..91e435ee307 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionImportWizardRegistrar.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionImportWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.importer; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterPresenter.java index 9275b481b8c..e172a665c9a 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.importer; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterView.java index 31f6bd96e20..839b3350e9e 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.importer; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterViewImpl.java index d7380db2970..301373241cd 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.importer; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterViewImpl.ui.xml index f944b5c4b67..94f1c5d98e6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergePresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergePresenter.java index 07d025d76c0..4431cea07aa 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergePresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.merge; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeView.java index 2f337d69446..b83855ea323 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.merge; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeViewImpl.java index 6b9d1d27182..95e2791fd09 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.merge; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeViewImpl.ui.xml index 573d3ffbd28..664c419ed22 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/merge/MergeViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MovePresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MovePresenter.java index d8316db7382..ad4d3eefff7 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MovePresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MovePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.move; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveView.java index b07a15acff6..92be581747f 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.move; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveViewImpl.java index 289cc131c2f..68596a72bd1 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.move; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveViewImpl.ui.xml index d9684ec3318..b8cbc099e34 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/move/MoveViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorPresenter.java index 997e81a312c..e1e65659898 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.property; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorView.java index d408d0bdc9f..fa2523d7005 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.property; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorViewImpl.java index 6d34165388f..c9040d8ab31 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.property; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorViewImpl.ui.xml index cd9df31104c..c5f2520e27f 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/property/PropertyEditorViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/remove/RemovePresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/remove/RemovePresenter.java index 9593a707203..4601d6e8891 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/remove/RemovePresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/remove/RemovePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.remove; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ConflictResolutionAction.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ConflictResolutionAction.java index b7ef5f03112..e431038696c 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ConflictResolutionAction.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ConflictResolutionAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.resolve; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolvePresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolvePresenter.java index 3be0ffbf24c..fbee539f7fb 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolvePresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolvePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.resolve; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveView.java index 256f19845bd..4dd4def8e33 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.resolve; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveViewImpl.java index afa89c5d210..7e4d8c25b59 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.resolve; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveViewImpl.ui.xml index 3a80be73fc3..416899a4e4f 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/resolve/ResolveViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/revert/RevertPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/revert/RevertPresenter.java index d008cec3a05..a09b9a87094 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/revert/RevertPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/revert/RevertPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.revert; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/status/StatusPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/status/StatusPresenter.java index 14f8d2e174c..a38e89f7172 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/status/StatusPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/status/StatusPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.status; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorView.java index 96f6405e653..e3a6c5b5c5f 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.sw; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorViewImpl.java index a7c77d7ff74..72e0a4f79f6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.sw; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorViewImpl.ui.xml index a0537d310cb..fcd15cfed8c 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/LocationSelectorViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SvnNode.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SvnNode.java index 8aab5e4c7f5..1a87c250f09 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SvnNode.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SvnNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.sw; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchPresenter.java index 90599541ea4..fcf27916e32 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.sw; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchView.java index e0461e27b0a..0bd8809c5e2 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.sw; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchViewImpl.java index b9b6a93afaa..7adafae30f8 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.sw; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchViewImpl.ui.xml index e51c99a61ec..fea003bc65f 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/sw/SwitchViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdatePresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdatePresenter.java index c2e012afe59..6c099bc4b10 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdatePresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdatePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.update; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionPresenter.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionPresenter.java index f56ee354e3e..23e2775c101 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionPresenter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.update; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionView.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionView.java index e4c8b6c00f0..3ff03d5ea38 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionView.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.update; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionViewImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionViewImpl.java index adab361a98a..5cf3074f0e5 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionViewImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.update; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionViewImpl.ui.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionViewImpl.ui.xml index 9930122c4e4..8d802dff567 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionViewImpl.ui.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/java/org/eclipse/che/plugin/svn/ide/update/UpdateToRevisionViewImpl.ui.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/Subversion.gwt.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/Subversion.gwt.xml index 51c88b838c2..1edce1c0d4b 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/Subversion.gwt.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/Subversion.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/SubversionExtensionLocalizationConstants.properties b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/SubversionExtensionLocalizationConstants.properties index 66a572fb2e8..35016b830f8 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/SubversionExtensionLocalizationConstants.properties +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/SubversionExtensionLocalizationConstants.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # svn.console.project.name=Project: {0} diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/add.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/add.svg index fb6db916232..094f6449925 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/add.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/add.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/apply-patch.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/apply-patch.svg index 0203f7b2d5c..8c85409ca34 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/apply-patch.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/apply-patch.svg @@ -1,14 +1,14 @@ \ No newline at end of file diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/branch-tag.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/branch-tag.svg index e67033208b4..bba1af06222 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/branch-tag.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/branch-tag.svg @@ -1,14 +1,14 @@ \ No newline at end of file diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/cleanup.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/cleanup.svg index 70e08af6e03..b735d96f67e 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/cleanup.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/cleanup.svg @@ -1,14 +1,14 @@ \ No newline at end of file diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/commit.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/commit.svg index 1faa7e7eaf5..b7fc4881357 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/commit.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/commit.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/copy.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/copy.svg index e5febe18504..1d9e173ee5e 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/copy.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/copy.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/create-patch.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/create-patch.svg index af0516360e6..e6be647d06a 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/create-patch.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/create-patch.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/delete.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/delete.svg index f9d818e17d7..aa0ac912af6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/delete.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/delete.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/export.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/export.svg index 96cf00e9757..4d055efa3f1 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/export.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/export.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/lock.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/lock.svg index ef3cd4c80a5..03258124bc5 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/lock.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/lock.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/move.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/move.svg index c7ce65373d8..f06ed7f4ad6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/move.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/move.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/properties.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/properties.svg index f7e6d93f7ee..930c63ff32b 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/properties.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/properties.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/relocate.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/relocate.svg index d67d4456660..7c998cc92f6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/relocate.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/relocate.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/svn.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/svn.svg index 919bbe74655..5cf662d3509 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/svn.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/svn.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/switch.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/switch.svg index 2e36e8bac91..f585becbe28 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/switch.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/switch.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/unlock.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/unlock.svg index 68aef870a79..363491b0da2 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/unlock.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/actions/unlock.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterView.css b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterView.css index ba5821e32df..3e0d2822eee 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterView.css +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterView.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ @external .inputError; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/output-icon.svg b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/output-icon.svg index 6b522c19957..2de083d088d 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/output-icon.svg +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/output-icon.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/subversion.css b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/subversion.css index e055adb9f36..0dc7d41d412 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/subversion.css +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/main/resources/org/eclipse/che/plugin/svn/ide/subversion.css @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ .textFont { cursor: default; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/test/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterPresenterTest.java b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/test/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterPresenterTest.java index 991534f94c3..d64c0471542 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/test/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterPresenterTest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/test/java/org/eclipse/che/plugin/svn/ide/importer/SubversionProjectImporterPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.importer; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/test/resources/logback-test.xml b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/test/resources/logback-test.xml index fe0f22d1e39..e947ae78528 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-ide/src/test/resources/logback-test.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-ide/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/pom.xml b/plugins/plugin-svn/che-plugin-svn-ext-server/pom.xml index 164da6062ac..3cb2b13ad22 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/pom.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionApi.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionApi.java index f6c0fc52c36..51db31b4230 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionApi.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionApi.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionConfigurationChecker.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionConfigurationChecker.java index 972d6534c05..2ab07628c5a 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionConfigurationChecker.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionConfigurationChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionException.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionException.java index 75f082d9a64..251888024ee 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionException.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionModule.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionModule.java index 562ea9b5ab8..730bd63b8e3 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionModule.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionProjectImporter.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionProjectImporter.java index 9d89b8b8aaf..a0025d81780 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionProjectImporter.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionProjectImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionProjectType.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionProjectType.java index 49f0b705039..b80a2f5be45 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionProjectType.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionValueProviderFactory.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionValueProviderFactory.java index f0780b8dfa4..4dc1de87f5b 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionValueProviderFactory.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/SubversionValueProviderFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/repository/RepositoryUrlProvider.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/repository/RepositoryUrlProvider.java index f645302bf0a..d1249c85a23 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/repository/RepositoryUrlProvider.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/repository/RepositoryUrlProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.repository; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/repository/RepositoryUrlProviderImpl.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/repository/RepositoryUrlProviderImpl.java index 1cc9dfd7333..67f8862337c 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/repository/RepositoryUrlProviderImpl.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/repository/RepositoryUrlProviderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.repository; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/rest/SubversionService.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/rest/SubversionService.java index 35dcecf2daf..fc17c5d333b 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/rest/SubversionService.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/rest/SubversionService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.rest; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/CommandLineOutputProcessor.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/CommandLineOutputProcessor.java index acee721a026..a92c2736724 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/CommandLineOutputProcessor.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/CommandLineOutputProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.upstream; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/CommandLineResult.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/CommandLineResult.java index 461d6d56449..9652c9b3442 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/CommandLineResult.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/CommandLineResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.upstream; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/UpstreamUtils.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/UpstreamUtils.java index e316a379c95..fbcd65ff99e 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/UpstreamUtils.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/UpstreamUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.upstream; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/package-info.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/package-info.java index 0872f2b1d3a..618f56e39a1 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/package-info.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/upstream/package-info.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /** * This package contains classes/utilities that should be provided upstream but currently are not. diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/InfoUtils.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/InfoUtils.java index 683b67ce09c..43de59fffc9 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/InfoUtils.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/InfoUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.utils; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/SshEnvironment.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/SshEnvironment.java index 88f94018c78..afc035a9da4 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/SshEnvironment.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/SshEnvironment.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.utils; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/SubversionUtils.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/SubversionUtils.java index b5dc92bdd1b..d5e12e27dad 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/SubversionUtils.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/main/java/org/eclipse/che/plugin/svn/server/utils/SubversionUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.utils; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionApiITest.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionApiITest.java index ee4e7b16b7c..86136687152 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionApiITest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionApiITest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionConfigurationCheckerTest.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionConfigurationCheckerTest.java index 96cef8f36ee..89ff20066af 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionConfigurationCheckerTest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionConfigurationCheckerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionProjectImporterTest.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionProjectImporterTest.java index b638932742a..37e66e06ad6 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionProjectImporterTest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/SubversionProjectImporterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/utils/SubversionUtilsTest.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/utils/SubversionUtilsTest.java index 5ffa1635049..0faa1ab31da 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/utils/SubversionUtilsTest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/utils/SubversionUtilsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.utils; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/utils/TestUtils.java b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/utils/TestUtils.java index cfa1edc31f6..639d4e775c3 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/utils/TestUtils.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/java/org/eclipse/che/plugin/svn/server/utils/TestUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.server.utils; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/resources/logback-test.xml b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/resources/logback-test.xml index d00f60a9baa..92391f09e8d 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/resources/logback-test.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-server/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/pom.xml b/plugins/plugin-svn/che-plugin-svn-ext-shared/pom.xml index dac46ce025b..2050dd208af 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/pom.xml +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/AddRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/AddRequest.java index 91eb190309e..6f8c3a6e367 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/AddRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/AddRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputParser.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputParser.java index a2d4fb66a61..24a39d7978e 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputParser.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputResponse.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputResponse.java index 2ef5f3bd8ed..badc08c55f3 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputResponse.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputResponseList.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputResponseList.java index c4437946fc0..3d93bde4acc 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputResponseList.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputResponseList.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputWithRevisionResponse.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputWithRevisionResponse.java index 677032b0b0b..3e91bd5da83 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputWithRevisionResponse.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CLIOutputWithRevisionResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CheckoutRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CheckoutRequest.java index 5ec56d4dc62..36f8d49b20c 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CheckoutRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CheckoutRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CleanupRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CleanupRequest.java index d55977cfb95..ed819280d92 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CleanupRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CleanupRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CommitRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CommitRequest.java index bc2fbc18c6f..c83d35415d2 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CommitRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CommitRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/Constants.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/Constants.java index b4c4bf27380..e97e81f6e84 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/Constants.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CopyRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CopyRequest.java index e2009dbb790..f541bb56ec8 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CopyRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/CopyRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/Depth.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/Depth.java index 9e1f5bdd315..4b6b4647a98 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/Depth.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/Depth.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/GetRevisionsRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/GetRevisionsRequest.java index 3456fd7c3b9..84dac6abaad 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/GetRevisionsRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/GetRevisionsRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/GetRevisionsResponse.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/GetRevisionsResponse.java index f302e685925..4af97701e1f 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/GetRevisionsResponse.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/GetRevisionsResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ImportParameterKeys.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ImportParameterKeys.java index f56d4528a28..a0204444447 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ImportParameterKeys.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ImportParameterKeys.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/InfoRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/InfoRequest.java index 47d29ef04a6..ec49bd50d82 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/InfoRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/InfoRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/InfoResponse.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/InfoResponse.java index d8fec742eaa..dbb5a88f1a2 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/InfoResponse.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/InfoResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ListRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ListRequest.java index cbd601b2034..71aa8ef809e 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ListRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ListRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ListResponse.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ListResponse.java index 5262b206184..d397572efd4 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ListResponse.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ListResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/LockRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/LockRequest.java index cee57b1607c..d85dce64dce 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/LockRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/LockRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/MergeRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/MergeRequest.java index 5846e5b5f81..82d578e8653 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/MergeRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/MergeRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/MoveRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/MoveRequest.java index 2aa628c34dd..ebc7d7a2215 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/MoveRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/MoveRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyDeleteRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyDeleteRequest.java index e6417a90278..9c341513f4e 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyDeleteRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyDeleteRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyGetRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyGetRequest.java index 071e4f53696..ea3b36c00ee 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyGetRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyGetRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyListRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyListRequest.java index ad4f5ee4c38..994360e4bbf 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyListRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyListRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyRequest.java index 0cef8ce7718..180d867eee0 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertyRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertySetRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertySetRequest.java index 1c9e3b54e86..c13296f2a13 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertySetRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/PropertySetRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/RemoveRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/RemoveRequest.java index d8e8a96c59b..051ae612bd7 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/RemoveRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/RemoveRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ResolveRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ResolveRequest.java index 2ae191c8e64..8a6bc0e30a9 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ResolveRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ResolveRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/RevertRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/RevertRequest.java index 3f57033cc8d..b6da47eea67 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/RevertRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/RevertRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ShowDiffRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ShowDiffRequest.java index 5cbdf1b5245..09103610671 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ShowDiffRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ShowDiffRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ShowLogRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ShowLogRequest.java index 2b2d25c56d4..b23cf67d314 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ShowLogRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/ShowLogRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/StatusItem.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/StatusItem.java index 816e583c6f9..48d0efac400 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/StatusItem.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/StatusItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/StatusRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/StatusRequest.java index d31f13fdf52..56e6769a172 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/StatusRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/StatusRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SubversionItem.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SubversionItem.java index a1f08d57373..7abf6e024f7 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SubversionItem.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SubversionItem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SubversionTypeConstant.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SubversionTypeConstant.java index 9c0b056ce91..9994573c7ce 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SubversionTypeConstant.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SubversionTypeConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SwitchRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SwitchRequest.java index 0851b4d7ccf..0120eb37e80 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SwitchRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/SwitchRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/UpdateRequest.java b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/UpdateRequest.java index b84bb82c545..71b8a29513d 100644 --- a/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/UpdateRequest.java +++ b/plugins/plugin-svn/che-plugin-svn-ext-shared/src/main/java/org/eclipse/che/plugin/svn/shared/UpdateRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.shared; diff --git a/plugins/plugin-svn/pom.xml b/plugins/plugin-svn/pom.xml index e6b21e4f7df..10f39ed447b 100644 --- a/plugins/plugin-svn/pom.xml +++ b/plugins/plugin-svn/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/pom.xml b/plugins/plugin-testing-java/plugin-testing-classpath/pom.xml index 9016881418b..8d09ea97f16 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-classpath/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/AbstractJavaTestRunner.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/AbstractJavaTestRunner.java index af132395fdb..ca116211bb0 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/AbstractJavaTestRunner.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/AbstractJavaTestRunner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/AnnotationSearchRequestor.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/AnnotationSearchRequestor.java index d67dda19f07..4be97e6a842 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/AnnotationSearchRequestor.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/AnnotationSearchRequestor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/ClasspathUtil.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/ClasspathUtil.java index 873d558086d..d7a0c698af6 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/ClasspathUtil.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/ClasspathUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/JavaTestAnnotations.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/JavaTestAnnotations.java index 625ee4c018b..2e513cc7a7d 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/JavaTestAnnotations.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/JavaTestAnnotations.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/JavaTestFinder.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/JavaTestFinder.java index 2c2718ba65b..a9fefe60e80 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/JavaTestFinder.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/JavaTestFinder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/MavenTestClasspathProvider.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/MavenTestClasspathProvider.java index f0477c407b4..faf86a9d207 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/MavenTestClasspathProvider.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/MavenTestClasspathProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/ProjectClasspathProvider.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/ProjectClasspathProvider.java index b332a69c163..57dc66ac6c5 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/ProjectClasspathProvider.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/ProjectClasspathProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathGuiceModule.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathGuiceModule.java index c284debb4a7..5b782fc4c1e 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathGuiceModule.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathGuiceModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathProvider.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathProvider.java index 05a78762f90..af93542f749 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathProvider.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathRegistry.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathRegistry.java index 90e0ada2656..f82c6a01af7 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathRegistry.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/main/java/org/eclipse/che/plugin/java/testing/TestClasspathRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-classpath/src/test/java/org/eclipse/che/plugin/java/testing/ProjectClasspathProviderTest.java b/plugins/plugin-testing-java/plugin-testing-classpath/src/test/java/org/eclipse/che/plugin/java/testing/ProjectClasspathProviderTest.java index 98d625fdcc3..354baf3a2fa 100644 --- a/plugins/plugin-testing-java/plugin-testing-classpath/src/test/java/org/eclipse/che/plugin/java/testing/ProjectClasspathProviderTest.java +++ b/plugins/plugin-testing-java/plugin-testing-classpath/src/test/java/org/eclipse/che/plugin/java/testing/ProjectClasspathProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.java.testing; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/pom.xml b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/pom.xml index df42ac9a854..296a96662af 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestAction.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestAction.java index 2e592119e14..34b17dc9479 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestAction.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.ide; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestLocalizationConstant.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestLocalizationConstant.java index 0942db42bd9..6c40f33c235 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestLocalizationConstant.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.ide; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestResources.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestResources.java index 30290604e8b..38d19f91371 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestResources.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/JUnitTestResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.ide; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/action/DebugJUnitTestAction.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/action/DebugJUnitTestAction.java index f06d99df10a..c109a2a53b3 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/action/DebugJUnitTestAction.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/action/DebugJUnitTestAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.ide.action; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/action/RunJUnitTestAction.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/action/RunJUnitTestAction.java index 3bb87938992..8a61190c916 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/action/RunJUnitTestAction.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/action/RunJUnitTestAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.ide.action; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/inject/JUnitGinModule.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/inject/JUnitGinModule.java index cb47de93454..d249fe175d3 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/inject/JUnitGinModule.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/java/org/eclipse/che/plugin/testing/junit/ide/inject/JUnitGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.ide.inject; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/JUnit.gwt.xml b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/JUnit.gwt.xml index f8383584789..cb353782b23 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/JUnit.gwt.xml +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/JUnit.gwt.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/ide/JUnitTestLocalizationConstant.properties b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/ide/JUnitTestLocalizationConstant.properties index 51544a2e519..c3a99cd52ec 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/ide/JUnitTestLocalizationConstant.properties +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/ide/JUnitTestLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/ide/svg/test.svg b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/ide/svg/test.svg index 79b385d2dd6..14bd5e6f3a9 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/ide/svg/test.svg +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-ide/src/main/resources/org/eclipse/che/plugin/testing/junit/ide/svg/test.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/pom.xml b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/pom.xml index e4e3ac34124..3bed460e514 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/TestingMessageHelper.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/TestingMessageHelper.java index daabc6c263c..ac94ae97d6f 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/TestingMessageHelper.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/TestingMessageHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.junit; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/CheJUnitCoreRunner.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/CheJUnitCoreRunner.java index 9d40f90225e..17c2690c467 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/CheJUnitCoreRunner.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/CheJUnitCoreRunner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.junit.junit4; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/CheJUnitLauncher.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/CheJUnitLauncher.java index 7325392eea6..e1683753701 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/CheJUnitLauncher.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/CheJUnitLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.junit.junit4; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/JUnit4TestReference.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/JUnit4TestReference.java index fc58393fbab..51f6dc3c497 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/JUnit4TestReference.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/JUnit4TestReference.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.junit.junit4; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/TestRunnerUtil.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/TestRunnerUtil.java index 5973bd42983..4c8f8af1b7e 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/TestRunnerUtil.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/TestRunnerUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.junit.junit4; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/listeners/CheJUnitTestListener.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/listeners/CheJUnitTestListener.java index b16f7d76bd3..3353fec35f0 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/listeners/CheJUnitTestListener.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/listeners/CheJUnitTestListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.junit.junit4.listeners; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/listeners/JUnitExecutionListener.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/listeners/JUnitExecutionListener.java index f4dd0ae67a1..d3d5c3acdd8 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/listeners/JUnitExecutionListener.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-runtime/src/main/java/org/eclipse/che/junit/junit4/listeners/JUnitExecutionListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.junit.junit4.listeners; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/pom.xml b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/pom.xml index 110b1b33313..d8cb0594955 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/JUnitTestRunner.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/JUnitTestRunner.java index cff012f45ae..3cb116beb52 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/JUnitTestRunner.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/JUnitTestRunner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.server; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/inject/JunitGuiceModule.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/inject/JunitGuiceModule.java index 27c876e8461..7e254a44664 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/inject/JunitGuiceModule.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/inject/JunitGuiceModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.server.inject; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/junit4/JUnit4TestRunner.java b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/junit4/JUnit4TestRunner.java index 5b2cd11595a..4ffe5e4aaee 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/junit4/JUnit4TestRunner.java +++ b/plugins/plugin-testing-java/plugin-testing-junit/che-plugin-testing-junit-server/src/main/java/org/eclipse/che/plugin/testing/junit/server/junit4/JUnit4TestRunner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.junit.server.junit4; diff --git a/plugins/plugin-testing-java/plugin-testing-junit/pom.xml b/plugins/plugin-testing-java/plugin-testing-junit/pom.xml index 073d07a2239..93bb83f39b7 100644 --- a/plugins/plugin-testing-java/plugin-testing-junit/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-junit/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/pom.xml b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/pom.xml index 373b2c36def..5198d291e8a 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgLocalizationConstant.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgLocalizationConstant.java index 4eee2efb40a..f47055f2ab8 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgLocalizationConstant.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.ide; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgResources.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgResources.java index f8da0145062..5c53b7814e8 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgResources.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.ide; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgTestAction.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgTestAction.java index ffc6596517a..46afeeeb694 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgTestAction.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/TestNgTestAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.ide; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/action/DebugTestNgTestAction.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/action/DebugTestNgTestAction.java index 5a7cddb8579..dafe768d5b4 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/action/DebugTestNgTestAction.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/action/DebugTestNgTestAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.ide.action; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/action/RunTestNgTestAction.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/action/RunTestNgTestAction.java index d68ee5c4cc0..7e6c2f5a6cb 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/action/RunTestNgTestAction.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/action/RunTestNgTestAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.ide.action; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/inject/TestNgGinModule.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/inject/TestNgGinModule.java index 04735354992..09cec6015ef 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/inject/TestNgGinModule.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/java/org/eclipse/che/plugin/testing/testng/ide/inject/TestNgGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.ide.inject; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/TestNG.gwt.xml b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/TestNG.gwt.xml index f8383584789..cb353782b23 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/TestNG.gwt.xml +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/TestNG.gwt.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/ide/TestNgLocalizationConstant.properties b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/ide/TestNgLocalizationConstant.properties index 0a5005f7097..49c077a0f63 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/ide/TestNgLocalizationConstant.properties +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/ide/TestNgLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/ide/svg/test.svg b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/ide/svg/test.svg index 79b385d2dd6..14bd5e6f3a9 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/ide/svg/test.svg +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-ide/src/main/resources/org/eclipse/che/plugin/testing/testng/ide/svg/test.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/pom.xml b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/pom.xml index 003a95e4d08..38f3e45c7ac 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNG.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNG.java index 65b3f1d0230..6b1307e837c 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNG.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNG.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNGLauncher.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNGLauncher.java index 8eaad5f523f..ad6a900909a 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNGLauncher.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNGLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNGListener.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNGListener.java index 0fac9141b43..21893934a3b 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNGListener.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/CheTestNGListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/TestResultWrapper.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/TestResultWrapper.java index 2a4c0d50421..21747c53fb0 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/TestResultWrapper.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/TestResultWrapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/TestingMessageHelper.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/TestingMessageHelper.java index 4fbe5a86d3d..d908a2403b5 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/TestingMessageHelper.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/TestingMessageHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheConfigurationListener.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheConfigurationListener.java index 9dc99fe4dc7..52e666e031c 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheConfigurationListener.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheConfigurationListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng.listeners; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheInvokedMethodListener.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheInvokedMethodListener.java index 809c73983a4..d3e7864fd58 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheInvokedMethodListener.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheInvokedMethodListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng.listeners; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheSuiteListener.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheSuiteListener.java index 8afdbcad945..6dfdbf5362b 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheSuiteListener.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheSuiteListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng.listeners; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheTestListener.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheTestListener.java index a6a20acc9de..df0de0f3593 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheTestListener.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/main/java/org/testng/listeners/CheTestListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng.listeners; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/test/java/org/testng/che/tests/ListeneterTest.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/test/java/org/testng/che/tests/ListeneterTest.java index 0fd42f35747..4224c15a12b 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/test/java/org/testng/che/tests/ListeneterTest.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-runtime/src/test/java/org/testng/che/tests/ListeneterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.testng.che.tests; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/pom.xml b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/pom.xml index 41d97afeb27..6290f5b078e 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/TestNGRunner.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/TestNGRunner.java index 1dc549afb8f..67de2cbe86e 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/TestNGRunner.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/TestNGRunner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.server; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/TestNGSuiteUtil.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/TestNGSuiteUtil.java index 8c800daf8b7..9414a972e67 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/TestNGSuiteUtil.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/TestNGSuiteUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.server; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/inject/TestNGGuiceModule.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/inject/TestNGGuiceModule.java index 705dad41c36..7fbab2082d1 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/inject/TestNGGuiceModule.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/main/java/org/eclipse/che/plugin/testing/testng/server/inject/TestNGGuiceModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.testing.testng.server.inject; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/BaseTest.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/BaseTest.java index 26400c67fe2..0671106880b 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/BaseTest.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/BaseTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.ecipse.che.plugin.testing.testng.server; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestNGRunnerTest.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestNGRunnerTest.java index e3ed779b735..585fcf4fa54 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestNGRunnerTest.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestNGRunnerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.ecipse.che.plugin.testing.testng.server; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestNGTestDiscoveryTest.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestNGTestDiscoveryTest.java index 1b13d4bcd37..78fb60226dd 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestNGTestDiscoveryTest.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestNGTestDiscoveryTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.ecipse.che.plugin.testing.testng.server; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestSetUpUtil.java b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestSetUpUtil.java index 53e8a196553..0769fc80532 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestSetUpUtil.java +++ b/plugins/plugin-testing-java/plugin-testing-testng/che-plugin-testing-testng-server/src/test/java/org/ecipse/che/plugin/testing/testng/server/TestSetUpUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.ecipse.che.plugin.testing.testng.server; diff --git a/plugins/plugin-testing-java/plugin-testing-testng/pom.xml b/plugins/plugin-testing-java/plugin-testing-testng/pom.xml index 41861eb1c3d..076dfc44428 100644 --- a/plugins/plugin-testing-java/plugin-testing-testng/pom.xml +++ b/plugins/plugin-testing-java/plugin-testing-testng/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing-java/pom.xml b/plugins/plugin-testing-java/pom.xml index aff06cba9e1..efbc7795890 100644 --- a/plugins/plugin-testing-java/pom.xml +++ b/plugins/plugin-testing-java/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-testing/pom.xml b/plugins/plugin-testing/pom.xml index 4797a23625a..9c94d798e75 100644 --- a/plugins/plugin-testing/pom.xml +++ b/plugins/plugin-testing/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-traefik/plugin-traefik-docker/pom.xml b/plugins/plugin-traefik/plugin-traefik-docker/pom.xml index 845e8ec8acc..0bf1e47cc13 100644 --- a/plugins/plugin-traefik/plugin-traefik-docker/pom.xml +++ b/plugins/plugin-traefik/plugin-traefik-docker/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-traefik/plugin-traefik-docker/src/main/java/org/eclipse/che/plugin/traefik/TraefikCreateContainerInterceptor.java b/plugins/plugin-traefik/plugin-traefik-docker/src/main/java/org/eclipse/che/plugin/traefik/TraefikCreateContainerInterceptor.java index 444ab49f71a..90d70a7be1c 100644 --- a/plugins/plugin-traefik/plugin-traefik-docker/src/main/java/org/eclipse/che/plugin/traefik/TraefikCreateContainerInterceptor.java +++ b/plugins/plugin-traefik/plugin-traefik-docker/src/main/java/org/eclipse/che/plugin/traefik/TraefikCreateContainerInterceptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.traefik; diff --git a/plugins/plugin-traefik/plugin-traefik-docker/src/main/java/org/eclipse/che/plugin/traefik/TraefikDockerModule.java b/plugins/plugin-traefik/plugin-traefik-docker/src/main/java/org/eclipse/che/plugin/traefik/TraefikDockerModule.java index 3cf5e4d3916..25f2255d022 100644 --- a/plugins/plugin-traefik/plugin-traefik-docker/src/main/java/org/eclipse/che/plugin/traefik/TraefikDockerModule.java +++ b/plugins/plugin-traefik/plugin-traefik-docker/src/main/java/org/eclipse/che/plugin/traefik/TraefikDockerModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.traefik; diff --git a/plugins/plugin-traefik/plugin-traefik-docker/src/test/java/org/eclipse/che/plugin/traefik/TraefikCreateContainerInterceptorTest.java b/plugins/plugin-traefik/plugin-traefik-docker/src/test/java/org/eclipse/che/plugin/traefik/TraefikCreateContainerInterceptorTest.java index 24db5986b27..de594550c7a 100644 --- a/plugins/plugin-traefik/plugin-traefik-docker/src/test/java/org/eclipse/che/plugin/traefik/TraefikCreateContainerInterceptorTest.java +++ b/plugins/plugin-traefik/plugin-traefik-docker/src/test/java/org/eclipse/che/plugin/traefik/TraefikCreateContainerInterceptorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.traefik; diff --git a/plugins/plugin-traefik/pom.xml b/plugins/plugin-traefik/pom.xml index e583bd1c084..cfea30a7b2d 100644 --- a/plugins/plugin-traefik/pom.xml +++ b/plugins/plugin-traefik/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-urlfactory/pom.xml b/plugins/plugin-urlfactory/pom.xml index f1025590675..1e77d21873e 100644 --- a/plugins/plugin-urlfactory/pom.xml +++ b/plugins/plugin-urlfactory/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/ProjectConfigDtoMerger.java b/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/ProjectConfigDtoMerger.java index e84a2f6d4ef..84bbc78fd62 100644 --- a/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/ProjectConfigDtoMerger.java +++ b/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/ProjectConfigDtoMerger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.urlfactory; diff --git a/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLChecker.java b/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLChecker.java index 1b3fc3fe5bf..411293f8448 100644 --- a/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLChecker.java +++ b/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.urlfactory; diff --git a/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLFactoryBuilder.java b/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLFactoryBuilder.java index 21d7056260e..a33dd198846 100644 --- a/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLFactoryBuilder.java +++ b/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLFactoryBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.urlfactory; diff --git a/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLFetcher.java b/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLFetcher.java index 906a51baeec..c4069d72fb3 100644 --- a/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLFetcher.java +++ b/plugins/plugin-urlfactory/src/main/java/org/eclipse/che/plugin/urlfactory/URLFetcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.urlfactory; diff --git a/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/ProjectConfigDtoMergerTest.java b/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/ProjectConfigDtoMergerTest.java index 9188bdefbef..5537c875058 100644 --- a/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/ProjectConfigDtoMergerTest.java +++ b/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/ProjectConfigDtoMergerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.urlfactory; diff --git a/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLCheckerTest.java b/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLCheckerTest.java index d2db01b35f6..c5c46b17008 100644 --- a/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLCheckerTest.java +++ b/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLCheckerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.urlfactory; diff --git a/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLFactoryBuilderTest.java b/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLFactoryBuilderTest.java index b4777130448..b93106a4918 100644 --- a/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLFactoryBuilderTest.java +++ b/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLFactoryBuilderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.urlfactory; diff --git a/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLFetcherTest.java b/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLFetcherTest.java index e529c3ea56b..8ec54c48fe9 100644 --- a/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLFetcherTest.java +++ b/plugins/plugin-urlfactory/src/test/java/org/eclipse/che/plugin/urlfactory/URLFetcherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.urlfactory; diff --git a/plugins/plugin-urlfactory/src/test/resources/logback-test.xml b/plugins/plugin-urlfactory/src/test/resources/logback-test.xml index 863689961a2..d5b94595a94 100644 --- a/plugins/plugin-urlfactory/src/test/resources/logback-test.xml +++ b/plugins/plugin-urlfactory/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-server/pom.xml b/plugins/plugin-web/che-plugin-web-ext-server/pom.xml index 2223a80e143..6fa8fdfb792 100644 --- a/plugins/plugin-web/che-plugin-web-ext-server/pom.xml +++ b/plugins/plugin-web/che-plugin-web-ext-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/inject/WebModule.java b/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/inject/WebModule.java index abc71e82195..78b122773cb 100644 --- a/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/inject/WebModule.java +++ b/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/inject/WebModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.web.inject; diff --git a/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/typescript/TSLSLauncher.java b/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/typescript/TSLSLauncher.java index a3c374d2fb8..d08f94ad81b 100644 --- a/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/typescript/TSLSLauncher.java +++ b/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/typescript/TSLSLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.web.typescript; diff --git a/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/typescript/TypeScriptProjectType.java b/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/typescript/TypeScriptProjectType.java index ecc10b75c72..4ebf6f2dc67 100644 --- a/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/typescript/TypeScriptProjectType.java +++ b/plugins/plugin-web/che-plugin-web-ext-server/src/main/java/org/eclipse/che/plugin/web/typescript/TypeScriptProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.web.typescript; diff --git a/plugins/plugin-web/che-plugin-web-ext-shared/pom.xml b/plugins/plugin-web/che-plugin-web-ext-shared/pom.xml index eb6aa99dc2a..5c19025bd43 100644 --- a/plugins/plugin-web/che-plugin-web-ext-shared/pom.xml +++ b/plugins/plugin-web/che-plugin-web-ext-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-shared/src/main/java/org/eclipse/che/plugin/web/shared/Constants.java b/plugins/plugin-web/che-plugin-web-ext-shared/src/main/java/org/eclipse/che/plugin/web/shared/Constants.java index 9fb37409a39..b8839fbc667 100644 --- a/plugins/plugin-web/che-plugin-web-ext-shared/src/main/java/org/eclipse/che/plugin/web/shared/Constants.java +++ b/plugins/plugin-web/che-plugin-web-ext-shared/src/main/java/org/eclipse/che/plugin/web/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.web.shared; diff --git a/plugins/plugin-web/che-plugin-web-ext-shared/src/main/resources/org/eclipse/che/plugin/web/WebShared.gwt.xml b/plugins/plugin-web/che-plugin-web-ext-shared/src/main/resources/org/eclipse/che/plugin/web/WebShared.gwt.xml index 8c1edd92de0..a38507d261f 100644 --- a/plugins/plugin-web/che-plugin-web-ext-shared/src/main/resources/org/eclipse/che/plugin/web/WebShared.gwt.xml +++ b/plugins/plugin-web/che-plugin-web-ext-shared/src/main/resources/org/eclipse/che/plugin/web/WebShared.gwt.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-web/pom.xml b/plugins/plugin-web/che-plugin-web-ext-web/pom.xml index 57822f7b0d1..e462048b1fa 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/pom.xml +++ b/plugins/plugin-web/che-plugin-web-ext-web/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebExtension.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebExtension.java index f2989b69576..1950dd73a92 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebExtension.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebExtensionResource.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebExtensionResource.java index 0c3bf39bf60..1d4e61c0f9b 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebExtensionResource.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebExtensionResource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebLocalizationConstant.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebLocalizationConstant.java index b86b44f0696..2ad4be16e6b 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebLocalizationConstant.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/WebLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/css/NewCssFileAction.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/css/NewCssFileAction.java index ceace0f3519..2a1ec94e4f3 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/css/NewCssFileAction.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/css/NewCssFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.css; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/css/NewLessFileAction.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/css/NewLessFileAction.java index cf88c7d90d4..9c98557d4eb 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/css/NewLessFileAction.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/css/NewLessFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.css; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/NewHtmlFileAction.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/NewHtmlFileAction.java index 9eaadb1f9db..5b30b4b8e39 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/NewHtmlFileAction.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/NewHtmlFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/PreviewHTMLAction.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/PreviewHTMLAction.java index 0dc7105eb06..4b5af69c459 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/PreviewHTMLAction.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/PreviewHTMLAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/AutoEditStrategyFactory.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/AutoEditStrategyFactory.java index b564cba9616..739757e03eb 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/AutoEditStrategyFactory.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/AutoEditStrategyFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/DefaultCodeAssistProcessor.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/DefaultCodeAssistProcessor.java index a00ade0a242..33ec7312fb5 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/DefaultCodeAssistProcessor.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/DefaultCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HTMLCodeAssistProcessor.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HTMLCodeAssistProcessor.java index b486ec90f42..308b812180b 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HTMLCodeAssistProcessor.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HTMLCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HTMLEditorConfigurationProvider.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HTMLEditorConfigurationProvider.java index 31dda07f737..624a04f3c1c 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HTMLEditorConfigurationProvider.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HTMLEditorConfigurationProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HtmlEditorConfiguration.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HtmlEditorConfiguration.java index 6234a3f393e..b4b5fe7f60b 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HtmlEditorConfiguration.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HtmlEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HtmlEditorProvider.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HtmlEditorProvider.java index f346a425497..5430cfd72f3 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HtmlEditorProvider.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/html/editor/HtmlEditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/inject/WebModule.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/inject/WebModule.java index ddc562265fd..5ef26c0ba1a 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/inject/WebModule.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/inject/WebModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.inject; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/NewJavaScriptFileAction.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/NewJavaScriptFileAction.java index ec214244212..57123cc645b 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/NewJavaScriptFileAction.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/NewJavaScriptFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.js; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/DefaultCodeAssistProcessor.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/DefaultCodeAssistProcessor.java index 347dc645383..b5922f21f50 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/DefaultCodeAssistProcessor.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/DefaultCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.js.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsCodeAssistProcessor.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsCodeAssistProcessor.java index 358e5cbfba5..faf49366c5c 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsCodeAssistProcessor.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.js.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorConfiguration.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorConfiguration.java index 5e15ca234c0..5bc2f7a035d 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorConfiguration.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.js.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorConfigurationProvider.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorConfigurationProvider.java index 5f8b64ecb55..a66e35636c7 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorConfigurationProvider.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorConfigurationProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.js.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorProvider.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorProvider.java index b29f6c21dd2..4542f1e7ac4 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorProvider.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/js/editor/JsEditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.js.editor; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/typescript/TSProjectWizardRegistrar.java b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/typescript/TSProjectWizardRegistrar.java index 7176220dcd9..a08ae4e8501 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/typescript/TSProjectWizardRegistrar.java +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/java/org/eclipse/che/ide/ext/web/typescript/TSProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.typescript; diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/Web.gwt.xml b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/Web.gwt.xml index dea746dfaf3..30b99c5afea 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/Web.gwt.xml +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/Web.gwt.xml @@ -1,13 +1,13 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/WebLocalizationConstant.properties b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/WebLocalizationConstant.properties index b183edb050a..86e5fe1b768 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/WebLocalizationConstant.properties +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/WebLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # ##### Actions ##### diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/category/js.svg b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/category/js.svg index 5174cd9db99..bc1432e47b0 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/category/js.svg +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/category/js.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/css.svg b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/css.svg index 8a077146d8d..d393701f159 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/css.svg +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/css.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/html.svg b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/html.svg index db9d8454076..20d33a9cbcc 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/html.svg +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/html.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/js.svg b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/js.svg index 5174cd9db99..bc1432e47b0 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/js.svg +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/js.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/less.svg b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/less.svg index 0a5b1843b8f..362db896988 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/less.svg +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/less.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/php.svg b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/php.svg index 5420aea89c4..e7481be2dac 100644 --- a/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/php.svg +++ b/plugins/plugin-web/che-plugin-web-ext-web/src/main/resources/org/eclipse/che/ide/ext/web/php.svg @@ -1,14 +1,14 @@ diff --git a/plugins/plugin-web/pom.xml b/plugins/plugin-web/pom.xml index 9ec4eb8409e..88e4ccb18d7 100644 --- a/plugins/plugin-web/pom.xml +++ b/plugins/plugin-web/pom.xml @@ -1,14 +1,14 @@ diff --git a/plugins/pom.xml b/plugins/pom.xml index b1f48c1478a..5db9760f3b5 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -1,14 +1,14 @@ diff --git a/pom.xml b/pom.xml index 602d8468ca0..7fda0d211c2 100644 --- a/pom.xml +++ b/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/pom.xml b/samples/pom.xml index 92ede8fde75..5cb1ebf1dfa 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/pom.xml b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/pom.xml index 76ac39641a9..11f83a9115e 100644 --- a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/pom.xml +++ b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/SampleActionsExtensions.java b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/SampleActionsExtensions.java index 1160591beb9..7713d01d290 100644 --- a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/SampleActionsExtensions.java +++ b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/SampleActionsExtensions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sampleactions.ide; diff --git a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/SampleActionsResources.java b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/SampleActionsResources.java index 62cb200b72b..39a67f2cc27 100644 --- a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/SampleActionsResources.java +++ b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/SampleActionsResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sampleactions.ide; diff --git a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/HelloWorldAction.java b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/HelloWorldAction.java index b55906fa343..1532097326e 100644 --- a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/HelloWorldAction.java +++ b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/HelloWorldAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sampleactions.ide.action; diff --git a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/HelloWorldActionWithIcon.java b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/HelloWorldActionWithIcon.java index 9c21d705735..10321cf1097 100644 --- a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/HelloWorldActionWithIcon.java +++ b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/HelloWorldActionWithIcon.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sampleactions.ide.action; diff --git a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/NewMyFileAction.java b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/NewMyFileAction.java index 8f177b91be2..e6f8ac689ce 100644 --- a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/NewMyFileAction.java +++ b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/java/org/eclipse/che/plugin/sampleactions/ide/action/NewMyFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sampleactions.ide.action; diff --git a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/resources/org/eclipse/che/plugin/sampleactions/SampleActions.gwt.xml b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/resources/org/eclipse/che/plugin/sampleactions/SampleActions.gwt.xml index 7c3c2ff6e0e..475e33505ef 100644 --- a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/resources/org/eclipse/che/plugin/sampleactions/SampleActions.gwt.xml +++ b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/resources/org/eclipse/che/plugin/sampleactions/SampleActions.gwt.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/resources/org/eclipse/che/plugin/sampleactions/ide/svg/icon.svg b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/resources/org/eclipse/che/plugin/sampleactions/ide/svg/icon.svg index 6ab4065d7d2..baad68335cc 100644 --- a/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/resources/org/eclipse/che/plugin/sampleactions/ide/svg/icon.svg +++ b/samples/sample-plugin-actions/che-sample-plugin-actions-ide/src/main/resources/org/eclipse/che/plugin/sampleactions/ide/svg/icon.svg @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/pom.xml b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/pom.xml index bb55ace52c4..a5656d13e26 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/pom.xml +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/HelloWorldResources.java b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/HelloWorldResources.java index 28a0784c16f..178008280b9 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/HelloWorldResources.java +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/HelloWorldResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.embedjsexample.ide; diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/HelloWorldViewExampleExtension.java b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/HelloWorldViewExampleExtension.java index 62ab8cbab02..72d22ec4a84 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/HelloWorldViewExampleExtension.java +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/HelloWorldViewExampleExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.embedjsexample.ide; diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/action/HelloWorldAction.java b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/action/HelloWorldAction.java index 964a9ccc9e0..cb76c23f20e 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/action/HelloWorldAction.java +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/action/HelloWorldAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.embedjsexample.ide.action; diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/common/Constants.java b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/common/Constants.java index bb0e24b4227..7da766563d1 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/common/Constants.java +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/common/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.embedjsexample.ide.common; diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/inject/HelloWorldViewExampleGinModule.java b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/inject/HelloWorldViewExampleGinModule.java index 6c60964bbcb..746d43b2641 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/inject/HelloWorldViewExampleGinModule.java +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/inject/HelloWorldViewExampleGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.embedjsexample.ide.inject; diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldView.java b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldView.java index 5bdce3f8cd4..b95ae050af7 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldView.java +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.embedjsexample.ide.view; diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldViewImpl.java b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldViewImpl.java index ec9a8500508..b60eda1a708 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldViewImpl.java +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.embedjsexample.ide.view; diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldViewImpl.ui.xml b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldViewImpl.ui.xml index 78f7acce119..246c5438963 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldViewImpl.ui.xml +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/java/org/eclipse/che/plugin/embedjsexample/ide/view/HelloWorldViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/resources/org/eclipse/che/plugin/embedjsexample/ide/svg/icon.svg b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/resources/org/eclipse/che/plugin/embedjsexample/ide/svg/icon.svg index 6ab4065d7d2..baad68335cc 100644 --- a/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/resources/org/eclipse/che/plugin/embedjsexample/ide/svg/icon.svg +++ b/samples/sample-plugin-embedjs/che-sample-plugin-embedjs-ide/src/main/resources/org/eclipse/che/plugin/embedjsexample/ide/svg/icon.svg @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/pom.xml b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/pom.xml index 3e6fe35c488..1c5802017d4 100644 --- a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/pom.xml +++ b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/MyFileTypeExtension.java b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/MyFileTypeExtension.java index f9d4bba5d9f..9fe9777f66b 100644 --- a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/MyFileTypeExtension.java +++ b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/MyFileTypeExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.filetype.ide; diff --git a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/MyResources.java b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/MyResources.java index 9be60096b65..f83b27456a8 100644 --- a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/MyResources.java +++ b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/MyResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.filetype.ide; diff --git a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/action/CreateMyFileAction.java b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/action/CreateMyFileAction.java index e36778384b9..6a023d4ab4b 100644 --- a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/action/CreateMyFileAction.java +++ b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/action/CreateMyFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.filetype.ide.action; diff --git a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/inject/MyGinModule.java b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/inject/MyGinModule.java index a063d6ea8cc..5e204b0b369 100644 --- a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/inject/MyGinModule.java +++ b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/java/org/eclipse/che/plugin/filetype/ide/inject/MyGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.filetype.ide.inject; diff --git a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/resources/org/eclipse/che/plugin/filetype/MyFileType.gwt.xml b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/resources/org/eclipse/che/plugin/filetype/MyFileType.gwt.xml index 074537b0ad0..836ea98ad24 100644 --- a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/resources/org/eclipse/che/plugin/filetype/MyFileType.gwt.xml +++ b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/resources/org/eclipse/che/plugin/filetype/MyFileType.gwt.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/resources/org/eclipse/che/plugin/filetype/ide/icons/my.svg b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/resources/org/eclipse/che/plugin/filetype/ide/icons/my.svg index 07465c8432a..2444fd6210f 100644 --- a/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/resources/org/eclipse/che/plugin/filetype/ide/icons/my.svg +++ b/samples/sample-plugin-filetype/che-sample-plugin-filetype-ide/src/main/resources/org/eclipse/che/plugin/filetype/ide/icons/my.svg @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/pom.xml b/samples/sample-plugin-json/che-sample-plugin-json-ide/pom.xml index 837c55323ed..52b45de9981 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/pom.xml +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleEditorExtension.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleEditorExtension.java index 9c7e9b4af02..eeba1b1fad3 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleEditorExtension.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleEditorExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleExtension.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleExtension.java index 7789103f20c..3036ab86b0d 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleExtension.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleResources.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleResources.java index 81df699d604..8de9928b6fd 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleResources.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/JsonExampleResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/CountLinesAction.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/CountLinesAction.java index 65a9cc4fe10..0fb4a59f5d3 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/CountLinesAction.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/CountLinesAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.action; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/HelloWorldAction.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/HelloWorldAction.java index 3e1f069fcc0..f8b6549976e 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/HelloWorldAction.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/HelloWorldAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.action; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/JsonExampleProjectAction.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/JsonExampleProjectAction.java index 5594fdb77d2..013560e460c 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/JsonExampleProjectAction.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/action/JsonExampleProjectAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.action; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleCodeAssistClient.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleCodeAssistClient.java index 5a34544561b..65e035f4b39 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleCodeAssistClient.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleCodeAssistClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.editor; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleCodeAssistProcessor.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleCodeAssistProcessor.java index 16d12958cc3..acf7b9a211b 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleCodeAssistProcessor.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleCodeAssistProcessor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.editor; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorConfiguration.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorConfiguration.java index e9306d59eb9..73e7cc5a936 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorConfiguration.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorConfiguration.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.editor; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorConfigurationProvider.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorConfigurationProvider.java index 8187e84ea72..3dbb5650aaf 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorConfigurationProvider.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorConfigurationProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.editor; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorProvider.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorProvider.java index 482e4b36003..1abfd7ebd17 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorProvider.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/JsonExampleEditorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.editor; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/SimpleCompletion.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/SimpleCompletion.java index 15d882f826b..6421eaca030 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/SimpleCompletion.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/SimpleCompletion.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.editor; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/SimpleCompletionProposal.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/SimpleCompletionProposal.java index ee4ae4bf51f..8cfd58201a9 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/SimpleCompletionProposal.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/SimpleCompletionProposal.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.editor; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/StringListUnmarshaller.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/StringListUnmarshaller.java index 51581d5e994..c49a556c82e 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/StringListUnmarshaller.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/editor/StringListUnmarshaller.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.editor; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/inject/JsonExampleModule.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/inject/JsonExampleModule.java index 9e36685cb05..fc2b515b92c 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/inject/JsonExampleModule.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/inject/JsonExampleModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.inject; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/JsonExampleProjectWizardRegistrar.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/JsonExampleProjectWizardRegistrar.java index 4ec483ca21d..6a470ed05ef 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/JsonExampleProjectWizardRegistrar.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/JsonExampleProjectWizardRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.project; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlChangedDelegate.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlChangedDelegate.java index 2eddf3574d9..6d1f1ea05f8 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlChangedDelegate.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlChangedDelegate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.project; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageView.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageView.java index 4368b80b0da..910fc690bd6 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageView.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.project; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageViewImpl.java b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageViewImpl.java index b0a3238ec1b..ab958adb658 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageViewImpl.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.ide.project; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageViewImpl.ui.xml b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageViewImpl.ui.xml index c0534cf64fb..628051c9c9a 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageViewImpl.ui.xml +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/java/org/eclipse/che/plugin/jsonexample/ide/project/SchemaUrlPageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/resources/org/eclipse/che/plugin/jsonexample/ide/svg/completion.svg b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/resources/org/eclipse/che/plugin/jsonexample/ide/svg/completion.svg index 7c294c1a12d..eb182938ca7 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/resources/org/eclipse/che/plugin/jsonexample/ide/svg/completion.svg +++ b/samples/sample-plugin-json/che-sample-plugin-json-ide/src/main/resources/org/eclipse/che/plugin/jsonexample/ide/svg/completion.svg @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/JsonExampleCompletionService.java b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/JsonExampleCompletionService.java index 04433068db7..614eceb6345 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/JsonExampleCompletionService.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/JsonExampleCompletionService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/JsonLocService.java b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/JsonLocService.java index 9f11a2ddba0..7881cb473d6 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/JsonLocService.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/JsonLocService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/generator/JsonExampleCreateProjectHandler.java b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/generator/JsonExampleCreateProjectHandler.java index ceac4974acb..76c5a1fc5c3 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/generator/JsonExampleCreateProjectHandler.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/generator/JsonExampleCreateProjectHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.generator; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/inject/JsonExampleGuiceModule.java b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/inject/JsonExampleGuiceModule.java index 09383ae852b..f352f31973d 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/inject/JsonExampleGuiceModule.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/inject/JsonExampleGuiceModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.inject; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/projecttype/JsonExampleProjectType.java b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/projecttype/JsonExampleProjectType.java index 20b942d1de6..35f99af8dbd 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/projecttype/JsonExampleProjectType.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-server/src/main/java/org/eclipse/che/plugin/jsonexample/projecttype/JsonExampleProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.projecttype; diff --git a/samples/sample-plugin-json/che-sample-plugin-json-shared/pom.xml b/samples/sample-plugin-json/che-sample-plugin-json-shared/pom.xml index b8264b001f3..431acadc9de 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-shared/pom.xml +++ b/samples/sample-plugin-json/che-sample-plugin-json-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-json/che-sample-plugin-json-shared/src/main/java/org/eclipse/che/plugin/jsonexample/shared/Constants.java b/samples/sample-plugin-json/che-sample-plugin-json-shared/src/main/java/org/eclipse/che/plugin/jsonexample/shared/Constants.java index 7c641498d64..3d6b2fac570 100644 --- a/samples/sample-plugin-json/che-sample-plugin-json-shared/src/main/java/org/eclipse/che/plugin/jsonexample/shared/Constants.java +++ b/samples/sample-plugin-json/che-sample-plugin-json-shared/src/main/java/org/eclipse/che/plugin/jsonexample/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.jsonexample.shared; diff --git a/samples/sample-plugin-json/pom.xml b/samples/sample-plugin-json/pom.xml index dd57103afb7..445e72cc211 100644 --- a/samples/sample-plugin-json/pom.xml +++ b/samples/sample-plugin-json/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/pom.xml b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/pom.xml index 639eeadcbb5..c62b3bb595c 100644 --- a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/pom.xml +++ b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/ide/NativeAccessExampleExtension.java b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/ide/NativeAccessExampleExtension.java index 2409d47ac83..fd58b8d7b42 100644 --- a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/ide/NativeAccessExampleExtension.java +++ b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/ide/NativeAccessExampleExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nativeaccessexample.ide; diff --git a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/ide/action/RunNativeCommandAction.java b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/ide/action/RunNativeCommandAction.java index c47f1896603..2d029febdca 100644 --- a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/ide/action/RunNativeCommandAction.java +++ b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/ide/action/RunNativeCommandAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nativeaccessexample.ide.action; diff --git a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/machine/client/command/CommandManager.java b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/machine/client/command/CommandManager.java index 7f252f84c58..a4568ba5d68 100644 --- a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/machine/client/command/CommandManager.java +++ b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/java/org/eclipse/che/plugin/nativeaccessexample/machine/client/command/CommandManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.nativeaccessexample.machine.client.command; diff --git a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/resources/org/eclipse/che/plugin/nativeaccessexample/NativeAccessExample.gwt.xml b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/resources/org/eclipse/che/plugin/nativeaccessexample/NativeAccessExample.gwt.xml index 378ed74aa67..f3eb3f9064d 100644 --- a/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/resources/org/eclipse/che/plugin/nativeaccessexample/NativeAccessExample.gwt.xml +++ b/samples/sample-plugin-nativeaccess/che-sample-plugin-nativeaccess-ide/src/main/resources/org/eclipse/che/plugin/nativeaccessexample/NativeAccessExample.gwt.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-nativeaccess/pom.xml b/samples/sample-plugin-nativeaccess/pom.xml index e840c6d31b7..1f0dd13c763 100644 --- a/samples/sample-plugin-nativeaccess/pom.xml +++ b/samples/sample-plugin-nativeaccess/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/pom.xml b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/pom.xml index fa305d45d53..fc4e4befc1f 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/pom.xml +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/SamplePartsExtension.java b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/SamplePartsExtension.java index 9bcd64d11ad..3786d21807e 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/SamplePartsExtension.java +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/SamplePartsExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.parts.ide; diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/SamplePartsResources.java b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/SamplePartsResources.java index 193aa4e87dd..83c7e036393 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/SamplePartsResources.java +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/SamplePartsResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.parts.ide; diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldPresenter.java b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldPresenter.java index 0a2cce48235..32bbed96f99 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldPresenter.java +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.parts.ide.helloworldview; import com.google.gwt.user.client.ui.AcceptsOneWidget; diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldView.java b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldView.java index 1e8e4d98092..049c5a37288 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldView.java +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.parts.ide.helloworldview; diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldViewAction.java b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldViewAction.java index 6fe37b72f14..5bba8cb447c 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldViewAction.java +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldViewAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.parts.ide.helloworldview; diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldViewImpl.java b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldViewImpl.java index 4d3b8f8edae..d496b855a5d 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldViewImpl.java +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/helloworldview/HelloWorldViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.parts.ide.helloworldview; diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/inject/MyGinModule.java b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/inject/MyGinModule.java index 73ccdf91f2f..01b4934a766 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/inject/MyGinModule.java +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/java/org/eclipse/che/plugin/parts/ide/inject/MyGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.parts.ide.inject; diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/resources/org/eclipse/che/plugin/parts/SampleParts.gwt.xml b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/resources/org/eclipse/che/plugin/parts/SampleParts.gwt.xml index 7c3c2ff6e0e..475e33505ef 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/resources/org/eclipse/che/plugin/parts/SampleParts.gwt.xml +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/resources/org/eclipse/che/plugin/parts/SampleParts.gwt.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/resources/org/eclipse/che/plugin/parts/ide/icons/my.svg b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/resources/org/eclipse/che/plugin/parts/ide/icons/my.svg index 07465c8432a..2444fd6210f 100644 --- a/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/resources/org/eclipse/che/plugin/parts/ide/icons/my.svg +++ b/samples/sample-plugin-parts/che-sample-plugin-parts-ide/src/main/resources/org/eclipse/che/plugin/parts/ide/icons/my.svg @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/pom.xml b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/pom.xml index c5ed68c20d1..683f0052cbb 100644 --- a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/pom.xml +++ b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/MyServiceClient.java b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/MyServiceClient.java index bec259a2094..680198ca7b2 100644 --- a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/MyServiceClient.java +++ b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/MyServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.serverservice.ide; diff --git a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/ServerServiceExtension.java b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/ServerServiceExtension.java index 676861c0cf5..75a96b1bb6d 100644 --- a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/ServerServiceExtension.java +++ b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/ServerServiceExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.serverservice.ide; diff --git a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/action/MyAction.java b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/action/MyAction.java index 7c2d8e816ff..d4cc726fc45 100644 --- a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/action/MyAction.java +++ b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/java/org/eclipse/che/plugin/serverservice/ide/action/MyAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.serverservice.ide.action; diff --git a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/resources/org/eclipse/che/plugin/serverservice/ServerService.gwt.xml b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/resources/org/eclipse/che/plugin/serverservice/ServerService.gwt.xml index 7c3c2ff6e0e..475e33505ef 100644 --- a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/resources/org/eclipse/che/plugin/serverservice/ServerService.gwt.xml +++ b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-ide/src/main/resources/org/eclipse/che/plugin/serverservice/ServerService.gwt.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/pom.xml b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/pom.xml index 56cbdbd3ef2..7795349cb5b 100644 --- a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/pom.xml +++ b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/src/main/java/org/eclipse/che/plugin/serverservice/MyService.java b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/src/main/java/org/eclipse/che/plugin/serverservice/MyService.java index fe73ceb0974..8197c90cb09 100644 --- a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/src/main/java/org/eclipse/che/plugin/serverservice/MyService.java +++ b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/src/main/java/org/eclipse/che/plugin/serverservice/MyService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.serverservice; diff --git a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/src/main/java/org/eclipse/che/plugin/serverservice/inject/ServerServiceGuiceModule.java b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/src/main/java/org/eclipse/che/plugin/serverservice/inject/ServerServiceGuiceModule.java index 44cfa0944e5..f386e1ce17b 100644 --- a/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/src/main/java/org/eclipse/che/plugin/serverservice/inject/ServerServiceGuiceModule.java +++ b/samples/sample-plugin-serverservice/che-sample-plugin-serverservice-server/src/main/java/org/eclipse/che/plugin/serverservice/inject/ServerServiceGuiceModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.serverservice.inject; diff --git a/samples/sample-plugin-serverservice/pom.xml b/samples/sample-plugin-serverservice/pom.xml index 57253ba8bc5..7d0101c9ecd 100644 --- a/samples/sample-plugin-serverservice/pom.xml +++ b/samples/sample-plugin-serverservice/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/pom.xml b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/pom.xml index d9a85da2513..fd8b0e3b457 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/pom.xml +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardExtension.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardExtension.java index df6765239ea..52e4d25fe92 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardExtension.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardLocalizationConstant.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardLocalizationConstant.java index b6b8c97e58b..3a426a2b022 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardLocalizationConstant.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardResources.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardResources.java index b2a767590ca..dce1ccf349a 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardResources.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/action/NewXFileAction.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/action/NewXFileAction.java index ec49e660051..e6dbd754938 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/action/NewXFileAction.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/action/NewXFileAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.action; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/action/SampleAction.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/action/SampleAction.java index 9ed83211add..160d9043edb 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/action/SampleAction.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/action/SampleAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.action; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFilePresenter.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFilePresenter.java index 2c3cb0cd1de..c38f28d66dc 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFilePresenter.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFilePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.file; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileView.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileView.java index 32d25639378..5f537e8515b 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileView.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.file; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileViewImpl.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileViewImpl.java index c9835592941..aeb3260badf 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileViewImpl.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.file; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileViewImpl.ui.xml b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileViewImpl.ui.xml index 9a5fb4819ba..b31b6d59732 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileViewImpl.ui.xml +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/file/NewXFileViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/inject/SampleWizardGinModule.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/inject/SampleWizardGinModule.java index 5ef7c23c817..f85f8ab5a3d 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/inject/SampleWizardGinModule.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/inject/SampleWizardGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.inject; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePagePresenter.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePagePresenter.java index 4d9c6a33f57..94871ac2258 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePagePresenter.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePagePresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.wizard; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageView.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageView.java index dbd4ece64fd..c171f761baa 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageView.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.wizard; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageViewImpl.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageViewImpl.java index 0c0e0ba823e..0fd19b208a4 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageViewImpl.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.ide.wizard; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageViewImpl.ui.xml b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageViewImpl.ui.xml index ce2b87cf0c2..a6bcb8f58e8 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageViewImpl.ui.xml +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/java/org/eclipse/che/plugin/sample/wizard/ide/wizard/SamplePageViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardLocalizationConstant.properties b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardLocalizationConstant.properties index ecb3dc8e272..9d632a95b8d 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardLocalizationConstant.properties +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/SampleWizardLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # # diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/svg/c_file.svg b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/svg/c_file.svg index 2d22c2d071c..5a32e198d2d 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/svg/c_file.svg +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/svg/c_file.svg @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/svg/category.svg b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/svg/category.svg index 2d22c2d071c..5a32e198d2d 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/svg/category.svg +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-ide/src/main/resources/org/eclipse/che/plugin/sample/wizard/ide/svg/category.svg @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/pom.xml b/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/pom.xml index 074abe2ffcc..c2ff11de3f9 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/pom.xml +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/src/main/java/org/eclipse/che/plugin/sample/wizard/inject/SampleWizardModule.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/src/main/java/org/eclipse/che/plugin/sample/wizard/inject/SampleWizardModule.java index 56eeea786e1..70263f046cf 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/src/main/java/org/eclipse/che/plugin/sample/wizard/inject/SampleWizardModule.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/src/main/java/org/eclipse/che/plugin/sample/wizard/inject/SampleWizardModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.inject; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/src/main/java/org/eclipse/che/plugin/sample/wizard/projecttype/SampleProjectType.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/src/main/java/org/eclipse/che/plugin/sample/wizard/projecttype/SampleProjectType.java index 745cefc53a8..cb527f169e5 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/src/main/java/org/eclipse/che/plugin/sample/wizard/projecttype/SampleProjectType.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-server/src/main/java/org/eclipse/che/plugin/sample/wizard/projecttype/SampleProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.projecttype; diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-shared/pom.xml b/samples/sample-plugin-wizard/che-sample-plugin-wizard-shared/pom.xml index f99ad1f55aa..533206e094d 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-shared/pom.xml +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/samples/sample-plugin-wizard/che-sample-plugin-wizard-shared/src/main/java/org/eclipse/che/plugin/sample/wizard/shared/Constants.java b/samples/sample-plugin-wizard/che-sample-plugin-wizard-shared/src/main/java/org/eclipse/che/plugin/sample/wizard/shared/Constants.java index 91eae25c1e9..faa1d46711b 100644 --- a/samples/sample-plugin-wizard/che-sample-plugin-wizard-shared/src/main/java/org/eclipse/che/plugin/sample/wizard/shared/Constants.java +++ b/samples/sample-plugin-wizard/che-sample-plugin-wizard-shared/src/main/java/org/eclipse/che/plugin/sample/wizard/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.sample.wizard.shared; diff --git a/samples/sample-plugin-wizard/pom.xml b/samples/sample-plugin-wizard/pom.xml index 0af631f51ce..a9a37e01874 100644 --- a/samples/sample-plugin-wizard/pom.xml +++ b/samples/sample-plugin-wizard/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/activity/pom.xml b/wsagent/activity/pom.xml index 39ff0724288..257d428ed2c 100644 --- a/wsagent/activity/pom.xml +++ b/wsagent/activity/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/activity/src/main/java/org/eclipse/che/api/activity/LastAccessTimeFilter.java b/wsagent/activity/src/main/java/org/eclipse/che/api/activity/LastAccessTimeFilter.java index 7f8d71fbb5b..0cff286a0be 100644 --- a/wsagent/activity/src/main/java/org/eclipse/che/api/activity/LastAccessTimeFilter.java +++ b/wsagent/activity/src/main/java/org/eclipse/che/api/activity/LastAccessTimeFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.activity; diff --git a/wsagent/activity/src/main/java/org/eclipse/che/api/activity/WorkspaceActivityNotifier.java b/wsagent/activity/src/main/java/org/eclipse/che/api/activity/WorkspaceActivityNotifier.java index 5d8d1589fe8..d9f0cb162bb 100644 --- a/wsagent/activity/src/main/java/org/eclipse/che/api/activity/WorkspaceActivityNotifier.java +++ b/wsagent/activity/src/main/java/org/eclipse/che/api/activity/WorkspaceActivityNotifier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.activity; diff --git a/wsagent/activity/src/main/test/org/eclipse/che/api/activity/LastAccessTimeFilterTest.java b/wsagent/activity/src/main/test/org/eclipse/che/api/activity/LastAccessTimeFilterTest.java index 37cb8e96090..1a40fc31af3 100644 --- a/wsagent/activity/src/main/test/org/eclipse/che/api/activity/LastAccessTimeFilterTest.java +++ b/wsagent/activity/src/main/test/org/eclipse/che/api/activity/LastAccessTimeFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.activity; diff --git a/wsagent/activity/src/main/test/org/eclipse/che/api/activity/WorkspaceActivityNotifierTest.java b/wsagent/activity/src/main/test/org/eclipse/che/api/activity/WorkspaceActivityNotifierTest.java index e8156da33f0..a23b7b20b98 100644 --- a/wsagent/activity/src/main/test/org/eclipse/che/api/activity/WorkspaceActivityNotifierTest.java +++ b/wsagent/activity/src/main/test/org/eclipse/che/api/activity/WorkspaceActivityNotifierTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.activity; diff --git a/wsagent/agent/pom.xml b/wsagent/agent/pom.xml index 8223e46b334..81ee8b2eab2 100644 --- a/wsagent/agent/pom.xml +++ b/wsagent/agent/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/agent/src/main/java/org/eclipse/che/api/agent/WsAgent.java b/wsagent/agent/src/main/java/org/eclipse/che/api/agent/WsAgent.java index 387538a727c..8333775e66f 100644 --- a/wsagent/agent/src/main/java/org/eclipse/che/api/agent/WsAgent.java +++ b/wsagent/agent/src/main/java/org/eclipse/che/api/agent/WsAgent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/wsagent/agent/src/main/java/org/eclipse/che/api/agent/WsAgentLauncher.java b/wsagent/agent/src/main/java/org/eclipse/che/api/agent/WsAgentLauncher.java index 535b2c33bbc..2ae05d3c6fa 100644 --- a/wsagent/agent/src/main/java/org/eclipse/che/api/agent/WsAgentLauncher.java +++ b/wsagent/agent/src/main/java/org/eclipse/che/api/agent/WsAgentLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/wsagent/agent/src/main/resources/org.eclipse.che.ws-agent.script.sh b/wsagent/agent/src/main/resources/org.eclipse.che.ws-agent.script.sh index ccf909c3c6e..af05c5d5321 100644 --- a/wsagent/agent/src/main/resources/org.eclipse.che.ws-agent.script.sh +++ b/wsagent/agent/src/main/resources/org.eclipse.che.ws-agent.script.sh @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # is_current_user_root() { diff --git a/wsagent/agent/src/test/java/org/eclipse/che/api/agent/WsAgentLauncherTest.java b/wsagent/agent/src/test/java/org/eclipse/che/api/agent/WsAgentLauncherTest.java index e5863ce1beb..9fdad61741a 100644 --- a/wsagent/agent/src/test/java/org/eclipse/che/api/agent/WsAgentLauncherTest.java +++ b/wsagent/agent/src/test/java/org/eclipse/che/api/agent/WsAgentLauncherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent; diff --git a/wsagent/che-core-api-debug-shared/pom.xml b/wsagent/che-core-api-debug-shared/pom.xml index d1766f3dc5e..ab3cdd2a855 100644 --- a/wsagent/che-core-api-debug-shared/pom.xml +++ b/wsagent/che-core-api-debug-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/BreakpointDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/BreakpointDto.java index 1650b63aad2..cd352a9942e 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/BreakpointDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/BreakpointDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/DebugSessionDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/DebugSessionDto.java index 201a6f5390d..d5bf5e40b9c 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/DebugSessionDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/DebugSessionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/DebuggerInfoDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/DebuggerInfoDto.java index 962551bdb23..96d49c337e4 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/DebuggerInfoDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/DebuggerInfoDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/FieldDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/FieldDto.java index 77bdfc37799..b00a1f6784d 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/FieldDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/FieldDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/LocationDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/LocationDto.java index 742c471f1c8..6b356ca52df 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/LocationDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/LocationDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/SimpleValueDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/SimpleValueDto.java index 5ea0f373232..fceefeb304d 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/SimpleValueDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/SimpleValueDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/StackFrameDumpDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/StackFrameDumpDto.java index 47aa3c069ac..bac345d0f76 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/StackFrameDumpDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/StackFrameDumpDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/VariableDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/VariableDto.java index a992fdd2932..a069a072a0a 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/VariableDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/VariableDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/VariablePathDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/VariablePathDto.java index 009a22c5b04..8048f9cf6c5 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/VariablePathDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/VariablePathDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/ActionDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/ActionDto.java index 9c01b07873e..2259b16d4ff 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/ActionDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/ActionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/ResumeActionDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/ResumeActionDto.java index 2f1d808a86c..2492052973e 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/ResumeActionDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/ResumeActionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StartActionDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StartActionDto.java index b44f0af31fa..14eb8867623 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StartActionDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StartActionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepIntoActionDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepIntoActionDto.java index 46ff0daa9c0..847f7ce31fb 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepIntoActionDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepIntoActionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepOutActionDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepOutActionDto.java index 6d5b17c7b37..10b8dfd93b7 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepOutActionDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepOutActionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepOverActionDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepOverActionDto.java index e35627b4ad9..201cee6e32c 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepOverActionDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/StepOverActionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/SuspendActionDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/SuspendActionDto.java index 79eff664e16..ecffcf3be0a 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/SuspendActionDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/action/SuspendActionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/BreakpointActivatedEventDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/BreakpointActivatedEventDto.java index 7bfc91a21b3..ac34798ea30 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/BreakpointActivatedEventDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/BreakpointActivatedEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/DebuggerEventDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/DebuggerEventDto.java index a954d9d47bd..9aaeb7d9eb4 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/DebuggerEventDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/DebuggerEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/DisconnectEventDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/DisconnectEventDto.java index 7d3b5294331..498f7a2b7e6 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/DisconnectEventDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/DisconnectEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/SuspendEventDto.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/SuspendEventDto.java index 947ee593d5b..cd5daee5172 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/SuspendEventDto.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/dto/event/SuspendEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.dto.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Breakpoint.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Breakpoint.java index 737b1e184fd..e1a7ebae92f 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Breakpoint.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Breakpoint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/DebugSession.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/DebugSession.java index ca92bdc0b7b..2c30f0db26e 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/DebugSession.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/DebugSession.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/DebuggerInfo.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/DebuggerInfo.java index a3d9e5aaeb6..e0f8f2b0866 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/DebuggerInfo.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/DebuggerInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Field.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Field.java index 2357f835736..159e506f76d 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Field.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Field.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Location.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Location.java index f9906d34b48..92c56d8434d 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Location.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Location.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/MutableVariable.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/MutableVariable.java index c4b90899baa..17920a39658 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/MutableVariable.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/MutableVariable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/SimpleValue.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/SimpleValue.java index 6800bc71f93..b5ee8631c49 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/SimpleValue.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/SimpleValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/StackFrameDump.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/StackFrameDump.java index 7546a903fcb..694082e18d2 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/StackFrameDump.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/StackFrameDump.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Variable.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Variable.java index 6f77e72f9b6..f327ca5a537 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Variable.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/Variable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/VariablePath.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/VariablePath.java index 7ae2cb7bee0..81de7d59640 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/VariablePath.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/VariablePath.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/Action.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/Action.java index 2a7ebea0fa3..0b5d31dbdcf 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/Action.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/Action.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/ResumeAction.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/ResumeAction.java index 10b005a96db..fe793461ed5 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/ResumeAction.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/ResumeAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StartAction.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StartAction.java index bf4f238d597..43b25d96960 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StartAction.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StartAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepIntoAction.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepIntoAction.java index ef1e8f17fab..405fb8992e9 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepIntoAction.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepIntoAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepOutAction.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepOutAction.java index da847f6174f..6076e1a7ae3 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepOutAction.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepOutAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepOverAction.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepOverAction.java index 035ef4a7b69..e45da6d6a34 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepOverAction.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/StepOverAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/SuspendAction.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/SuspendAction.java index 5a0290279b2..7346fcd0ecf 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/SuspendAction.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/action/SuspendAction.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/BreakpointActivatedEvent.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/BreakpointActivatedEvent.java index c8f24f8c766..b3d90af1fcf 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/BreakpointActivatedEvent.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/BreakpointActivatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/DebuggerEvent.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/DebuggerEvent.java index a8ba52f2a50..72319e4b83b 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/DebuggerEvent.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/DebuggerEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/DisconnectEvent.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/DisconnectEvent.java index b2ff9c8a2a5..3cab145eeed 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/DisconnectEvent.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/DisconnectEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/SuspendEvent.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/SuspendEvent.java index fce5268e8b6..060f48216ff 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/SuspendEvent.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/event/SuspendEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/BreakpointImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/BreakpointImpl.java index d203f19567a..cc532fe7410 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/BreakpointImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/BreakpointImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/DebugSessionImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/DebugSessionImpl.java index 2d389f5b555..2b4617cd8b0 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/DebugSessionImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/DebugSessionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/DebuggerInfoImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/DebuggerInfoImpl.java index b4792012550..4c67dd47486 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/DebuggerInfoImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/DebuggerInfoImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/FieldImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/FieldImpl.java index e6c7e441965..5a714673d7b 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/FieldImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/FieldImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/LocationImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/LocationImpl.java index 01c00243437..ece8b384ebc 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/LocationImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/LocationImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/MutableVariableImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/MutableVariableImpl.java index dd9e05ac701..6d09cfd9167 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/MutableVariableImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/MutableVariableImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/SimpleValueImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/SimpleValueImpl.java index 70f6d0a819f..1365f93cdc4 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/SimpleValueImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/SimpleValueImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/StackFrameDumpImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/StackFrameDumpImpl.java index 0e626e8706b..d55c8354cd0 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/StackFrameDumpImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/StackFrameDumpImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/VariableImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/VariableImpl.java index 7e1bfcb0a54..2c2cce81ed9 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/VariableImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/VariableImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/VariablePathImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/VariablePathImpl.java index e329e8e2ae8..7b112b5ee16 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/VariablePathImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/VariablePathImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/ActionImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/ActionImpl.java index 21c80b1b428..4911ee53357 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/ActionImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/ActionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/ResumeActionImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/ResumeActionImpl.java index 7bb5de73d08..44da88db02b 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/ResumeActionImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/ResumeActionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StartActionImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StartActionImpl.java index e32db9c0cd5..cf05824364a 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StartActionImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StartActionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepIntoActionImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepIntoActionImpl.java index a5b817d5b21..9de44e4857c 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepIntoActionImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepIntoActionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepOutActionImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepOutActionImpl.java index 46419736436..b7527261177 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepOutActionImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepOutActionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepOverActionImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepOverActionImpl.java index e62bc2a64e8..c426bb3e48d 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepOverActionImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/StepOverActionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/SuspendActionImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/SuspendActionImpl.java index 66de755c497..6279fce6e38 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/SuspendActionImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/action/SuspendActionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.action; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/BreakpointActivatedEventImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/BreakpointActivatedEventImpl.java index b987ab8b387..ddc3735db3a 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/BreakpointActivatedEventImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/BreakpointActivatedEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/DebuggerEventImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/DebuggerEventImpl.java index ea3756714bd..255aa9e3ef1 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/DebuggerEventImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/DebuggerEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/DisconnectEventImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/DisconnectEventImpl.java index 82bff985c94..800624a311e 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/DisconnectEventImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/DisconnectEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.event; diff --git a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/SuspendEventImpl.java b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/SuspendEventImpl.java index dcd6bc185dc..f7336cba431 100644 --- a/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/SuspendEventImpl.java +++ b/wsagent/che-core-api-debug-shared/src/main/java/org/eclipse/che/api/debug/shared/model/impl/event/SuspendEventImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debug.shared.model.impl.event; diff --git a/wsagent/che-core-api-debug/pom.xml b/wsagent/che-core-api-debug/pom.xml index b6b4e8fb34e..46ffeefba24 100644 --- a/wsagent/che-core-api-debug/pom.xml +++ b/wsagent/che-core-api-debug/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/Debugger.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/Debugger.java index bfa1df10eb3..6ddb87f6e00 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/Debugger.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/Debugger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerActionProvider.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerActionProvider.java index 3b4d9f99978..93c68f541b2 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerActionProvider.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerActionProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerFactory.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerFactory.java index a0267236a10..db9877a3c46 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerFactory.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerJsonRpcMessenger.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerJsonRpcMessenger.java index 055e98c52d9..527928a5144 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerJsonRpcMessenger.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerJsonRpcMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerManager.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerManager.java index 9d55396cf15..4ad837b5325 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerManager.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerMessage.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerMessage.java index 5efa17c16fa..f95e81b26c3 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerMessage.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerMessage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerModule.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerModule.java index 26ec0e4ec93..06d0af86d3f 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerModule.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerService.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerService.java index 479ba30c549..914afe32e7e 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerService.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerWebSocketMessenger.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerWebSocketMessenger.java index 6ec4ee7c551..c471cb00676 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerWebSocketMessenger.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DebuggerWebSocketMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DtoConverter.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DtoConverter.java index e6846f35211..9e6f0486a46 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DtoConverter.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/exceptions/DebuggerException.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/exceptions/DebuggerException.java index af08700eb24..6b061b02cd9 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/exceptions/DebuggerException.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/exceptions/DebuggerException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server.exceptions; diff --git a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/exceptions/DebuggerNotFoundException.java b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/exceptions/DebuggerNotFoundException.java index 59204b6317e..f4f9399ea69 100644 --- a/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/exceptions/DebuggerNotFoundException.java +++ b/wsagent/che-core-api-debug/src/main/java/org/eclipse/che/api/debugger/server/exceptions/DebuggerNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.debugger.server.exceptions; diff --git a/wsagent/che-core-api-git-shared/pom.xml b/wsagent/che-core-api-git-shared/pom.xml index 1ddbdba0cc6..961bcb67b73 100644 --- a/wsagent/che-core-api-git-shared/pom.xml +++ b/wsagent/che-core-api-git-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/AddRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/AddRequest.java index f09c41e182c..b8137907470 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/AddRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/AddRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Branch.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Branch.java index 3a6e494bf23..bcb40ec83b5 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Branch.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Branch.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/BranchCreateRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/BranchCreateRequest.java index dc81efaea59..9ccb383a05f 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/BranchCreateRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/BranchCreateRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/BranchListMode.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/BranchListMode.java index f52b10d71a1..22a4aa842e8 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/BranchListMode.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/BranchListMode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CheckoutRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CheckoutRequest.java index 6500c6b5a97..03842f9c279 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CheckoutRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CheckoutRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CloneRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CloneRequest.java index cdd448ee306..7ddacb85fe0 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CloneRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CloneRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CommitRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CommitRequest.java index c8a8eb29679..35761da14cd 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CommitRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/CommitRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Commiters.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Commiters.java index 15d3882b836..811d5ea23d8 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Commiters.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Commiters.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ConfigRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ConfigRequest.java index ca5c31fbe92..3b3f93f3811 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ConfigRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ConfigRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ConflictExceptionError.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ConflictExceptionError.java index 2571942f52e..3e035260794 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ConflictExceptionError.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ConflictExceptionError.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Constants.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Constants.java index 9fb5bbf06a0..76862a15e1b 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Constants.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/DiffCommitFile.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/DiffCommitFile.java index 83f6c85e147..b29938be388 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/DiffCommitFile.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/DiffCommitFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/DiffType.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/DiffType.java index a9fdb9550c6..6ca193fdec4 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/DiffType.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/DiffType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/FetchRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/FetchRequest.java index ae827ad4558..c353814ed80 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/FetchRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/FetchRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitCheckoutEvent.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitCheckoutEvent.java index 680c67c9b7a..6a2aeadf149 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitCheckoutEvent.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitCheckoutEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitUrlVendorInfo.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitUrlVendorInfo.java index a3917f8e15a..43c61ebf281 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitUrlVendorInfo.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitUrlVendorInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitUser.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitUser.java index 2284e162ddc..f04972b57e7 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitUser.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/GitUser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/IndexFile.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/IndexFile.java index 439a11e0d44..66ec720023f 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/IndexFile.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/IndexFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Log.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Log.java index aaf79c2bd86..6032cd6a3b0 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Log.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Log.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/LogResponse.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/LogResponse.java index 59fcddb3492..c89e679ad6c 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/LogResponse.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/LogResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MergeRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MergeRequest.java index 46883871914..33fa6d8b6ac 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MergeRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MergeRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MergeResult.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MergeResult.java index 7ae5e8b3c53..e9385daa050 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MergeResult.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MergeResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MoveRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MoveRequest.java index 08216e252ae..14356fc8bff 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MoveRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/MoveRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ProviderInfo.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ProviderInfo.java index ef37690c866..9385fb1c051 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ProviderInfo.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ProviderInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PullRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PullRequest.java index 5ee3b87622c..36bfec6f9ad 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PullRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PullRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PullResponse.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PullResponse.java index a23e2404c19..b8b8d63a1db 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PullResponse.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PullResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PushRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PushRequest.java index 54572d7a1b3..f7453cf65c4 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PushRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PushRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PushResponse.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PushResponse.java index 751d69d76a6..c1863610ecd 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PushResponse.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/PushResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RebaseRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RebaseRequest.java index 5fdebaee471..7c19058e23a 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RebaseRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RebaseRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RebaseResponse.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RebaseResponse.java index 3b37965a970..3050cda7eeb 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RebaseResponse.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RebaseResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Remote.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Remote.java index c1619a7e260..04628c5b439 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Remote.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Remote.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteAddRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteAddRequest.java index 6043ccd8307..da7ac6993dc 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteAddRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteAddRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteReference.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteReference.java index 9703df99978..d49d32ab1d4 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteReference.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteReference.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteUpdateRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteUpdateRequest.java index 38812d2e56c..65aea7af4d8 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteUpdateRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RemoteUpdateRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RepoInfo.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RepoInfo.java index 2ef869f3b93..1d823522ab3 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RepoInfo.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RepoInfo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ResetRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ResetRequest.java index cc17c24845c..2b1e62311dc 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ResetRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ResetRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Revision.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Revision.java index 431c20b5c0d..11608df6c92 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Revision.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Revision.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RmRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RmRequest.java index 5a60c1f76e2..e5930d3b8d7 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RmRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/RmRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ShowFileContentResponse.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ShowFileContentResponse.java index 7eb06984523..44867d206bf 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ShowFileContentResponse.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/ShowFileContentResponse.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Status.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Status.java index d34f72f21a3..e61e87455e2 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Status.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Status.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/StatusFormat.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/StatusFormat.java index 9b0cdbb12f9..b654ba31833 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/StatusFormat.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/StatusFormat.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Tag.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Tag.java index e5acfbbbbe7..cec5d96b616 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Tag.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/Tag.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/TagCreateRequest.java b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/TagCreateRequest.java index dadfdcc9da6..7bf82818a5b 100644 --- a/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/TagCreateRequest.java +++ b/wsagent/che-core-api-git-shared/src/main/java/org/eclipse/che/api/git/shared/TagCreateRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.shared; diff --git a/wsagent/che-core-api-git/pom.xml b/wsagent/che-core-api-git/pom.xml index 886773a99b3..44eee90d26c 100644 --- a/wsagent/che-core-api-git/pom.xml +++ b/wsagent/che-core-api-git/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/BranchListWriter.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/BranchListWriter.java index 53d357d9d5d..5a46ac5caa7 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/BranchListWriter.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/BranchListWriter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CommitMessageWriter.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CommitMessageWriter.java index 2a5fcf687b5..28c6538ae12 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CommitMessageWriter.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CommitMessageWriter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/Config.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/Config.java index ef11aff1678..48e89619dd1 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/Config.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/Config.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CredentialsLoader.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CredentialsLoader.java index 8acb07a334f..fa91706f162 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CredentialsLoader.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CredentialsLoader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CredentialsProvider.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CredentialsProvider.java index 5db389cb5cb..d2b99d0796c 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CredentialsProvider.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/CredentialsProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/DiffPage.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/DiffPage.java index b1c7b988beb..cbda217eb55 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/DiffPage.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/DiffPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitBasicAuthenticationCredentialsProvider.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitBasicAuthenticationCredentialsProvider.java index 502670c9de5..4dda877ead9 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitBasicAuthenticationCredentialsProvider.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitBasicAuthenticationCredentialsProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitCheckoutDetector.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitCheckoutDetector.java index 415c71b9794..59aecc03407 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitCheckoutDetector.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitCheckoutDetector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConfigurationChecker.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConfigurationChecker.java index 9654d566ff8..fa2e9f36456 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConfigurationChecker.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConfigurationChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConnection.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConnection.java index 8599330d0fb..d18cf80a370 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConnection.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConnection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConnectionFactory.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConnectionFactory.java index 63c711e8733..d27b959f652 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConnectionFactory.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitConnectionFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitExceptionMapper.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitExceptionMapper.java index c9c26fb911c..3e25873a9b2 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitExceptionMapper.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitExceptionMapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitJsonRpcMessenger.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitJsonRpcMessenger.java index 75074c936d4..67977144e6a 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitJsonRpcMessenger.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitJsonRpcMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitModule.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitModule.java index a27664b76a3..94fbb3724d4 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitModule.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitProjectImporter.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitProjectImporter.java index 7c7f85ff099..0f2d95b9224 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitProjectImporter.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitProjectImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitProjectType.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitProjectType.java index 409a8f770d1..cff91750e4c 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitProjectType.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitService.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitService.java index 481ef0b3ff3..3e85ff39a77 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitService.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitUrlUtils.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitUrlUtils.java index 35de5872d5b..eca9b215096 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitUrlUtils.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitUrlUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitUserResolver.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitUserResolver.java index ff4e342635c..133e2aab8ff 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitUserResolver.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitUserResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitValueProviderFactory.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitValueProviderFactory.java index dd183cb1b02..87b273bb1a5 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitValueProviderFactory.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitValueProviderFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitWebSocketMessenger.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitWebSocketMessenger.java index c8ce8ca03f8..f01bcc27ffa 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitWebSocketMessenger.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/GitWebSocketMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/InfoPage.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/InfoPage.java index ec868e42fb2..ba8aff11cd3 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/InfoPage.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/InfoPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/LocalGitUserResolver.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/LocalGitUserResolver.java index 8beec796024..463ac3ec723 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/LocalGitUserResolver.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/LocalGitUserResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/LogPage.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/LogPage.java index 34e4066debe..a22443e2b62 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/LogPage.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/LogPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/MergeResultWriter.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/MergeResultWriter.java index 7146838fe02..eadf2589ff6 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/MergeResultWriter.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/MergeResultWriter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/RemoteListWriter.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/RemoteListWriter.java index 516e1e87cf4..5da25e761f3 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/RemoteListWriter.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/RemoteListWriter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/StatusPageWriter.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/StatusPageWriter.java index d93aa10ce21..85b1d739efa 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/StatusPageWriter.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/StatusPageWriter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/TagListWriter.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/TagListWriter.java index d9902950e63..052be1f9b35 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/TagListWriter.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/TagListWriter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/UserCredential.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/UserCredential.java index d6005bc6f94..3f2cee23107 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/UserCredential.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/UserCredential.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitConflictException.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitConflictException.java index 12ff9404d67..feeb89c80d7 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitConflictException.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitConflictException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.exception; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitException.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitException.java index 1011078aff0..fcf9174b27b 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitException.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.exception; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitInvalidRefNameException.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitInvalidRefNameException.java index a6a4ca584eb..258316cf8ae 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitInvalidRefNameException.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitInvalidRefNameException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.exception; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitRefAlreadyExistsException.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitRefAlreadyExistsException.java index 4983c8e4e31..cac1c4f3b34 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitRefAlreadyExistsException.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitRefAlreadyExistsException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.exception; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitRefNotFoundException.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitRefNotFoundException.java index 0b0df03d820..e5eb5aa4c73 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitRefNotFoundException.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/exception/GitRefNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.exception; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/AddParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/AddParams.java index bf63257e707..34b30693202 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/AddParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/AddParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CheckoutParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CheckoutParams.java index f853905ae5f..b899fe84bfe 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CheckoutParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CheckoutParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CloneParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CloneParams.java index f748b785c0f..d63a4bb3e19 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CloneParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CloneParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CommitParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CommitParams.java index 05b02a7d79f..2919693a943 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CommitParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/CommitParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/DiffParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/DiffParams.java index 9a3a06e3284..585960fa219 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/DiffParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/DiffParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/FetchParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/FetchParams.java index 0a4c6423b2a..29178584621 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/FetchParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/FetchParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/LogParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/LogParams.java index 1794239c6c0..083eef627c7 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/LogParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/LogParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/LsFilesParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/LsFilesParams.java index fb313ac8541..856a21b0b10 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/LsFilesParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/LsFilesParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/PullParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/PullParams.java index cd4804875bf..40a57549f2f 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/PullParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/PullParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/PushParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/PushParams.java index ca2f275f2ec..343d2afa1bf 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/PushParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/PushParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RemoteAddParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RemoteAddParams.java index a5c059e28a1..54d2022e820 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RemoteAddParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RemoteAddParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RemoteUpdateParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RemoteUpdateParams.java index 9adbd2b4cac..263dbe01955 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RemoteUpdateParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RemoteUpdateParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/ResetParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/ResetParams.java index e8697d67e13..417d272804f 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/ResetParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/ResetParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RmParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RmParams.java index 490a5522e40..da6839307bd 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RmParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/RmParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/TagCreateParams.java b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/TagCreateParams.java index 1de7e9c2fdf..16246363e6a 100644 --- a/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/TagCreateParams.java +++ b/wsagent/che-core-api-git/src/main/java/org/eclipse/che/api/git/params/TagCreateParams.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git.params; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/GitConfigurationCheckerTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/GitConfigurationCheckerTest.java index 85d1489eec3..7843fbfd01b 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/GitConfigurationCheckerTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/GitConfigurationCheckerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/GitUrlUtilsTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/GitUrlUtilsTest.java index edd9fa009f1..cbc9ec4cdef 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/GitUrlUtilsTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/GitUrlUtilsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.git; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/LocalGitUserResolverTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/LocalGitUserResolverTest.java index 0df81f12394..457b81fdd50 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/LocalGitUserResolverTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/api/git/LocalGitUserResolverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ /******************************************************************************* + * Copyright (c) 2012-2017 Codenvy, S.A. diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/AddTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/AddTest.java index ea9d5b79db4..21ebf950fba 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/AddTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/AddTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/BranchCreateTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/BranchCreateTest.java index eaf25b4028b..3f18df37150 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/BranchCreateTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/BranchCreateTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/BranchDeleteTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/BranchDeleteTest.java index 6e63c0210f6..68615aa1b28 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/BranchDeleteTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/BranchDeleteTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CheckoutTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CheckoutTest.java index 26331d7c721..10d06780d9f 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CheckoutTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CheckoutTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CloneTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CloneTest.java index 246ee4671ee..a9a74cca241 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CloneTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CloneTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CommitTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CommitTest.java index 9549f5ad577..f467dcb663a 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CommitTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/CommitTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ConfigTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ConfigTest.java index c908ed48194..eb3c6f18277 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ConfigTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ConfigTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/DiffTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/DiffTest.java index 2b7e78eaa5a..d0967ee0824 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/DiffTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/DiffTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/FetchTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/FetchTest.java index 6bf0cdaacaa..6d6d283ce06 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/FetchTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/FetchTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GetCommitersTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GetCommitersTest.java index 440fa19ccd0..661ca8cd81b 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GetCommitersTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GetCommitersTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GitConnectionFactoryProvider.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GitConnectionFactoryProvider.java index e8fdac8a695..b301e1d360d 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GitConnectionFactoryProvider.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GitConnectionFactoryProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GitTestUtil.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GitTestUtil.java index 1bed63ebdf7..15f8eaae9d7 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GitTestUtil.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/GitTestUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/InitTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/InitTest.java index c28833337bf..fdec9e22a6a 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/InitTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/InitTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/IsInsideWorkTreeTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/IsInsideWorkTreeTest.java index ea8dd96168a..14de3b91282 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/IsInsideWorkTreeTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/IsInsideWorkTreeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/LogTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/LogTest.java index 12090b9876a..069e6befff1 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/LogTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/LogTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/LsRemoteTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/LsRemoteTest.java index 824b69acb6a..676c53b90e7 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/LsRemoteTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/LsRemoteTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/MergeTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/MergeTest.java index 3f7e793098b..1afea03cf38 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/MergeTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/MergeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/PullTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/PullTest.java index 5b804408ab7..6f6e54ac0a6 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/PullTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/PullTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/PushTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/PushTest.java index 6e8f8563267..6c91665f5a9 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/PushTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/PushTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteAddTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteAddTest.java index 2c4bcb54c57..93d33296b13 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteAddTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteAddTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteDeleteTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteDeleteTest.java index 5bbaa306214..db0fbc8bf73 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteDeleteTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteDeleteTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteListTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteListTest.java index dd38ad359a4..53e40c67750 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteListTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteListTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteUpdateTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteUpdateTest.java index 1ae91736a21..f9e7adb58d0 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteUpdateTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoteUpdateTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoveTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoveTest.java index 58f65277df2..9e1dec1c4f5 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoveTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/RemoveTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ResetTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ResetTest.java index 2ea8242ca37..09fccadd03a 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ResetTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ResetTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ShowFileContentTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ShowFileContentTest.java index 39ca9e40428..32f90edd2a8 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ShowFileContentTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/ShowFileContentTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/StatusTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/StatusTest.java index bc0913d2646..ffa3090d353 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/StatusTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/StatusTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagCreateTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagCreateTest.java index fdc14f7bb17..484fa2f1cac 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagCreateTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagCreateTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagDeleteTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagDeleteTest.java index a42d1e5a0ea..58896547253 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagDeleteTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagDeleteTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagListTest.java b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagListTest.java index 52e3526088c..45db9f502bf 100644 --- a/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagListTest.java +++ b/wsagent/che-core-api-git/src/test/java/org/eclipse/che/git/impl/TagListTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-api-languageserver-maven-plugin/pom.xml b/wsagent/che-core-api-languageserver-maven-plugin/pom.xml index 03cc63652cb..aaf0e837f33 100644 --- a/wsagent/che-core-api-languageserver-maven-plugin/pom.xml +++ b/wsagent/che-core-api-languageserver-maven-plugin/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-languageserver-maven-plugin/src/main/java/org/eclipse/che/api/languageserver/maven/plugin/DtoGeneratorMojo.java b/wsagent/che-core-api-languageserver-maven-plugin/src/main/java/org/eclipse/che/api/languageserver/maven/plugin/DtoGeneratorMojo.java index ff490cb0cc1..691d6bb75ad 100644 --- a/wsagent/che-core-api-languageserver-maven-plugin/src/main/java/org/eclipse/che/api/languageserver/maven/plugin/DtoGeneratorMojo.java +++ b/wsagent/che-core-api-languageserver-maven-plugin/src/main/java/org/eclipse/che/api/languageserver/maven/plugin/DtoGeneratorMojo.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.maven.plugin; diff --git a/wsagent/che-core-api-languageserver-shared/pom.xml b/wsagent/che-core-api-languageserver-shared/pom.xml index d9ebff86678..b845cc4046a 100644 --- a/wsagent/che-core-api-languageserver-shared/pom.xml +++ b/wsagent/che-core-api-languageserver-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/ProjectLangugageKey.java b/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/ProjectLangugageKey.java index 1ae0b089eb6..6418fa91707 100644 --- a/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/ProjectLangugageKey.java +++ b/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/ProjectLangugageKey.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.shared; diff --git a/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/event/LanguageServerInitializeEvent.java b/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/event/LanguageServerInitializeEvent.java index a1a17e66aef..875c6ec63a5 100644 --- a/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/event/LanguageServerInitializeEvent.java +++ b/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/event/LanguageServerInitializeEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.shared.event; diff --git a/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/model/LanguageDescription.java b/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/model/LanguageDescription.java index 322e8252328..b6478794e0b 100644 --- a/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/model/LanguageDescription.java +++ b/wsagent/che-core-api-languageserver-shared/src/main/java/org/eclipse/che/api/languageserver/shared/model/LanguageDescription.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.shared.model; diff --git a/wsagent/che-core-api-languageserver/pom.xml b/wsagent/che-core-api-languageserver/pom.xml index bc70778b200..789d29541d7 100644 --- a/wsagent/che-core-api-languageserver/pom.xml +++ b/wsagent/che-core-api-languageserver/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/LanguageServerModule.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/LanguageServerModule.java index d777c197eda..23f5c77fa3f 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/LanguageServerModule.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/LanguageServerModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/exception/LanguageServerException.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/exception/LanguageServerException.java index 19ab7a3ed8b..7b209144930 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/exception/LanguageServerException.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/exception/LanguageServerException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.exception; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/launcher/LanguageServerLauncher.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/launcher/LanguageServerLauncher.java index 8712f71877b..3d778b87897 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/launcher/LanguageServerLauncher.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/launcher/LanguageServerLauncher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.launcher; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/launcher/LanguageServerLauncherTemplate.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/launcher/LanguageServerLauncherTemplate.java index 273a724b6a3..4ae86c380a1 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/launcher/LanguageServerLauncherTemplate.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/launcher/LanguageServerLauncherTemplate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.launcher; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/messager/PublishDiagnosticsParamsJsonRpcTransmitter.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/messager/PublishDiagnosticsParamsJsonRpcTransmitter.java index 00e7b048953..852d8ead838 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/messager/PublishDiagnosticsParamsJsonRpcTransmitter.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/messager/PublishDiagnosticsParamsJsonRpcTransmitter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.messager; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/messager/ShowMessageJsonRpcTransmitter.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/messager/ShowMessageJsonRpcTransmitter.java index 8df5c6ea5f0..b48d2ba0dd0 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/messager/ShowMessageJsonRpcTransmitter.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/messager/ShowMessageJsonRpcTransmitter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.messager; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/InitializedLanguageServer.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/InitializedLanguageServer.java index e50694efbdd..209cd005f28 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/InitializedLanguageServer.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/InitializedLanguageServer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistry.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistry.java index 798ee1c60cb..95831a30fef 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistry.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistryImpl.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistryImpl.java index 97e1b42bf78..18f6ad578ed 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistryImpl.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializer.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializer.java index f1c557fae98..d84b0ada545 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializer.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerImpl.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerImpl.java index 1580701e7c2..a317da24c1f 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerImpl.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerObservable.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerObservable.java index 681c1a98fca..8fb955205bd 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerObservable.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerObservable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerObserver.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerObserver.java index 6da7f252d9f..31c551d8be7 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerObserver.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/registry/ServerInitializerObserver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageRegistryService.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageRegistryService.java index 89caf75dfab..9af01dafcc8 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageRegistryService.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageRegistryService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.service; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageServerInitializationHandler.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageServerInitializationHandler.java index f814f2b15a8..e9b4aaaae60 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageServerInitializationHandler.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageServerInitializationHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.service; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageServiceUtils.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageServiceUtils.java index 6abf0cfd485..1382a86c21b 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageServiceUtils.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/LanguageServiceUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.service; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/TextDocumentService.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/TextDocumentService.java index 9e625924af2..ffadb485286 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/TextDocumentService.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/TextDocumentService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.service; diff --git a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/WorkspaceService.java b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/WorkspaceService.java index c09e2f74738..e71d8df628d 100644 --- a/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/WorkspaceService.java +++ b/wsagent/che-core-api-languageserver/src/main/java/org/eclipse/che/api/languageserver/service/WorkspaceService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.service; diff --git a/wsagent/che-core-api-languageserver/src/test/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistryImplTest.java b/wsagent/che-core-api-languageserver/src/test/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistryImplTest.java index 00f6c7c4658..360f9f742c7 100644 --- a/wsagent/che-core-api-languageserver/src/test/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistryImplTest.java +++ b/wsagent/che-core-api-languageserver/src/test/java/org/eclipse/che/api/languageserver/registry/LanguageServerRegistryImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/test/java/org/eclipse/che/api/languageserver/registry/ServerInitializerImplTest.java b/wsagent/che-core-api-languageserver/src/test/java/org/eclipse/che/api/languageserver/registry/ServerInitializerImplTest.java index d4fe1c72df3..016198d4fcd 100644 --- a/wsagent/che-core-api-languageserver/src/test/java/org/eclipse/che/api/languageserver/registry/ServerInitializerImplTest.java +++ b/wsagent/che-core-api-languageserver/src/test/java/org/eclipse/che/api/languageserver/registry/ServerInitializerImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.languageserver.registry; diff --git a/wsagent/che-core-api-languageserver/src/test/resources/logback-test.xml b/wsagent/che-core-api-languageserver/src/test/resources/logback-test.xml index fe0f22d1e39..e947ae78528 100644 --- a/wsagent/che-core-api-languageserver/src/test/resources/logback-test.xml +++ b/wsagent/che-core-api-languageserver/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-oauth/pom.xml b/wsagent/che-core-api-oauth/pom.xml index d50da0ef7aa..d674ab16e6d 100644 --- a/wsagent/che-core-api-oauth/pom.xml +++ b/wsagent/che-core-api-oauth/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/OAuthAgentModule.java b/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/OAuthAgentModule.java index 3e56a0a5828..e84c9bd082c 100644 --- a/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/OAuthAgentModule.java +++ b/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/OAuthAgentModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/RemoteOAuthTokenProvider.java b/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/RemoteOAuthTokenProvider.java index 3bdf446da57..5e52c5d766a 100644 --- a/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/RemoteOAuthTokenProvider.java +++ b/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/RemoteOAuthTokenProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/oauth1/RemoteOAuthAuthorizationHeaderProvider.java b/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/oauth1/RemoteOAuthAuthorizationHeaderProvider.java index 4a6aa041af4..785eb596387 100644 --- a/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/oauth1/RemoteOAuthAuthorizationHeaderProvider.java +++ b/wsagent/che-core-api-oauth/src/main/java/org/eclipse/che/security/oauth/oauth1/RemoteOAuthAuthorizationHeaderProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth.oauth1; diff --git a/wsagent/che-core-api-oauth/src/test/java/org/eclipse/che/security/oauth/RemoteOAuthTokenProviderTest.java b/wsagent/che-core-api-oauth/src/test/java/org/eclipse/che/security/oauth/RemoteOAuthTokenProviderTest.java index 1adab3ddf78..da405079fcf 100644 --- a/wsagent/che-core-api-oauth/src/test/java/org/eclipse/che/security/oauth/RemoteOAuthTokenProviderTest.java +++ b/wsagent/che-core-api-oauth/src/test/java/org/eclipse/che/security/oauth/RemoteOAuthTokenProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsagent/che-core-api-oauth/src/test/resources/logback-test.xml b/wsagent/che-core-api-oauth/src/test/resources/logback-test.xml index 2a7fd9851a8..26f112f15b5 100644 --- a/wsagent/che-core-api-oauth/src/test/resources/logback-test.xml +++ b/wsagent/che-core-api-oauth/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-project-shared/pom.xml b/wsagent/che-core-api-project-shared/pom.xml index 1d4b64cbe7e..1ea56afc20f 100644 --- a/wsagent/che-core-api-project-shared/pom.xml +++ b/wsagent/che-core-api-project-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/Constants.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/Constants.java index d2b7489bb77..e53ebcafe1a 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/Constants.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/ImportProgressRecord.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/ImportProgressRecord.java index 695d1e5d02c..8f08febb530 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/ImportProgressRecord.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/ImportProgressRecord.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/AttributeDescriptor.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/AttributeDescriptor.java index 5000c55772a..5e21907bb04 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/AttributeDescriptor.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/AttributeDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/AttributeDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/AttributeDto.java index 880e850d9dd..3ea835b8ae6 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/AttributeDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/AttributeDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/CopyOptions.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/CopyOptions.java index 2203203e5a4..0b17faa9684 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/CopyOptions.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/CopyOptions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/EditorChangesDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/EditorChangesDto.java index 3dc7ca16b92..4e2d94db27b 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/EditorChangesDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/EditorChangesDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/GeneratorDescription.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/GeneratorDescription.java index 7a10e3948c8..5ff1d082000 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/GeneratorDescription.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/GeneratorDescription.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ImportProgressRecordDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ImportProgressRecordDto.java index 788ae1bc80e..51587540331 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ImportProgressRecordDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ImportProgressRecordDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ItemReference.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ItemReference.java index cd566d5ad94..584250d8b45 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ItemReference.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ItemReference.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/MoveOptions.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/MoveOptions.java index f561ed4cc4d..683f726a9e3 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/MoveOptions.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/MoveOptions.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectImporterData.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectImporterData.java index a9a0b557ba4..9a25d8d8fe4 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectImporterData.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectImporterData.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectImporterDescriptor.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectImporterDescriptor.java index 2c03b510488..c829c99f923 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectImporterDescriptor.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectImporterDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectSearchRequestDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectSearchRequestDto.java index a9356d87990..ad4bcb2f829 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectSearchRequestDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectSearchRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectSearchResponseDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectSearchResponseDto.java index 5137f4a6c82..b6838b439d6 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectSearchResponseDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectSearchResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectTypeDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectTypeDto.java index fd7ef46a8fb..db99737d65a 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectTypeDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectTypeDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectUpdate.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectUpdate.java index 840b9a1cc6e..1cc6c433a1b 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectUpdate.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ProjectUpdate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ServerError.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ServerError.java index 788a5d6cac7..d563e27b288 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ServerError.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ServerError.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/SourceEstimation.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/SourceEstimation.java index e7dc7c8ec33..aba00f48c5e 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/SourceEstimation.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/SourceEstimation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/TreeElement.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/TreeElement.java index 62b7b979eef..d9d22b1b49b 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/TreeElement.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/TreeElement.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ValueDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ValueDto.java index 20245fdf9ae..a949ca061ac 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ValueDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/ValueDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileStateUpdateDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileStateUpdateDto.java index 7a59ee792b6..bf6ef850147 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileStateUpdateDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileStateUpdateDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto.event; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileTrackingOperationDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileTrackingOperationDto.java index f30fb437fce..2a98cfe5b76 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileTrackingOperationDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileTrackingOperationDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto.event; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileWatcherEventType.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileWatcherEventType.java index 937232d4b06..71ea6f1a146 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileWatcherEventType.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/FileWatcherEventType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto.event; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/GitCheckoutEventDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/GitCheckoutEventDto.java index 2e771575b08..1285835ff71 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/GitCheckoutEventDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/GitCheckoutEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto.event; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/PomModifiedEventDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/PomModifiedEventDto.java index 2b641f93fcb..54b03e6d9a1 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/PomModifiedEventDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/PomModifiedEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto.event; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/ProjectTreeStateUpdateDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/ProjectTreeStateUpdateDto.java index 538436b8036..a8d02f25a77 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/ProjectTreeStateUpdateDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/ProjectTreeStateUpdateDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto.event; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/ProjectTreeTrackingOperationDto.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/ProjectTreeTrackingOperationDto.java index a5fc56dfd0e..d53eba512f4 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/ProjectTreeTrackingOperationDto.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/ProjectTreeTrackingOperationDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto.event; diff --git a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/VfsWatchEvent.java b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/VfsWatchEvent.java index 0b80bce6e78..ad08f290553 100644 --- a/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/VfsWatchEvent.java +++ b/wsagent/che-core-api-project-shared/src/main/java/org/eclipse/che/api/project/shared/dto/event/VfsWatchEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.shared.dto.event; diff --git a/wsagent/che-core-api-project/pom.xml b/wsagent/che-core-api-project/pom.xml index efa7b66668a..e2efc6c3e06 100644 --- a/wsagent/che-core-api-project/pom.xml +++ b/wsagent/che-core-api-project/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/DtoConverter.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/DtoConverter.java index 4eed2eeebb3..79af4decfa6 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/DtoConverter.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorChangesTracker.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorChangesTracker.java index af0762bee54..fd3b6bb7c14 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorChangesTracker.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorChangesTracker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopy.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopy.java index 7c43806ae32..89fdd4960cd 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopy.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopyManager.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopyManager.java index bc889e0eea9..6ee4f71531c 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopyManager.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopyManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopyUpdatedEvent.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopyUpdatedEvent.java index a9707282f90..61da8cd5e43 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopyUpdatedEvent.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/EditorWorkingCopyUpdatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/FileEntry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/FileEntry.java index abb63793e68..eb4fd1345a8 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/FileEntry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/FileEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/FolderEntry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/FolderEntry.java index 4b3d3a8dccb..c0975fad686 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/FolderEntry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/FolderEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/HtmlErrorFormatter.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/HtmlErrorFormatter.java index 035bdeb3456..b8a15e46d91 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/HtmlErrorFormatter.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/HtmlErrorFormatter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/NewProjectConfigImpl.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/NewProjectConfigImpl.java index 10925d15792..9bd4aef0951 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/NewProjectConfigImpl.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/NewProjectConfigImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectApiModule.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectApiModule.java index 7de25fe9a7e..0fd498697f0 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectApiModule.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectApiModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectCreatedEvent.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectCreatedEvent.java index f629c1326b8..bf78a573514 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectCreatedEvent.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectCreatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectDeletedEvent.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectDeletedEvent.java index 69603abbed0..5876106b32d 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectDeletedEvent.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectDeletedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectManager.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectManager.java index b5c1e78e557..02c515abfc5 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectManager.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectOutputLineConsumerFactory.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectOutputLineConsumerFactory.java index 9cbe0b730a1..1adcc8aff36 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectOutputLineConsumerFactory.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectOutputLineConsumerFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectRegistry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectRegistry.java index 588c7b5efeb..8232f426a6d 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectRegistry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectService.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectService.java index bae28246bc0..994439f1f43 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectService.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectServiceLinksInjector.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectServiceLinksInjector.java index 11f620cb008..716ba12bfb1 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectServiceLinksInjector.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectServiceLinksInjector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectTypeService.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectTypeService.java index 34cd50fa61a..068236d21f2 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectTypeService.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectTypeService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectTypes.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectTypes.java index c8c81ebf47f..0280acc7366 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectTypes.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ProjectTypes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/RegisteredProject.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/RegisteredProject.java index 1f0c97b76b7..ece9336d1e3 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/RegisteredProject.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/RegisteredProject.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/VirtualFileEntry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/VirtualFileEntry.java index fb8deb351f0..bc4d36e7498 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/VirtualFileEntry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/VirtualFileEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/WorkspaceHolder.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/WorkspaceHolder.java index 4fa0e4fb411..f18257b1ac7 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/WorkspaceHolder.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/WorkspaceHolder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/WorkspaceProjectsSyncer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/WorkspaceProjectsSyncer.java index 2f70571383c..ea5f0524151 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/WorkspaceProjectsSyncer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/WorkspaceProjectsSyncer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ZipProjectImporter.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ZipProjectImporter.java index e3ea9646770..ea18f158356 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ZipProjectImporter.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/ZipProjectImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/CreateBaseProjectTypeHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/CreateBaseProjectTypeHandler.java index 879ac90ea5d..a03b024934e 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/CreateBaseProjectTypeHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/CreateBaseProjectTypeHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.handlers; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/CreateProjectHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/CreateProjectHandler.java index c02b83cb6f0..3398d7969cc 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/CreateProjectHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/CreateProjectHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.handlers; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/GetItemHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/GetItemHandler.java index 0b4959c8e1a..3060ce717ea 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/GetItemHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/GetItemHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.handlers; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/PostImportProjectHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/PostImportProjectHandler.java index 4e69800ee00..db7a3c6d310 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/PostImportProjectHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/PostImportProjectHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.handlers; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectHandler.java index b6786363805..5195b77e627 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.handlers; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectHandlerRegistry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectHandlerRegistry.java index b7485b0c071..7791d7e4c39 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectHandlerRegistry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectHandlerRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.handlers; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectInitHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectInitHandler.java index ee44ef900de..aeaf86d4f4f 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectInitHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/handlers/ProjectInitHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.handlers; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/BaseProjectImportOutputLineConsumer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/BaseProjectImportOutputLineConsumer.java index 0915bab0b92..f694ef7f197 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/BaseProjectImportOutputLineConsumer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/BaseProjectImportOutputLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcLineConsumer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcLineConsumer.java index 4ef0c688cf5..49ef2860771 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcLineConsumer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcRegistrar.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcRegistrar.java index 5d4c683adad..7a1f2642036 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcRegistrar.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcRegistrar.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputWSLineConsumer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputWSLineConsumer.java index d508590aeb8..8bf9231fc45 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputWSLineConsumer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputWSLineConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImporter.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImporter.java index 91ab37c181e..4cc0616b58f 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImporter.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImporter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImporterRegistry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImporterRegistry.java index 1ffa8ce4342..529b793ad9d 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImporterRegistry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImporterRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportersService.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportersService.java index 63530c1855e..ce27742a120 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportersService.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/importer/ProjectImportersService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/notification/ProjectItemModifiedEvent.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/notification/ProjectItemModifiedEvent.java index bb36675434b..2c42609f978 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/notification/ProjectItemModifiedEvent.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/notification/ProjectItemModifiedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.notification; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/notification/VfsWatchBroadcaster.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/notification/VfsWatchBroadcaster.java index c82a0c89c0d..226d7fa86b7 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/notification/VfsWatchBroadcaster.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/notification/VfsWatchBroadcaster.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.notification; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/AbstractAttribute.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/AbstractAttribute.java index f5ab077f36b..dbff02acdd9 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/AbstractAttribute.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/AbstractAttribute.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/AttributeValue.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/AttributeValue.java index e8b7672ef46..717ea289f67 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/AttributeValue.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/AttributeValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/BaseProjectType.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/BaseProjectType.java index 31d71b797ac..f3d829f922d 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/BaseProjectType.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/BaseProjectType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/Constant.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/Constant.java index 728d6613767..f79ab764693 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/Constant.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/Constant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/InitBaseProjectTypeHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/InitBaseProjectTypeHandler.java index 71ee6e87e39..caf5bddb726 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/InitBaseProjectTypeHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/InitBaseProjectTypeHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeConstraintException.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeConstraintException.java index d161712b4f8..fe95d3a25f4 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeConstraintException.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeConstraintException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeDef.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeDef.java index 71125b7e3a3..f6a701ec0cf 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeDef.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeDef.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeRegistry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeRegistry.java index 3ee83604390..683cb0e37f4 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeRegistry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeResolution.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeResolution.java index f160aae841c..3f939c7c23e 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeResolution.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ProjectTypeResolution.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ReadonlyValueProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ReadonlyValueProvider.java index b837b4b6bd1..e018ecc12b9 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ReadonlyValueProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ReadonlyValueProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/SettableValueProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/SettableValueProvider.java index 3ea66e71804..8e09b5f7101 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/SettableValueProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/SettableValueProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/TransientMixin.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/TransientMixin.java index 1fb5b88e178..74effeb982c 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/TransientMixin.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/TransientMixin.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueProvider.java index d596734b3d5..a3fc65c068d 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueProviderFactory.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueProviderFactory.java index c5ca9d363e3..3dc748c8bcf 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueProviderFactory.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueProviderFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueStorageException.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueStorageException.java index 4ee78b18e6e..1a881447a48 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueStorageException.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/ValueStorageException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/Variable.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/Variable.java index 6f0c9093ea0..6902e5b78c0 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/Variable.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/project/server/type/Variable.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/AbstractVirtualFileSystemProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/AbstractVirtualFileSystemProvider.java index dc2b842a63c..ffe90b1491b 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/AbstractVirtualFileSystemProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/AbstractVirtualFileSystemProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/Archiver.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/Archiver.java index f3b01622deb..08da29972fd 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/Archiver.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/Archiver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/ArchiverFactory.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/ArchiverFactory.java index 14ae2934f02..6cf5511431a 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/ArchiverFactory.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/ArchiverFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/HashSumsCounter.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/HashSumsCounter.java index 609a2968cc7..72fcaf16bc6 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/HashSumsCounter.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/HashSumsCounter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/LockedFileFinder.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/LockedFileFinder.java index d093e70cdd9..f42d3a7f579 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/LockedFileFinder.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/LockedFileFinder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/Path.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/Path.java index b878f1ac0c6..f575a67fa9e 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/Path.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/Path.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/PathLockFactory.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/PathLockFactory.java index 2ed89eac85b..01932fcd4e7 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/PathLockFactory.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/PathLockFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/TarArchiver.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/TarArchiver.java index 215ba2719db..3ee8593def4 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/TarArchiver.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/TarArchiver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFile.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFile.java index 71af1502af2..53f1f8f7556 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFile.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileFilter.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileFilter.java index 54754cfc899..b4217ec0009 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileFilter.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileFilters.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileFilters.java index 3556575f0ee..fbc7c3aea32 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileFilters.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileFilters.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileSystem.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileSystem.java index 9acad37af16..8f2ca75be66 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileSystem.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileSystem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileSystemProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileSystemProvider.java index f6bd99d120b..def2c2d9818 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileSystemProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileSystemProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileVisitor.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileVisitor.java index 51105db4a1d..0aaf0781d9e 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileVisitor.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/VirtualFileVisitor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/ZipArchiver.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/ZipArchiver.java index 59622ac633f..65312e547e1 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/ZipArchiver.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/ZipArchiver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/DataSerializer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/DataSerializer.java index bb33bc6ac3b..185ca2b9210 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/DataSerializer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/DataSerializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/DefaultFileWatcherNotificationHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/DefaultFileWatcherNotificationHandler.java index fa4126eb7f0..ff9ec6d0def 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/DefaultFileWatcherNotificationHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/DefaultFileWatcherNotificationHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileLock.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileLock.java index e96a0d264be..6dab95e0284 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileLock.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileLock.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileLockSerializer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileLockSerializer.java index 9595f970c94..7557e47a461 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileLockSerializer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileLockSerializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileMetadataSerializer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileMetadataSerializer.java index 0bad07c27be..420496156de 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileMetadataSerializer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileMetadataSerializer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcher.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcher.java index 31b34568bc1..a88f52ad2b4 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcher.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileWatcherNotificationHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileWatcherNotificationHandler.java index b42d7215b72..67a761da86a 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileWatcherNotificationHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileWatcherNotificationHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileWatcherNotificationListener.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileWatcherNotificationListener.java index 3ea4b7efaaa..af7be7c2729 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileWatcherNotificationListener.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/FileWatcherNotificationListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFile.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFile.java index edc02f7f675..94810288b5c 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFile.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystem.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystem.java index ada1946dc27..6e4921edb3c 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystem.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemProvider.java index 536f99e66e7..78c9c60f434 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/EditorFileOperationHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/EditorFileOperationHandler.java index 946e291de02..9b78434d5dd 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/EditorFileOperationHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/EditorFileOperationHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file.event.detectors; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/EditorFileTracker.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/EditorFileTracker.java index 935d69dc0ee..414fe4d0d82 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/EditorFileTracker.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/EditorFileTracker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file.event.detectors; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/FileTrackingOperationEvent.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/FileTrackingOperationEvent.java index 20842952b83..13ae21890c0 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/FileTrackingOperationEvent.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/FileTrackingOperationEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file.event.detectors; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/ProjectTreeTracker.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/ProjectTreeTracker.java index 186c348f410..f07e3a59863 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/ProjectTreeTracker.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/file/event/detectors/ProjectTreeTracker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file.event.detectors; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFile.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFile.java index ccefa481d67..fdd033fc928 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFile.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFile.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.memory; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystem.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystem.java index d12ba45776a..08c73491cb7 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystem.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystem.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.memory; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemProvider.java index 1bcf85080c8..616977798fb 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.memory; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/MediaTypeFilter.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/MediaTypeFilter.java index 4048c0ea4ba..9fefb92bed4 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/MediaTypeFilter.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/MediaTypeFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/QueryExpression.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/QueryExpression.java index 72e296ceb2e..f0f3c4a916c 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/QueryExpression.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/QueryExpression.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearchResult.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearchResult.java index 0cff0e1875b..f91c54b53d9 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearchResult.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearchResult.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearchResultEntry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearchResultEntry.java index a7fd4b5e4ad..3d1265a06b7 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearchResultEntry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearchResultEntry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/Searcher.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/Searcher.java index 77931adc272..b51c208f56a 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/Searcher.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/Searcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearcherProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearcherProvider.java index cf5ceef1e52..4f4105acc70 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearcherProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/SearcherProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/AbstractLuceneSearcherProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/AbstractLuceneSearcherProvider.java index c7093e5722c..71aa6d7a736 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/AbstractLuceneSearcherProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/AbstractLuceneSearcherProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcher.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcher.java index aef93134f2f..b7e272ff32e 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcher.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherProvider.java index d7cebd7f36a..60afe01cb57 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/LuceneSearcher.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/LuceneSearcher.java index 97d54aa53e0..46898e10a35 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/LuceneSearcher.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/LuceneSearcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcher.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcher.java index 90794a9216e..568646e5cc0 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcher.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherProvider.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherProvider.java index c58eaa2250c..77a88699f3f 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherProvider.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/DeleteOnCloseFileInputStream.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/DeleteOnCloseFileInputStream.java index bc978f7d80a..2d869d4103f 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/DeleteOnCloseFileInputStream.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/DeleteOnCloseFileInputStream.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.util; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/NotClosableInputStream.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/NotClosableInputStream.java index bb32e4deadd..ba7d6252b5b 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/NotClosableInputStream.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/NotClosableInputStream.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.util; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/ZipContent.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/ZipContent.java index 48461d3d429..135315ae36d 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/ZipContent.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/util/ZipContent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.util; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileTreeWalker.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileTreeWalker.java index 4f7950bbaf6..8941348a560 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileTreeWalker.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileTreeWalker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathMatcher.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathMatcher.java index 6914901be1e..babd9f98918 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathMatcher.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathMatcher.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathValue.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathValue.java index a7027422fb1..1365cf1abc9 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathValue.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathValue.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherEventHandler.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherEventHandler.java index 9b5893010ec..e1baa9874a8 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherEventHandler.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherEventHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherExcludePatternsRegistry.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherExcludePatternsRegistry.java index 55e2995d6a1..3db0dc9aec1 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherExcludePatternsRegistry.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherExcludePatternsRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherIgnoreFileTracker.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherIgnoreFileTracker.java index e2d08d8564b..d7547332c9d 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherIgnoreFileTracker.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherIgnoreFileTracker.java @@ -1,3 +1,13 @@ +/******************************************************************************* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + *******************************************************************************/ /******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherManager.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherManager.java index b67759c1329..e58d3c6e1a1 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherManager.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherOperation.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherOperation.java index 6625ad167eb..35de329168e 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherOperation.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherOperation.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherService.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherService.java index 99e091ffc54..e82ab044a88 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherService.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherUtils.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherUtils.java index d00e4d50181..3b233990f76 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherUtils.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/FileWatcherUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileCreateConsumer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileCreateConsumer.java index 045822c3ee7..75ad1bffbc8 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileCreateConsumer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileCreateConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileDeleteConsumer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileDeleteConsumer.java index ae6b8aead75..eb495824050 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileDeleteConsumer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileDeleteConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileUpdateConsumer.java b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileUpdateConsumer.java index 87e729169dd..d4465b69cfa 100644 --- a/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileUpdateConsumer.java +++ b/wsagent/che-core-api-project/src/main/java/org/eclipse/che/api/vfs/watcher/IndexedFileUpdateConsumer.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/BaseProjectTypeTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/BaseProjectTypeTest.java index 7c83a021f73..4017374901d 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/BaseProjectTypeTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/BaseProjectTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ExtensionCasesTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ExtensionCasesTest.java index 46973ede5e7..3ba9056698b 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ExtensionCasesTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ExtensionCasesTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectManagerReadTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectManagerReadTest.java index 3ee2e0b5566..289fb470e6e 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectManagerReadTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectManagerReadTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectManagerWriteTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectManagerWriteTest.java index af78be10f22..02e2889004c 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectManagerWriteTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectManagerWriteTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectServiceLinksInjectorTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectServiceLinksInjectorTest.java index 72b78f54933..b1cde9febad 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectServiceLinksInjectorTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectServiceLinksInjectorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectServiceTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectServiceTest.java index 405faf05066..2accade292f 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectServiceTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectTypesTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectTypesTest.java index a39e4b70a8c..94993ec240e 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectTypesTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/ProjectTypesTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/VfsWatcherTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/VfsWatcherTest.java index f8d5aa0ef96..4077c92f9b0 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/VfsWatcherTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/VfsWatcherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/WsAgentTestBase.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/WsAgentTestBase.java index a3ac4905f6a..68072259df5 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/WsAgentTestBase.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/WsAgentTestBase.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/handlers/CreateBaseProjectTypeHandlerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/handlers/CreateBaseProjectTypeHandlerTest.java index 1d7477c6dc9..a8c721e2b0c 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/handlers/CreateBaseProjectTypeHandlerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/handlers/CreateBaseProjectTypeHandlerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.handlers; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/importer/BaseProjectImportOutputLineConsumerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/importer/BaseProjectImportOutputLineConsumerTest.java index 99ed7136918..cbc444d75f7 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/importer/BaseProjectImportOutputLineConsumerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/importer/BaseProjectImportOutputLineConsumerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcLineConsumerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcLineConsumerTest.java index 3aba10838ce..2e1aefccdd6 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcLineConsumerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/importer/ProjectImportOutputJsonRpcLineConsumerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.importer; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/type/ProjectTypeTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/type/ProjectTypeTest.java index 5fcbfc34348..32ba79a4bee 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/type/ProjectTypeTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/project/server/type/ProjectTypeTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.type; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/ArchiverFactoryTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/ArchiverFactoryTest.java index 8b7e13448e9..59cd45a08f3 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/ArchiverFactoryTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/ArchiverFactoryTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/HashSumsCounterTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/HashSumsCounterTest.java index 442fa173a73..662a6eb8c2a 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/HashSumsCounterTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/HashSumsCounterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/LockedFileFinderTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/LockedFileFinderTest.java index c85142a0705..0a61cadd036 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/LockedFileFinderTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/LockedFileFinderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/PathLockFactoryTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/PathLockFactoryTest.java index df34a367072..e7183bf320e 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/PathLockFactoryTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/PathLockFactoryTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/PathTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/PathTest.java index 6de8588dd4e..d4c7cf6fa9e 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/PathTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/PathTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/TarArchiverTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/TarArchiverTest.java index 2b1dedab8db..b12c29b7791 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/TarArchiverTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/TarArchiverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/ZipArchiverTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/ZipArchiverTest.java index 759e309af04..5aa122e495d 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/ZipArchiverTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/ZipArchiverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/DefaultFileWatcherNotificationHandlerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/DefaultFileWatcherNotificationHandlerTest.java index 3702cf11fd1..8be42d01c78 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/DefaultFileWatcherNotificationHandlerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/DefaultFileWatcherNotificationHandlerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileLockSerializerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileLockSerializerTest.java index 3589909fd3b..131682504ab 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileLockSerializerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileLockSerializerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileMetadataSerializerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileMetadataSerializerTest.java index 71f0fd29955..a0133366a3f 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileMetadataSerializerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileMetadataSerializerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcherMassiveIoOperationTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcherMassiveIoOperationTest.java index a90a16208a8..e62f2c94030 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcherMassiveIoOperationTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcherMassiveIoOperationTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcherTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcherTest.java index b44f47136fd..eb8831ba597 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcherTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileTreeWatcherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileWatcherTestTree.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileWatcherTestTree.java index 037d00db24b..f5edb9ef5a0 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileWatcherTestTree.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/FileWatcherTestTree.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileAssertionHelper.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileAssertionHelper.java index 7c991ba45de..78be5c08781 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileAssertionHelper.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileAssertionHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemProviderTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemProviderTest.java index f5b50e77171..771f5542616 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemProviderTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemTest.java index 1cdddc0ded4..a0216750e50 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileSystemTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileTest.java index bcd3feb9261..f349657d396 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/file/LocalVirtualFileTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.file; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemProviderTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemProviderTest.java index cef439c8557..0023914352c 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemProviderTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.memory; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemTest.java index 0c5ba7a2502..febdf9d4c83 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileSystemTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.memory; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileTest.java index 633dfdeb821..b5b605f83de 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/impl/memory/MemoryVirtualFileTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.impl.memory; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/MediaTypeFilterTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/MediaTypeFilterTest.java index 1e2fe29f099..ed6966a1fd3 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/MediaTypeFilterTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/MediaTypeFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherProviderTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherProviderTest.java index 110740fd6f7..726676865d1 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherProviderTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherTest.java index 4a8b95fec61..11a5eb8633a 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/FSLuceneSearcherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherProviderTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherProviderTest.java index 7f5c18aca27..e35577c56d5 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherProviderTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherTest.java index 1ed2e92e6f8..d29186ca2a4 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/search/impl/MemoryLuceneSearcherTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.search.impl; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/util/ZipContentTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/util/ZipContentTest.java index aa7196ca8f2..25761e8ec24 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/util/ZipContentTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/util/ZipContentTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.util; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileTreeWalkerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileTreeWalkerTest.java index 139b3c23a18..15dc65aaf11 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileTreeWalkerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileTreeWalkerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathValueTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathValueTest.java index 0a3b72c594d..1c2ce0469cd 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathValueTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherByPathValueTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherEventHandlerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherEventHandlerTest.java index 89d0761ac77..6304d9a16f7 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherEventHandlerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherEventHandlerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherManagerTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherManagerTest.java index 2c482149cc1..85d6fbc95fa 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherManagerTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherOperationTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherOperationTest.java index 4abefe5c94e..ffb345b77d0 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherOperationTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherOperationTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherServiceTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherServiceTest.java index 59fb20c5a3b..ceae6570af7 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherServiceTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherUtilsTest.java b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherUtilsTest.java index 6e29ea8e15a..5f079d6c3c6 100644 --- a/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherUtilsTest.java +++ b/wsagent/che-core-api-project/src/test/java/org/eclipse/che/api/vfs/watcher/FileWatcherUtilsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.vfs.watcher; diff --git a/wsagent/che-core-api-project/src/test/resources/logback-test.xml b/wsagent/che-core-api-project/src/test/resources/logback-test.xml index 2a7fd9851a8..26f112f15b5 100644 --- a/wsagent/che-core-api-project/src/test/resources/logback-test.xml +++ b/wsagent/che-core-api-project/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-git-impl-jgit/pom.xml b/wsagent/che-core-git-impl-jgit/pom.xml index 20f349ef293..974d6c0dd11 100644 --- a/wsagent/che-core-git-impl-jgit/pom.xml +++ b/wsagent/che-core-git-impl-jgit/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConfigImpl.java b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConfigImpl.java index b2e3df85b2f..ba808eb733e 100644 --- a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConfigImpl.java +++ b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConfigImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation * SAP - implementation *******************************************************************************/ package org.eclipse.che.git.impl.jgit; diff --git a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConnection.java b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConnection.java index 2453b85910c..59610884639 100644 --- a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConnection.java +++ b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConnection.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation * SAP - implementation *******************************************************************************/ package org.eclipse.che.git.impl.jgit; diff --git a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConnectionFactory.java b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConnectionFactory.java index 07cbb8610ba..0374a79e99d 100644 --- a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConnectionFactory.java +++ b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitConnectionFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation * SAP - implementation *******************************************************************************/ package org.eclipse.che.git.impl.jgit; diff --git a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitDiffPage.java b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitDiffPage.java index 9de5b0806f5..54def05ad06 100644 --- a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitDiffPage.java +++ b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitDiffPage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation * SAP - implementation *******************************************************************************/ package org.eclipse.che.git.impl.jgit; diff --git a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitModule.java b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitModule.java index d7f345d37fd..e8f9c4d6c45 100644 --- a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitModule.java +++ b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation * SAP - implementation *******************************************************************************/ package org.eclipse.che.git.impl.jgit; diff --git a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitStatusImpl.java b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitStatusImpl.java index 06223f7cce4..d5089e6181d 100644 --- a/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitStatusImpl.java +++ b/wsagent/che-core-git-impl-jgit/src/main/java/org/eclipse/che/git/impl/jgit/JGitStatusImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation * SAP - implementation *******************************************************************************/ package org.eclipse.che.git.impl.jgit; diff --git a/wsagent/che-core-git-impl-jgit/src/test/java/org/eclipse/che/git/impl/GitConnectionFactoryProvider.java b/wsagent/che-core-git-impl-jgit/src/test/java/org/eclipse/che/git/impl/GitConnectionFactoryProvider.java index 66dbcf98b4e..d1587dc6841 100644 --- a/wsagent/che-core-git-impl-jgit/src/test/java/org/eclipse/che/git/impl/GitConnectionFactoryProvider.java +++ b/wsagent/che-core-git-impl-jgit/src/test/java/org/eclipse/che/git/impl/GitConnectionFactoryProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation * SAP - implementation *******************************************************************************/ package org.eclipse.che.git.impl; diff --git a/wsagent/che-core-git-impl-jgit/src/test/java/org/eclipse/che/git/impl/jgit/JGitConnectionTest.java b/wsagent/che-core-git-impl-jgit/src/test/java/org/eclipse/che/git/impl/jgit/JGitConnectionTest.java index 96044e52ce6..f06b8dcee4b 100644 --- a/wsagent/che-core-git-impl-jgit/src/test/java/org/eclipse/che/git/impl/jgit/JGitConnectionTest.java +++ b/wsagent/che-core-git-impl-jgit/src/test/java/org/eclipse/che/git/impl/jgit/JGitConnectionTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation * SAP - implementation *******************************************************************************/ package org.eclipse.che.git.impl.jgit; diff --git a/wsagent/che-core-git-impl-jgit/src/test/resources/logback-test.xml b/wsagent/che-core-git-impl-jgit/src/test/resources/logback-test.xml index a9e54b3e0d1..30ec523a5de 100644 --- a/wsagent/che-core-git-impl-jgit/src/test/resources/logback-test.xml +++ b/wsagent/che-core-git-impl-jgit/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-ssh-key-ide/pom.xml b/wsagent/che-core-ssh-key-ide/pom.xml index 8b0aa0a6d57..4ab12dedbe2 100644 --- a/wsagent/che-core-ssh-key-ide/pom.xml +++ b/wsagent/che-core-ssh-key-ide/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyExtension.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyExtension.java index c88771c6be7..8401f68497e 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyExtension.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyExtension.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyLocalizationConstant.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyLocalizationConstant.java index ccb529e2f4f..7e328401db1 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyLocalizationConstant.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyLocalizationConstant.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyUploader.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyUploader.java index 10375c39135..fae448fd4e8 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyUploader.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyUploader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyUploaderRegistry.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyUploaderRegistry.java index 76ced2ccf88..713d0c67a62 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyUploaderRegistry.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshKeyUploaderRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshResources.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshResources.java index e32cc24a7c0..4ccd955a639 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshResources.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/SshResources.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/inject/SshKeyGinModule.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/inject/SshKeyGinModule.java index af4696e9566..333d24fbe35 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/inject/SshKeyGinModule.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/inject/SshKeyGinModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.inject; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyView.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyView.java index 2892c87b4ef..39bac57ad7e 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyView.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.manage; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyViewImpl.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyViewImpl.java index daa2a77ce55..e1948f19bbe 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyViewImpl.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.manage; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyViewImpl.ui.xml b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyViewImpl.ui.xml index 1bf85ea5a10..c617c520280 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyViewImpl.ui.xml +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/ShowSshKeyViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerPresenter.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerPresenter.java index ad2514b5de8..00f6bf82822 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerPresenter.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.manage; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerView.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerView.java index 13d5b790824..d18aff6f327 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerView.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.manage; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerViewImpl.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerViewImpl.java index cadfd4006f0..6e63cead906 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerViewImpl.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.manage; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerViewImpl.ui.xml b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerViewImpl.ui.xml index 88fdc1204b6..db83b96668c 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerViewImpl.ui.xml +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyPresenter.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyPresenter.java index 9db2ae0d9d0..fedca617b53 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyPresenter.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyPresenter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.upload; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyView.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyView.java index 9c2fd47ee14..d2c573ae6c2 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyView.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyView.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.upload; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyViewImpl.java b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyViewImpl.java index 2d5a7a9b3f2..75505ed8b91 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyViewImpl.java +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyViewImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.upload; diff --git a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyViewImpl.ui.xml b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyViewImpl.ui.xml index ed01d3aca95..a01202cf5f5 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyViewImpl.ui.xml +++ b/wsagent/che-core-ssh-key-ide/src/main/java/org/eclipse/che/plugin/ssh/key/client/upload/UploadSshKeyViewImpl.ui.xml @@ -1,13 +1,13 @@ diff --git a/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/SshKey.gwt.xml b/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/SshKey.gwt.xml index 7cbfd9125cb..999345002c0 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/SshKey.gwt.xml +++ b/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/SshKey.gwt.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/client/SshKeyLocalizationConstant.properties b/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/client/SshKeyLocalizationConstant.properties index a855733511c..d88a5dd1862 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/client/SshKeyLocalizationConstant.properties +++ b/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/client/SshKeyLocalizationConstant.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # cancelButton=Cancel diff --git a/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/client/github-generate.svg b/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/client/github-generate.svg index 64a141f399f..2f125f4acd4 100644 --- a/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/client/github-generate.svg +++ b/wsagent/che-core-ssh-key-ide/src/main/resources/org/eclipse/che/plugin/ssh/key/client/github-generate.svg @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-ssh-key-ide/src/test/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerPresenterTest.java b/wsagent/che-core-ssh-key-ide/src/test/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerPresenterTest.java index f1c101fb16d..13dc153b794 100644 --- a/wsagent/che-core-ssh-key-ide/src/test/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerPresenterTest.java +++ b/wsagent/che-core-ssh-key-ide/src/test/java/org/eclipse/che/plugin/ssh/key/client/manage/SshKeyManagerPresenterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.client.manage; diff --git a/wsagent/che-core-ssh-key-server/pom.xml b/wsagent/che-core-ssh-key-server/pom.xml index 9965718d9c8..08e366a2af6 100644 --- a/wsagent/che-core-ssh-key-server/pom.xml +++ b/wsagent/che-core-ssh-key-server/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/HttpSshServiceClient.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/HttpSshServiceClient.java index 825771c1371..9c213868c10 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/HttpSshServiceClient.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/HttpSshServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/SshModule.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/SshModule.java index 7922a58bbc7..fd0090e93e2 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/SshModule.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/SshModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/SshServiceClient.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/SshServiceClient.java index dabd3aef0ed..ac81b927508 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/SshServiceClient.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/SshServiceClient.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyProvider.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyProvider.java index f09304e9d62..f8eac7f125e 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyProvider.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyProviderImpl.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyProviderImpl.java index c9b6a5b75c1..ec6717998f3 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyProviderImpl.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyProviderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyUploader.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyUploader.java index 93fd823df91..b0f0ed12e99 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyUploader.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshKeyUploader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshScript.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshScript.java index de0ef4c8e7d..214665f243b 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshScript.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshScript.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshScriptProvider.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshScriptProvider.java index ca8b792d756..608919b48af 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshScriptProvider.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/SshScriptProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/UnixSshScript.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/UnixSshScript.java index daf537cdbe4..12aefdccf18 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/UnixSshScript.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/UnixSshScript.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/WindowsSshScript.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/WindowsSshScript.java index 90a7b7d026c..22cbbcc9d5f 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/WindowsSshScript.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/script/WindowsSshScript.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/utils/UrlUtils.java b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/utils/UrlUtils.java index 22b49871515..a094a52dbaf 100644 --- a/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/utils/UrlUtils.java +++ b/wsagent/che-core-ssh-key-server/src/main/java/org/eclipse/che/plugin/ssh/key/utils/UrlUtils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.utils; diff --git a/wsagent/che-core-ssh-key-server/src/test/java/org/eclipse/che/plugin/ssh/key/HttpSshServiceClientTest.java b/wsagent/che-core-ssh-key-server/src/test/java/org/eclipse/che/plugin/ssh/key/HttpSshServiceClientTest.java index 72bc3c09a69..83174278ea1 100644 --- a/wsagent/che-core-ssh-key-server/src/test/java/org/eclipse/che/plugin/ssh/key/HttpSshServiceClientTest.java +++ b/wsagent/che-core-ssh-key-server/src/test/java/org/eclipse/che/plugin/ssh/key/HttpSshServiceClientTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key; diff --git a/wsagent/che-core-ssh-key-server/src/test/java/org/eclipse/che/plugin/ssh/key/script/SshScriptProviderTest.java b/wsagent/che-core-ssh-key-server/src/test/java/org/eclipse/che/plugin/ssh/key/script/SshScriptProviderTest.java index 13904efa823..6066f8ec750 100644 --- a/wsagent/che-core-ssh-key-server/src/test/java/org/eclipse/che/plugin/ssh/key/script/SshScriptProviderTest.java +++ b/wsagent/che-core-ssh-key-server/src/test/java/org/eclipse/che/plugin/ssh/key/script/SshScriptProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/test/java/resources/logback-test.xml b/wsagent/che-core-ssh-key-server/src/test/java/resources/logback-test.xml index b9b78b298c8..74505fa1d92 100644 --- a/wsagent/che-core-ssh-key-server/src/test/java/resources/logback-test.xml +++ b/wsagent/che-core-ssh-key-server/src/test/java/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-core-ssh-key-server/src/test/org/eclipse/che/plugin/ssh/key/script/SshScriptProviderTest.java b/wsagent/che-core-ssh-key-server/src/test/org/eclipse/che/plugin/ssh/key/script/SshScriptProviderTest.java index bbf1248472c..51ec751adf8 100644 --- a/wsagent/che-core-ssh-key-server/src/test/org/eclipse/che/plugin/ssh/key/script/SshScriptProviderTest.java +++ b/wsagent/che-core-ssh-key-server/src/test/org/eclipse/che/plugin/ssh/key/script/SshScriptProviderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.ssh.key.script; diff --git a/wsagent/che-core-ssh-key-server/src/test/resources/logback-test.xml b/wsagent/che-core-ssh-key-server/src/test/resources/logback-test.xml index b9b78b298c8..74505fa1d92 100644 --- a/wsagent/che-core-ssh-key-server/src/test/resources/logback-test.xml +++ b/wsagent/che-core-ssh-key-server/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-wsagent-core/pom.xml b/wsagent/che-wsagent-core/pom.xml index ce6703a3e56..25f919b668c 100644 --- a/wsagent/che-wsagent-core/pom.xml +++ b/wsagent/che-wsagent-core/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWebSocketEndpoint.java b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWebSocketEndpoint.java index 2cb8e037dc9..51119e76a73 100644 --- a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWebSocketEndpoint.java +++ b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWebSocketEndpoint.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.wsagent.server; diff --git a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWsAgentModule.java b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWsAgentModule.java index e066e5a1602..c3f9ca6fe11 100644 --- a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWsAgentModule.java +++ b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWsAgentModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.wsagent.server; diff --git a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWsAgentServletModule.java b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWsAgentServletModule.java index 2c4c128152c..157d50ba2ad 100644 --- a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWsAgentServletModule.java +++ b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/CheWsAgentServletModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.wsagent.server; diff --git a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentAnalyticsAddresser.java b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentAnalyticsAddresser.java index 22ed26f01be..25589b13164 100644 --- a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentAnalyticsAddresser.java +++ b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentAnalyticsAddresser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.wsagent.server; diff --git a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentModule.java b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentModule.java index c073d593e91..b5da0d51eec 100644 --- a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentModule.java +++ b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.wsagent.server; diff --git a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentServletModule.java b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentServletModule.java index c77fceef4c7..bccd868cdc5 100644 --- a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentServletModule.java +++ b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentServletModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.wsagent.server; diff --git a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentURLProvider.java b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentURLProvider.java index 5eb551a76cd..576aa6b05a4 100644 --- a/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentURLProvider.java +++ b/wsagent/che-wsagent-core/src/main/java/org/eclipse/che/wsagent/server/WsAgentURLProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.wsagent.server; diff --git a/wsagent/che-wsagent-core/src/main/webapp/WEB-INF/classes/codenvy/che-machine-configuration.properties b/wsagent/che-wsagent-core/src/main/webapp/WEB-INF/classes/codenvy/che-machine-configuration.properties index 881e3028777..9dfc98f778b 100644 --- a/wsagent/che-wsagent-core/src/main/webapp/WEB-INF/classes/codenvy/che-machine-configuration.properties +++ b/wsagent/che-wsagent-core/src/main/webapp/WEB-INF/classes/codenvy/che-machine-configuration.properties @@ -1,12 +1,12 @@ # -# Copyright (c) 2012-2017 Codenvy, S.A. +# Copyright (c) 2012-2017 Red Hat, 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: -# Codenvy, S.A. - initial API and implementation +# Red Hat, Inc. - initial API and implementation # # vfs diff --git a/wsagent/che-wsagent-core/src/main/webapp/WEB-INF/web.xml b/wsagent/che-wsagent-core/src/main/webapp/WEB-INF/web.xml index 455c79b7a8e..53811ea0f6f 100644 --- a/wsagent/che-wsagent-core/src/main/webapp/WEB-INF/web.xml +++ b/wsagent/che-wsagent-core/src/main/webapp/WEB-INF/web.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/wsagent-local/pom.xml b/wsagent/wsagent-local/pom.xml index 6bff1c0d9bb..42972034361 100644 --- a/wsagent/wsagent-local/pom.xml +++ b/wsagent/wsagent-local/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsagent/wsagent-local/src/main/java/org/eclipse/che/ApiEndpointAccessibilityChecker.java b/wsagent/wsagent-local/src/main/java/org/eclipse/che/ApiEndpointAccessibilityChecker.java index dc5db4a7cc2..c4c3fbe3925 100644 --- a/wsagent/wsagent-local/src/main/java/org/eclipse/che/ApiEndpointAccessibilityChecker.java +++ b/wsagent/wsagent-local/src/main/java/org/eclipse/che/ApiEndpointAccessibilityChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che; diff --git a/wsagent/wsagent-local/src/main/java/org/eclipse/che/EventBusURLProvider.java b/wsagent/wsagent-local/src/main/java/org/eclipse/che/EventBusURLProvider.java index 30550343b36..a08fe05178f 100644 --- a/wsagent/wsagent-local/src/main/java/org/eclipse/che/EventBusURLProvider.java +++ b/wsagent/wsagent-local/src/main/java/org/eclipse/che/EventBusURLProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che; diff --git a/wsagent/wsagent-local/src/main/java/org/eclipse/che/UriApiEndpointProvider.java b/wsagent/wsagent-local/src/main/java/org/eclipse/che/UriApiEndpointProvider.java index 9cbd3c81fdc..89840662277 100644 --- a/wsagent/wsagent-local/src/main/java/org/eclipse/che/UriApiEndpointProvider.java +++ b/wsagent/wsagent-local/src/main/java/org/eclipse/che/UriApiEndpointProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che; diff --git a/wsagent/wsagent-local/src/main/java/org/eclipse/che/UserTokenProvider.java b/wsagent/wsagent-local/src/main/java/org/eclipse/che/UserTokenProvider.java index 2f659226ca2..de965845ea3 100644 --- a/wsagent/wsagent-local/src/main/java/org/eclipse/che/UserTokenProvider.java +++ b/wsagent/wsagent-local/src/main/java/org/eclipse/che/UserTokenProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che; diff --git a/wsagent/wsagent-local/src/main/java/org/eclipse/che/WorkspaceIdProvider.java b/wsagent/wsagent-local/src/main/java/org/eclipse/che/WorkspaceIdProvider.java index 3013859b6aa..e446c02520e 100644 --- a/wsagent/wsagent-local/src/main/java/org/eclipse/che/WorkspaceIdProvider.java +++ b/wsagent/wsagent-local/src/main/java/org/eclipse/che/WorkspaceIdProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che; diff --git a/wsagent/wsagent-local/src/test/resources/logback-test.xml b/wsagent/wsagent-local/src/test/resources/logback-test.xml index 897d1dffff0..a26c5f34182 100644 --- a/wsagent/wsagent-local/src/test/resources/logback-test.xml +++ b/wsagent/wsagent-local/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-account/pom.xml b/wsmaster/che-core-api-account/pom.xml index 833bfc6cb18..461b8593e07 100644 --- a/wsmaster/che-core-api-account/pom.xml +++ b/wsmaster/che-core-api-account/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/api/AccountManager.java b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/api/AccountManager.java index 02039ee06fa..020243b14be 100644 --- a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/api/AccountManager.java +++ b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/api/AccountManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.api; diff --git a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/api/AccountModule.java b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/api/AccountModule.java index b310dbc0f4a..b5c95c4e7fa 100644 --- a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/api/AccountModule.java +++ b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/api/AccountModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.api; diff --git a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/event/BeforeAccountRemovedEvent.java b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/event/BeforeAccountRemovedEvent.java index d6213578146..6d6a5160328 100644 --- a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/event/BeforeAccountRemovedEvent.java +++ b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/event/BeforeAccountRemovedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.event; diff --git a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/shared/model/Account.java b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/shared/model/Account.java index 10aa0424080..3226582a49e 100644 --- a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/shared/model/Account.java +++ b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/shared/model/Account.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.shared.model; diff --git a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountDao.java b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountDao.java index ee1af99cd4f..c80d04bd048 100644 --- a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountDao.java +++ b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.spi; diff --git a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountImpl.java b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountImpl.java index b524fae22d1..508f7208e44 100644 --- a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountImpl.java +++ b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.spi; diff --git a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountValidator.java b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountValidator.java index c7ed9d322bd..1ebaacb92d2 100644 --- a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountValidator.java +++ b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/AccountValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.spi; diff --git a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/jpa/JpaAccountDao.java b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/jpa/JpaAccountDao.java index e6521d92e6d..e10177d19cc 100644 --- a/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/jpa/JpaAccountDao.java +++ b/wsmaster/che-core-api-account/src/main/java/org/eclipse/che/account/spi/jpa/JpaAccountDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.spi.jpa; diff --git a/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/AccountValidatorTest.java b/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/AccountValidatorTest.java index ef7b10ad30c..beb9d5f83fb 100644 --- a/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/AccountValidatorTest.java +++ b/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/AccountValidatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.spi; diff --git a/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/tck/AccountDaoTest.java b/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/tck/AccountDaoTest.java index d99898d0f9f..714f5d00a6a 100644 --- a/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/tck/AccountDaoTest.java +++ b/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/tck/AccountDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.spi.tck; diff --git a/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/tck/jpa/AccountJpaTckModule.java b/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/tck/jpa/AccountJpaTckModule.java index a2303a0d31f..8e76e131b3d 100644 --- a/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/tck/jpa/AccountJpaTckModule.java +++ b/wsmaster/che-core-api-account/src/test/java/org/eclipse/che/account/spi/tck/jpa/AccountJpaTckModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.account.spi.tck.jpa; diff --git a/wsmaster/che-core-api-account/src/test/resources/logback-test.xml b/wsmaster/che-core-api-account/src/test/resources/logback-test.xml index 897d1dffff0..a26c5f34182 100644 --- a/wsmaster/che-core-api-account/src/test/resources/logback-test.xml +++ b/wsmaster/che-core-api-account/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-auth-shared/pom.xml b/wsmaster/che-core-api-auth-shared/pom.xml index 60ffa20c918..d355af14e8d 100644 --- a/wsmaster/che-core-api-auth-shared/pom.xml +++ b/wsmaster/che-core-api-auth-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/Credentials.java b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/Credentials.java index 37e1a716bc7..60e28d8d9a9 100644 --- a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/Credentials.java +++ b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/Credentials.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.auth.shared.dto; diff --git a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/OAuthToken.java b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/OAuthToken.java index 24cc14eca63..7e7f13c5c62 100644 --- a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/OAuthToken.java +++ b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/OAuthToken.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.auth.shared.dto; diff --git a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/Token.java b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/Token.java index b783f86a21a..928c8fec6fa 100644 --- a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/Token.java +++ b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/api/auth/shared/dto/Token.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.auth.shared.dto; diff --git a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/OAuthAuthorizationHeaderProvider.java b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/OAuthAuthorizationHeaderProvider.java index 54fa6911860..b391b8253c9 100644 --- a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/OAuthAuthorizationHeaderProvider.java +++ b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/OAuthAuthorizationHeaderProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth.shared; diff --git a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/OAuthTokenProvider.java b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/OAuthTokenProvider.java index 22d66058e3d..78f69ff5e4a 100644 --- a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/OAuthTokenProvider.java +++ b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/OAuthTokenProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth.shared; diff --git a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/User.java b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/User.java index 403910bb252..0c5de0d3cff 100644 --- a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/User.java +++ b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/User.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth.shared; diff --git a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/dto/OAuthAuthenticatorDescriptor.java b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/dto/OAuthAuthenticatorDescriptor.java index ae0f764b60c..9125c721849 100644 --- a/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/dto/OAuthAuthenticatorDescriptor.java +++ b/wsmaster/che-core-api-auth-shared/src/main/java/org/eclipse/che/security/oauth/shared/dto/OAuthAuthenticatorDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth.shared.dto; diff --git a/wsmaster/che-core-api-auth/pom.xml b/wsmaster/che-core-api-auth/pom.xml index d504d9b97db..1ee3f5364ab 100644 --- a/wsmaster/che-core-api-auth/pom.xml +++ b/wsmaster/che-core-api-auth/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationDao.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationDao.java index 94fa25b0fd5..d2280ef1743 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationDao.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.auth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationException.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationException.java index 5c1a526ffda..e700cbedf37 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationException.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.auth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationExceptionMapper.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationExceptionMapper.java index 049707a9485..34fb948f3f1 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationExceptionMapper.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationExceptionMapper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.auth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationService.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationService.java index 843905614ac..28d4fefea4c 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationService.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/api/auth/AuthenticationService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.auth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuth2.gwt.xml b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuth2.gwt.xml index 8043bc8bd01..bfe18c3d832 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuth2.gwt.xml +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuth2.gwt.xml @@ -1,13 +1,13 @@ diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticationException.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticationException.java index 896290ee3a2..253ccb5494b 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticationException.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticationService.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticationService.java index ac7c742c6c5..667f889f8a9 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticationService.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticationService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticator.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticator.java index bd5bf7aa7d4..0c1059398b2 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticator.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorProvider.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorProvider.java index 64460158837..ea05957c78b 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorProvider.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorProviderImpl.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorProviderImpl.java index 4ef317f2e5b..06e0194c1b5 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorProviderImpl.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorProviderImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorTokenProvider.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorTokenProvider.java index 587ceacd1e6..9b2549d8a8d 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorTokenProvider.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth/OAuthAuthenticatorTokenProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticationException.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticationException.java index 6238a0663f2..5a212b77d83 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticationException.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticationException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth1; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticationService.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticationService.java index 65a499826e2..b7a36bacc65 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticationService.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticationService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth1; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticator.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticator.java index bfb2978ebb2..35887fce7f7 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticator.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth1; diff --git a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticatorProvider.java b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticatorProvider.java index a7caa7168d1..23a43cbc77c 100644 --- a/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticatorProvider.java +++ b/wsmaster/che-core-api-auth/src/main/java/org/eclipse/che/security/oauth1/OAuthAuthenticatorProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth1; diff --git a/wsmaster/che-core-api-auth/src/test/java/org/eclipse/che/security/oauth/OAuthAuthenticationServiceTest.java b/wsmaster/che-core-api-auth/src/test/java/org/eclipse/che/security/oauth/OAuthAuthenticationServiceTest.java index 724d05a6e18..382c297cfe2 100644 --- a/wsmaster/che-core-api-auth/src/test/java/org/eclipse/che/security/oauth/OAuthAuthenticationServiceTest.java +++ b/wsmaster/che-core-api-auth/src/test/java/org/eclipse/che/security/oauth/OAuthAuthenticationServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.security.oauth; diff --git a/wsmaster/che-core-api-auth/src/test/resources/logback-test.xml b/wsmaster/che-core-api-auth/src/test/resources/logback-test.xml index 9154b477958..a22facbd3bb 100644 --- a/wsmaster/che-core-api-auth/src/test/resources/logback-test.xml +++ b/wsmaster/che-core-api-auth/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-factory-shared/pom.xml b/wsmaster/che-core-api-factory-shared/pom.xml index 27b7c88cf24..a0c7004013b 100644 --- a/wsmaster/che-core-api-factory-shared/pom.xml +++ b/wsmaster/che-core-api-factory-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/Constants.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/Constants.java index 044871e7456..8c2f23dc678 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/Constants.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/AuthorDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/AuthorDto.java index deb0f461684..b40edf3ee59 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/AuthorDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/AuthorDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/ButtonAttributesDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/ButtonAttributesDto.java index f024355e3c6..c5477e682b2 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/ButtonAttributesDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/ButtonAttributesDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/ButtonDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/ButtonDto.java index 288b5f92b59..60d0bac8b99 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/ButtonDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/ButtonDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/FactoryDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/FactoryDto.java index 594b2ca8eed..91f4ffb99e5 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/FactoryDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/FactoryDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/IdeActionDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/IdeActionDto.java index 079048454f2..8e9c3f3c1f9 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/IdeActionDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/IdeActionDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/IdeDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/IdeDto.java index 4e77b15a57f..b01c80826b6 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/IdeDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/IdeDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnAppClosedDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnAppClosedDto.java index d4c0c4d386c..08630404ef2 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnAppClosedDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnAppClosedDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnAppLoadedDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnAppLoadedDto.java index ffa6f7772a9..34def2eb9bd 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnAppLoadedDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnAppLoadedDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnProjectsLoadedDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnProjectsLoadedDto.java index b13fbafbb56..de98c20a037 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnProjectsLoadedDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/OnProjectsLoadedDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/PoliciesDto.java b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/PoliciesDto.java index c859843feb1..487c741ce49 100644 --- a/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/PoliciesDto.java +++ b/wsmaster/che-core-api-factory-shared/src/main/java/org/eclipse/che/api/factory/shared/dto/PoliciesDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.shared.dto; diff --git a/wsmaster/che-core-api-factory/pom.xml b/wsmaster/che-core-api-factory/pom.xml index fb5967648a9..828f117f530 100644 --- a/wsmaster/che-core-api-factory/pom.xml +++ b/wsmaster/che-core-api-factory/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/DtoConverter.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/DtoConverter.java index 51806083e45..e2a6da04035 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/DtoConverter.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryAcceptValidator.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryAcceptValidator.java index a396594fc95..89bb1d8a3cf 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryAcceptValidator.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryAcceptValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryConstants.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryConstants.java index 6b487c94224..894dea6df4a 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryConstants.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryConstants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryCreateValidator.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryCreateValidator.java index aa646f7b271..44e648400c6 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryCreateValidator.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryCreateValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryEditValidator.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryEditValidator.java index b6951497a93..25e387aee03 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryEditValidator.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryEditValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryImage.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryImage.java index 6898d3c72df..40d43a2e2ed 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryImage.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryImage.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryLinksHelper.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryLinksHelper.java index 4e24b461f17..95a2def9f10 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryLinksHelper.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryLinksHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryManager.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryManager.java index 99b6ec51cdb..ce7adc5c84b 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryManager.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryMessageBodyAdapter.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryMessageBodyAdapter.java index 25d01181f1a..2d6d9b85663 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryMessageBodyAdapter.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryMessageBodyAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryParameterValidator.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryParameterValidator.java index cf25724dbb7..6e235e7631f 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryParameterValidator.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryParameterValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryParametersResolver.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryParametersResolver.java index 224edfb44ce..9844e8c1e0e 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryParametersResolver.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryParametersResolver.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryService.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryService.java index b5155c39c4a..93fc442cb80 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryService.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/FactoryService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/LegacyConverter.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/LegacyConverter.java index 99d19c530f1..5e9b7a8f9c0 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/LegacyConverter.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/LegacyConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/ValueHelper.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/ValueHelper.java index 7f0ef737282..64b22c3217e 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/ValueHelper.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/ValueHelper.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/builder/FactoryBuilder.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/builder/FactoryBuilder.java index 734f1dae0fe..cc80de145f9 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/builder/FactoryBuilder.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/builder/FactoryBuilder.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.builder; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryAcceptValidatorImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryAcceptValidatorImpl.java index 5c4e78d0bad..57fe1b06bfb 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryAcceptValidatorImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryAcceptValidatorImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryBaseValidator.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryBaseValidator.java index ffede6b89e2..1dd8a527a90 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryBaseValidator.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryBaseValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryCreateValidatorImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryCreateValidatorImpl.java index 75858ac1b2f..80fdca1820a 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryCreateValidatorImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryCreateValidatorImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryEditValidatorImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryEditValidatorImpl.java index f699a1dc1e5..9ce352514a2 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryEditValidatorImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/FactoryEditValidatorImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/SourceStorageParametersValidator.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/SourceStorageParametersValidator.java index 57943528b16..81b6e60ed20 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/SourceStorageParametersValidator.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/impl/SourceStorageParametersValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/jpa/FactoryJpaModule.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/jpa/FactoryJpaModule.java index c29cddcca01..f5373b051fb 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/jpa/FactoryJpaModule.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/jpa/FactoryJpaModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.jpa; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/jpa/JpaFactoryDao.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/jpa/JpaFactoryDao.java index 4c6881720b8..40f9788702d 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/jpa/JpaFactoryDao.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/jpa/JpaFactoryDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.jpa; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ActionImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ActionImpl.java index ab58eefd7ca..d65695a595d 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ActionImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ActionImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/AuthorImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/AuthorImpl.java index c68d6725173..3ba10f1217b 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/AuthorImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/AuthorImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ButtonAttributesImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ButtonAttributesImpl.java index 1b460b4e1da..ac862a8ab5d 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ButtonAttributesImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ButtonAttributesImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ButtonImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ButtonImpl.java index fe593e40bde..3a4e4745015 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ButtonImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/ButtonImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/FactoryImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/FactoryImpl.java index fc9ef657b83..259b854fb3b 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/FactoryImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/FactoryImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/IdeImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/IdeImpl.java index b5e4a39a9b0..c1b20b8adc6 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/IdeImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/IdeImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnAppClosedImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnAppClosedImpl.java index 2de0432a836..7df8f98b120 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnAppClosedImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnAppClosedImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnAppLoadedImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnAppLoadedImpl.java index 032895c3d17..329170890b8 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnAppLoadedImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnAppLoadedImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnProjectsLoadedImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnProjectsLoadedImpl.java index 64519241b3e..7f782b5a883 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnProjectsLoadedImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/OnProjectsLoadedImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/PoliciesImpl.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/PoliciesImpl.java index ecafc4c036b..b3f6e54beb1 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/PoliciesImpl.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/model/impl/PoliciesImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.model.impl; diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/spi/FactoryDao.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/spi/FactoryDao.java index 7290fccc730..d33fe695bcc 100644 --- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/spi/FactoryDao.java +++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/spi/FactoryDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.spi; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/FactoryManagerTest.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/FactoryManagerTest.java index ec4ba6aa695..e503549b169 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/FactoryManagerTest.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/FactoryManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/FactoryServiceTest.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/FactoryServiceTest.java index e4083056efb..ccb7feb31e4 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/FactoryServiceTest.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/FactoryServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/builder/FactoryBuilderTest.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/builder/FactoryBuilderTest.java index 537c861cca0..3b63a377463 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/builder/FactoryBuilderTest.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/builder/FactoryBuilderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.builder; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryBaseValidatorTest.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryBaseValidatorTest.java index 47b7850233a..438ff8e8841 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryBaseValidatorTest.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryBaseValidatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryCreateAndAcceptValidatorsImplsTest.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryCreateAndAcceptValidatorsImplsTest.java index d6e9908efd1..902cc562ee4 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryCreateAndAcceptValidatorsImplsTest.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryCreateAndAcceptValidatorsImplsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryEditValidatorImplTest.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryEditValidatorImplTest.java index 23d6576bb67..a175d01b00b 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryEditValidatorImplTest.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/FactoryEditValidatorImplTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/SourceProjectParametersValidatorTest.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/SourceProjectParametersValidatorTest.java index cb524e979f0..f3e38bcd2fd 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/SourceProjectParametersValidatorTest.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/SourceProjectParametersValidatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/TesterFactoryBaseValidator.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/TesterFactoryBaseValidator.java index d1df22706af..0c5a1169f8a 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/TesterFactoryBaseValidator.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/impl/TesterFactoryBaseValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.impl; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/jpa/FactoryTckModule.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/jpa/FactoryTckModule.java index b313a41b30a..c58726894ed 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/jpa/FactoryTckModule.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/jpa/FactoryTckModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.jpa; diff --git a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/spi/tck/FactoryDaoTest.java b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/spi/tck/FactoryDaoTest.java index 8b220327963..51517894489 100644 --- a/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/spi/tck/FactoryDaoTest.java +++ b/wsmaster/che-core-api-factory/src/test/java/org/eclipse/che/api/factory/server/spi/tck/FactoryDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.factory.server.spi.tck; diff --git a/wsmaster/che-core-api-factory/src/test/resources/logback-test.xml b/wsmaster/che-core-api-factory/src/test/resources/logback-test.xml index 4c568142d5b..46e66a7274c 100644 --- a/wsmaster/che-core-api-factory/src/test/resources/logback-test.xml +++ b/wsmaster/che-core-api-factory/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-machine-shared/pom.xml b/wsmaster/che-core-api-machine-shared/pom.xml index db1df256916..1971c41c7c3 100644 --- a/wsmaster/che-core-api-machine-shared/pom.xml +++ b/wsmaster/che-core-api-machine-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/Constants.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/Constants.java index 93b2cec02da..921d57befbc 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/Constants.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/ManagedRecipe.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/ManagedRecipe.java index 5ab4b6e41e6..b91e492b851 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/ManagedRecipe.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/ManagedRecipe.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/CommandDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/CommandDto.java index fe5b2556dee..30e4ba58dd9 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/CommandDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/CommandDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineConfigDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineConfigDto.java index 42f452bf693..84dad0f061c 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineConfigDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineConfigDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineDto.java index 7fe70ae5be2..ab43868ddaf 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineLimitsDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineLimitsDto.java index 8e4cf70aaf4..20b1746f78c 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineLimitsDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineLimitsDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineLogMessageDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineLogMessageDto.java index ce3bbb6afac..19f5842219d 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineLogMessageDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineLogMessageDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineProcessDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineProcessDto.java index 509f97e2bbd..21268a1937d 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineProcessDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineProcessDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineRuntimeInfoDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineRuntimeInfoDto.java index cd534804fa8..2ae1c97b324 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineRuntimeInfoDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineRuntimeInfoDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineSourceDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineSourceDto.java index af59c32441a..49412982713 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineSourceDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/MachineSourceDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/NewSnapshotDescriptor.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/NewSnapshotDescriptor.java index 3546a1d481e..4d206415255 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/NewSnapshotDescriptor.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/NewSnapshotDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerConfDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerConfDto.java index 84e3df1b9cf..869da96b7d1 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerConfDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerConfDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerDto.java index 15cbed0b263..e6700aaf610 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerPropertiesDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerPropertiesDto.java index 0f2d05ddb34..54ebdc964ad 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerPropertiesDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/ServerPropertiesDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/SnapshotDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/SnapshotDto.java index 1bf92eca2bd..a8dca68981a 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/SnapshotDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/SnapshotDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/event/MachineProcessEvent.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/event/MachineProcessEvent.java index 098b5fc07e0..ce567b44a4e 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/event/MachineProcessEvent.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/event/MachineProcessEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.event; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/event/MachineStatusEvent.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/event/MachineStatusEvent.java index 908a198eb7c..3feaeaeeaa4 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/event/MachineStatusEvent.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/event/MachineStatusEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.event; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessLogsRequestDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessLogsRequestDto.java index 769e890cdfe..f9d9e11d285 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessLogsRequestDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessLogsRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessLogsResponseDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessLogsResponseDto.java index 9d5404a28e7..0388788bb58 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessLogsResponseDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessLogsResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessRequestDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessRequestDto.java index 29003c229ed..ea88c0e9939 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessRequestDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessResponseDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessResponseDto.java index f19415ad6ea..1472aa7969f 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessResponseDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessesRequestDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessesRequestDto.java index 9a140e99cf6..40fb0b30cd7 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessesRequestDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessesRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessesResponseDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessesResponseDto.java index 347146e3178..a0579c2daad 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessesResponseDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/GetProcessesResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessKillRequestDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessKillRequestDto.java index 087e4a371e1..cdd6f784a5d 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessKillRequestDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessKillRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessKillResponseDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessKillResponseDto.java index 4df3746060a..bab0dd88e7d 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessKillResponseDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessKillResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessStartRequestDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessStartRequestDto.java index f59d859359b..079099285b2 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessStartRequestDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessStartRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessStartResponseDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessStartResponseDto.java index 377fb85773a..64e6cc600cd 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessStartResponseDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessStartResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessSubscribeRequestDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessSubscribeRequestDto.java index 247f882d498..26172ec1cc2 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessSubscribeRequestDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessSubscribeRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessSubscribeResponseDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessSubscribeResponseDto.java index 8345a989982..1364fe3c208 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessSubscribeResponseDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessSubscribeResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessUnSubscribeRequestDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessUnSubscribeRequestDto.java index 071317eff72..18547825583 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessUnSubscribeRequestDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessUnSubscribeRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessUnSubscribeResponseDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessUnSubscribeResponseDto.java index 0477edd35ed..1ebb37c9981 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessUnSubscribeResponseDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/ProcessUnSubscribeResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/UpdateSubscriptionRequestDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/UpdateSubscriptionRequestDto.java index f3213efd732..eb13cfde4cc 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/UpdateSubscriptionRequestDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/UpdateSubscriptionRequestDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/UpdateSubscriptionResponseDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/UpdateSubscriptionResponseDto.java index e4e4957c514..c3e7870690e 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/UpdateSubscriptionResponseDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/UpdateSubscriptionResponseDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ConnectedEventDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ConnectedEventDto.java index fcd04ba20b9..9d29f80e708 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ConnectedEventDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ConnectedEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent.event; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/DtoWithPid.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/DtoWithPid.java index 1871518021c..70006c04192 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/DtoWithPid.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/DtoWithPid.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent.event; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessDiedEventDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessDiedEventDto.java index be37b6c7e82..a9c2e686972 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessDiedEventDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessDiedEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent.event; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStartedEventDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStartedEventDto.java index a603664a9f4..6a4c4ba2394 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStartedEventDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStartedEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent.event; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStdErrEventDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStdErrEventDto.java index 83c446a7167..f668d8f162c 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStdErrEventDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStdErrEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent.event; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStdOutEventDto.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStdOutEventDto.java index fbf3a2aa4c6..de72e86e8ce 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStdOutEventDto.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/execagent/event/ProcessStdOutEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.execagent.event; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/MachineRecipe.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/MachineRecipe.java index bf0bbee13fd..7c3a6709d56 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/MachineRecipe.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/MachineRecipe.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.recipe; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/NewRecipe.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/NewRecipe.java index e027c29e41f..5a66677a828 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/NewRecipe.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/NewRecipe.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.recipe; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/RecipeDescriptor.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/RecipeDescriptor.java index 5f10c71be42..90223559b9c 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/RecipeDescriptor.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/RecipeDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.recipe; diff --git a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/RecipeUpdate.java b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/RecipeUpdate.java index ac4e63db67e..a57fa65e2b5 100644 --- a/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/RecipeUpdate.java +++ b/wsmaster/che-core-api-machine-shared/src/main/java/org/eclipse/che/api/machine/shared/dto/recipe/RecipeUpdate.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.shared.dto.recipe; diff --git a/wsmaster/che-core-api-machine/pom.xml b/wsmaster/che-core-api-machine/pom.xml index 3c550f13743..4227d3a89bc 100644 --- a/wsmaster/che-core-api-machine/pom.xml +++ b/wsmaster/che-core-api-machine/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/DtoConverter.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/DtoConverter.java index 5e8214120c6..fc3638fb4a8 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/DtoConverter.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/MachineInstanceProviders.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/MachineInstanceProviders.java index 6dc9d69dd86..fd55dc3874b 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/MachineInstanceProviders.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/MachineInstanceProviders.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/MachineModule.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/MachineModule.java index f5e5b770631..e93102afb11 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/MachineModule.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/MachineModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/BeforeRecipeRemovedEvent.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/BeforeRecipeRemovedEvent.java index e910a821b90..c441bc8a61b 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/BeforeRecipeRemovedEvent.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/BeforeRecipeRemovedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.event; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/InstanceStateEvent.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/InstanceStateEvent.java index 2910416099b..3ff47cc39b6 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/InstanceStateEvent.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/InstanceStateEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.event; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineProcessMessenger.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineProcessMessenger.java index edac4453085..bb7fc386bf6 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineProcessMessenger.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineProcessMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.event; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineStateJsonRpcMessenger.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineStateJsonRpcMessenger.java index 12623f57406..ba187ace542 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineStateJsonRpcMessenger.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineStateJsonRpcMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.event; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineStateMessenger.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineStateMessenger.java index 189fe2b8be5..4da46c875b4 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineStateMessenger.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/MachineStateMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.event; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/RecipePersistedEvent.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/RecipePersistedEvent.java index c3acb946006..3968decf572 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/RecipePersistedEvent.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/event/RecipePersistedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.event; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/InvalidInstanceSnapshotException.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/InvalidInstanceSnapshotException.java index 2d883578f6f..8f23f5d996b 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/InvalidInstanceSnapshotException.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/InvalidInstanceSnapshotException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.exception; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/InvalidRecipeException.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/InvalidRecipeException.java index 7f4e40d20f8..33a3b666e27 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/InvalidRecipeException.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/InvalidRecipeException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.exception; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/MachineException.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/MachineException.java index aa02b61e413..9cea7d740b7 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/MachineException.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/MachineException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.exception; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/SnapshotException.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/SnapshotException.java index a2474ce133a..e8987aa02a3 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/SnapshotException.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/SnapshotException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.exception; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/SourceNotFoundException.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/SourceNotFoundException.java index dbca19ff8b6..b6a761271d3 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/SourceNotFoundException.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/SourceNotFoundException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.exception; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/UnsupportedRecipeException.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/UnsupportedRecipeException.java index 4055ce1b5aa..6e563c83a00 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/UnsupportedRecipeException.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/exception/UnsupportedRecipeException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.exception; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/JpaRecipeDao.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/JpaRecipeDao.java index 0570fc3408e..7e53bc02e79 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/JpaRecipeDao.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/JpaRecipeDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.jpa; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/JpaSnapshotDao.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/JpaSnapshotDao.java index 541d6dcf1a3..291261b4221 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/JpaSnapshotDao.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/JpaSnapshotDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.jpa; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/MachineJpaModule.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/MachineJpaModule.java index a533a829503..240b108b6b0 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/MachineJpaModule.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/jpa/MachineJpaModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.jpa; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/CommandImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/CommandImpl.java index 6d97e673731..6c01e58bc8e 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/CommandImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/CommandImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineConfigImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineConfigImpl.java index 0d2a1ec252a..c432f51e940 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineConfigImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineConfigImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineImpl.java index 840b5a68146..48570dd28f8 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineLimitsImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineLimitsImpl.java index 4b700821aa9..2d44ba50450 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineLimitsImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineLimitsImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineLogMessageImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineLogMessageImpl.java index 41042c1475d..8a2130d64f2 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineLogMessageImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineLogMessageImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineRuntimeInfoImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineRuntimeInfoImpl.java index bf990991259..e2ffbfbae53 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineRuntimeInfoImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineRuntimeInfoImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineSourceImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineSourceImpl.java index 1b29a711ad2..ff0e90621fc 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineSourceImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/MachineSourceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerConfImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerConfImpl.java index ebbfcbb6073..92da51cd9af 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerConfImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerConfImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerImpl.java index 01cd1fe2cc2..a445b75f713 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerPropertiesImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerPropertiesImpl.java index 8a7f2b90669..9179db6ee41 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerPropertiesImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/ServerPropertiesImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/SnapshotImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/SnapshotImpl.java index 308da859b28..3e6e1163203 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/SnapshotImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/SnapshotImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/adapter/MachineSourceAdapter.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/adapter/MachineSourceAdapter.java index 5d4792106c2..fcf2c759a8d 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/adapter/MachineSourceAdapter.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/model/impl/adapter/MachineSourceAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl.adapter; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeImpl.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeImpl.java index fa0ecb4d9fb..efb4f4b4d3d 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeImpl.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.recipe; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeLoader.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeLoader.java index 56a088baeee..1d2f73805da 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeLoader.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeLoader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.recipe; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeService.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeService.java index f032b5802c1..08704b64ede 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeService.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/RecipeService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.recipe; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/adapters/RecipeTypeAdapter.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/adapters/RecipeTypeAdapter.java index 0c199aeff3d..0b3d4ac28dc 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/adapters/RecipeTypeAdapter.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/recipe/adapters/RecipeTypeAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.recipe.adapters; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/Instance.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/Instance.java index a9b5cd39ddc..9cdf67d6d80 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/Instance.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/Instance.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceNode.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceNode.java index 952dcb9ec7b..226c599d1b4 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceNode.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceNode.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceProcess.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceProcess.java index fc6454272bf..650005b8add 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceProcess.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceProvider.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceProvider.java index 12cabd0e1c5..95b914393ca 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceProvider.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/InstanceProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/RecipeDao.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/RecipeDao.java index 3382e488bfb..87fc6fb4f14 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/RecipeDao.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/RecipeDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/SnapshotDao.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/SnapshotDao.java index 536afdf9874..1f2f271d5ec 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/SnapshotDao.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/SnapshotDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/impl/AbstractInstance.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/impl/AbstractInstance.java index c565cf2fbb1..99f43d9e3de 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/impl/AbstractInstance.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/impl/AbstractInstance.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/impl/AbstractMachineProcess.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/impl/AbstractMachineProcess.java index d3356ea0ded..363c410b4e8 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/impl/AbstractMachineProcess.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/spi/impl/AbstractMachineProcess.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi.impl; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/util/RecipeDownloader.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/util/RecipeDownloader.java index 95d491e883e..9e28ef168fc 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/util/RecipeDownloader.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/util/RecipeDownloader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.util; diff --git a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/util/RecipeRetriever.java b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/util/RecipeRetriever.java index 3f97bb509d9..2fad356ef4a 100644 --- a/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/util/RecipeRetriever.java +++ b/wsmaster/che-core-api-machine/src/main/java/org/eclipse/che/api/machine/server/util/RecipeRetriever.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.util; diff --git a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/jpa/JpaTckModule.java b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/jpa/JpaTckModule.java index 61d12a78f41..76f7e92692a 100644 --- a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/jpa/JpaTckModule.java +++ b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/jpa/JpaTckModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.jpa; diff --git a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/jpa/TestWorkspaceEntity.java b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/jpa/TestWorkspaceEntity.java index 32bc185ef48..2368393cdbc 100644 --- a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/jpa/TestWorkspaceEntity.java +++ b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/jpa/TestWorkspaceEntity.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.jpa; diff --git a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/model/impl/adapter/MachineSourceAdapterTest.java b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/model/impl/adapter/MachineSourceAdapterTest.java index 7e255504440..e82247265d9 100644 --- a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/model/impl/adapter/MachineSourceAdapterTest.java +++ b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/model/impl/adapter/MachineSourceAdapterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.model.impl.adapter; diff --git a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/recipe/RecipeLoaderTest.java b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/recipe/RecipeLoaderTest.java index 47071f4d47d..259e46d0950 100644 --- a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/recipe/RecipeLoaderTest.java +++ b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/recipe/RecipeLoaderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.recipe; diff --git a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/recipe/RecipeServiceTest.java b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/recipe/RecipeServiceTest.java index 1391c8747d5..628565c2368 100644 --- a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/recipe/RecipeServiceTest.java +++ b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/recipe/RecipeServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.recipe; diff --git a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/spi/tck/RecipeDaoTest.java b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/spi/tck/RecipeDaoTest.java index a6d323f5f26..6e79b8e60e0 100644 --- a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/spi/tck/RecipeDaoTest.java +++ b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/spi/tck/RecipeDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi.tck; diff --git a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/spi/tck/SnapshotDaoTest.java b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/spi/tck/SnapshotDaoTest.java index c922a89b611..d63ff2df961 100644 --- a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/spi/tck/SnapshotDaoTest.java +++ b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/spi/tck/SnapshotDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.spi.tck; diff --git a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/util/RecipeRetrieverTest.java b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/util/RecipeRetrieverTest.java index 28f5eca2d4a..f44d7d894d8 100644 --- a/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/util/RecipeRetrieverTest.java +++ b/wsmaster/che-core-api-machine/src/test/java/org/eclipse/che/api/machine/server/util/RecipeRetrieverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server.util; diff --git a/wsmaster/che-core-api-machine/src/test/resources/logback-test.xml b/wsmaster/che-core-api-machine/src/test/resources/logback-test.xml index 2a7fd9851a8..26f112f15b5 100644 --- a/wsmaster/che-core-api-machine/src/test/resources/logback-test.xml +++ b/wsmaster/che-core-api-machine/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-project-templates-shared/pom.xml b/wsmaster/che-core-api-project-templates-shared/pom.xml index a96b317e1e6..d372b3299ad 100644 --- a/wsmaster/che-core-api-project-templates-shared/pom.xml +++ b/wsmaster/che-core-api-project-templates-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-project-templates-shared/src/main/java/org/eclipse/che/api/project/templates/shared/dto/ProjectTemplateDescriptor.java b/wsmaster/che-core-api-project-templates-shared/src/main/java/org/eclipse/che/api/project/templates/shared/dto/ProjectTemplateDescriptor.java index c667b5417ad..eb3c9a1edfe 100644 --- a/wsmaster/che-core-api-project-templates-shared/src/main/java/org/eclipse/che/api/project/templates/shared/dto/ProjectTemplateDescriptor.java +++ b/wsmaster/che-core-api-project-templates-shared/src/main/java/org/eclipse/che/api/project/templates/shared/dto/ProjectTemplateDescriptor.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.templates.shared.dto; diff --git a/wsmaster/che-core-api-project-templates/pom.xml b/wsmaster/che-core-api-project-templates/pom.xml index bc515ba2ef2..9f1cbadf29b 100644 --- a/wsmaster/che-core-api-project-templates/pom.xml +++ b/wsmaster/che-core-api-project-templates/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateDescriptionLoader.java b/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateDescriptionLoader.java index eee1f26b342..4ffd24ba8c8 100644 --- a/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateDescriptionLoader.java +++ b/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateDescriptionLoader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.template; diff --git a/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateRegistry.java b/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateRegistry.java index 631db4cc9c1..d74f206fe58 100644 --- a/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateRegistry.java +++ b/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateRegistry.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.template; diff --git a/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateService.java b/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateService.java index 9e463b378b1..73ab184bb72 100644 --- a/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateService.java +++ b/wsmaster/che-core-api-project-templates/src/main/java/org/eclipse/che/api/project/server/template/ProjectTemplateService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.project.server.template; diff --git a/wsmaster/che-core-api-ssh-shared/pom.xml b/wsmaster/che-core-api-ssh-shared/pom.xml index 02b13450087..5f7941480ea 100644 --- a/wsmaster/che-core-api-ssh-shared/pom.xml +++ b/wsmaster/che-core-api-ssh-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/Constants.java b/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/Constants.java index e278ab9f8d1..e0b5031a9ae 100644 --- a/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/Constants.java +++ b/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.shared; diff --git a/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/dto/GenerateSshPairRequest.java b/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/dto/GenerateSshPairRequest.java index d7fc9b5eeb5..51f6115bc29 100644 --- a/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/dto/GenerateSshPairRequest.java +++ b/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/dto/GenerateSshPairRequest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.shared.dto; diff --git a/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/dto/SshPairDto.java b/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/dto/SshPairDto.java index abe827ed5b1..dce7c988361 100644 --- a/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/dto/SshPairDto.java +++ b/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/dto/SshPairDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.shared.dto; diff --git a/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/model/SshPair.java b/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/model/SshPair.java index 7d721573918..39d109f3b32 100644 --- a/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/model/SshPair.java +++ b/wsmaster/che-core-api-ssh-shared/src/main/java/org/eclipse/che/api/ssh/shared/model/SshPair.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.shared.model; diff --git a/wsmaster/che-core-api-ssh/pom.xml b/wsmaster/che-core-api-ssh/pom.xml index b4e674f6367..046176fd422 100644 --- a/wsmaster/che-core-api-ssh/pom.xml +++ b/wsmaster/che-core-api-ssh/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/SshManager.java b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/SshManager.java index ba2eff7768b..a6130b1fcb2 100644 --- a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/SshManager.java +++ b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/SshManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server; diff --git a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/SshService.java b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/SshService.java index e7c9f79cfec..848995674a1 100644 --- a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/SshService.java +++ b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/SshService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server; diff --git a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/JpaSshDao.java b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/JpaSshDao.java index 19636f6d2ea..b665b79a0c8 100644 --- a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/JpaSshDao.java +++ b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/JpaSshDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server.jpa; diff --git a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/SshJpaModule.java b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/SshJpaModule.java index 2e08d237fd2..ed5b8096323 100644 --- a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/SshJpaModule.java +++ b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/SshJpaModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server.jpa; diff --git a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/SshPairPrimaryKey.java b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/SshPairPrimaryKey.java index 3b629ad42c8..b069f7c2341 100644 --- a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/SshPairPrimaryKey.java +++ b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/jpa/SshPairPrimaryKey.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server.jpa; diff --git a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/model/impl/SshPairImpl.java b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/model/impl/SshPairImpl.java index 6086db7ca5e..5f40fc15c28 100644 --- a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/model/impl/SshPairImpl.java +++ b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/model/impl/SshPairImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server.model.impl; diff --git a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/spi/SshDao.java b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/spi/SshDao.java index d3b5d1e7590..484adc15a77 100644 --- a/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/spi/SshDao.java +++ b/wsmaster/che-core-api-ssh/src/main/java/org/eclipse/che/api/ssh/server/spi/SshDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server.spi; diff --git a/wsmaster/che-core-api-ssh/src/test/java/org/eclipse/che/api/ssh/server/jpa/SshTckModule.java b/wsmaster/che-core-api-ssh/src/test/java/org/eclipse/che/api/ssh/server/jpa/SshTckModule.java index 5cad1923bfa..d2ef7850f7c 100644 --- a/wsmaster/che-core-api-ssh/src/test/java/org/eclipse/che/api/ssh/server/jpa/SshTckModule.java +++ b/wsmaster/che-core-api-ssh/src/test/java/org/eclipse/che/api/ssh/server/jpa/SshTckModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server.jpa; diff --git a/wsmaster/che-core-api-ssh/src/test/java/org/eclipse/che/api/ssh/server/spi/tck/SshDaoTest.java b/wsmaster/che-core-api-ssh/src/test/java/org/eclipse/che/api/ssh/server/spi/tck/SshDaoTest.java index 63705a49bbb..8f1ff1da95f 100644 --- a/wsmaster/che-core-api-ssh/src/test/java/org/eclipse/che/api/ssh/server/spi/tck/SshDaoTest.java +++ b/wsmaster/che-core-api-ssh/src/test/java/org/eclipse/che/api/ssh/server/spi/tck/SshDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.server.spi.tck; diff --git a/wsmaster/che-core-api-system-shared/pom.xml b/wsmaster/che-core-api-system-shared/pom.xml index 3661dd7f8ae..f9f38f8fa45 100644 --- a/wsmaster/che-core-api-system-shared/pom.xml +++ b/wsmaster/che-core-api-system-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/SystemStatus.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/SystemStatus.java index 0bf6dec44b9..73c3d97a31f 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/SystemStatus.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/SystemStatus.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemEventDto.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemEventDto.java index f9b8f924ba5..5edb46490c0 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemEventDto.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.dto; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemServiceEventDto.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemServiceEventDto.java index 2d8150d2e2a..df88632f0a6 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemServiceEventDto.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemServiceEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.dto; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemServiceItemStoppedEventDto.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemServiceItemStoppedEventDto.java index 86bf47f8467..db56e18958e 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemServiceItemStoppedEventDto.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemServiceItemStoppedEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.dto; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemStateDto.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemStateDto.java index aa5ef3ff49e..0e39627b7a9 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemStateDto.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemStateDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.dto; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemStatusChangedEventDto.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemStatusChangedEventDto.java index b2d9d9d4d1d..0c1e802a131 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemStatusChangedEventDto.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/dto/SystemStatusChangedEventDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.dto; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/EventType.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/EventType.java index 71f566647c7..04be055db42 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/EventType.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/EventType.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.event; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/SystemEvent.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/SystemEvent.java index 6a095daef79..45ca6a80259 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/SystemEvent.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/SystemEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.event; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/SystemStatusChangedEvent.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/SystemStatusChangedEvent.java index 6e5e90c0e8c..446602dfcdd 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/SystemStatusChangedEvent.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/SystemStatusChangedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.event; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/StoppingSystemServiceEvent.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/StoppingSystemServiceEvent.java index 1dece9471fc..1a2d96b8ecc 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/StoppingSystemServiceEvent.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/StoppingSystemServiceEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.event.service; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceEvent.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceEvent.java index aa2dafa9bbe..6a7c3b45a12 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceEvent.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.event.service; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceItemStoppedEvent.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceItemStoppedEvent.java index bf2a9eea691..32f0a555a5e 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceItemStoppedEvent.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceItemStoppedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.event.service; diff --git a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceStoppedEvent.java b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceStoppedEvent.java index 0f4c4f61fbf..ccea4f47478 100644 --- a/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceStoppedEvent.java +++ b/wsmaster/che-core-api-system-shared/src/main/java/org/eclipse/che/api/system/shared/event/service/SystemServiceStoppedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.shared.event.service; diff --git a/wsmaster/che-core-api-system/pom.xml b/wsmaster/che-core-api-system/pom.xml index 548f838bfbc..6dab07201e8 100644 --- a/wsmaster/che-core-api-system/pom.xml +++ b/wsmaster/che-core-api-system/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/DtoConverter.java b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/DtoConverter.java index 4594c60d7a2..fc10009abfe 100644 --- a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/DtoConverter.java +++ b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/ServiceTermination.java b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/ServiceTermination.java index 050b3fd3d27..54c1f6fafed 100644 --- a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/ServiceTermination.java +++ b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/ServiceTermination.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/ServiceTerminator.java b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/ServiceTerminator.java index f016ed1dc67..f334fcbf3ee 100644 --- a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/ServiceTerminator.java +++ b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/ServiceTerminator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemEventsWebsocketBroadcaster.java b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemEventsWebsocketBroadcaster.java index d6e53040857..0f797b8aa7c 100644 --- a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemEventsWebsocketBroadcaster.java +++ b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemEventsWebsocketBroadcaster.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemManager.java b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemManager.java index 6c38d58de23..82cd0304160 100644 --- a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemManager.java +++ b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemService.java b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemService.java index a44236d8701..b99d36ce251 100644 --- a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemService.java +++ b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/SystemService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/WorkspaceServiceTermination.java b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/WorkspaceServiceTermination.java index 75a72948ea0..d5a018904fd 100644 --- a/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/WorkspaceServiceTermination.java +++ b/wsmaster/che-core-api-system/src/main/java/org/eclipse/che/api/system/server/WorkspaceServiceTermination.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/DtoConverterTest.java b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/DtoConverterTest.java index e834c3b309f..8b7d31dc968 100644 --- a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/DtoConverterTest.java +++ b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/DtoConverterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemEventsWebsocketBroadcasterTest.java b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemEventsWebsocketBroadcasterTest.java index 017e940c78b..0f0f0a665f9 100644 --- a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemEventsWebsocketBroadcasterTest.java +++ b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemEventsWebsocketBroadcasterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemManagerTest.java b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemManagerTest.java index 7f510db1023..eef04a1df30 100644 --- a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemManagerTest.java +++ b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemTerminatorTest.java b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemTerminatorTest.java index 59159046c31..644b7f09a55 100644 --- a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemTerminatorTest.java +++ b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/SystemTerminatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/WorkspaceServiceTerminationTest.java b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/WorkspaceServiceTerminationTest.java index e467f732c0c..6280dcf56f3 100644 --- a/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/WorkspaceServiceTerminationTest.java +++ b/wsmaster/che-core-api-system/src/test/java/org/eclipse/che/api/system/server/WorkspaceServiceTerminationTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.system.server; diff --git a/wsmaster/che-core-api-system/src/test/resources/logback-test.xml b/wsmaster/che-core-api-system/src/test/resources/logback-test.xml index 0cfd2d60075..0a30d3b48ce 100644 --- a/wsmaster/che-core-api-system/src/test/resources/logback-test.xml +++ b/wsmaster/che-core-api-system/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-user-shared/pom.xml b/wsmaster/che-core-api-user-shared/pom.xml index 9321e585595..93a8ef58b92 100644 --- a/wsmaster/che-core-api-user-shared/pom.xml +++ b/wsmaster/che-core-api-user-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-user-shared/src/main/java/org/eclipse/che/api/user/shared/dto/ProfileDto.java b/wsmaster/che-core-api-user-shared/src/main/java/org/eclipse/che/api/user/shared/dto/ProfileDto.java index 3e9243b43b1..a0c44a2abf0 100644 --- a/wsmaster/che-core-api-user-shared/src/main/java/org/eclipse/che/api/user/shared/dto/ProfileDto.java +++ b/wsmaster/che-core-api-user-shared/src/main/java/org/eclipse/che/api/user/shared/dto/ProfileDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.shared.dto; diff --git a/wsmaster/che-core-api-user-shared/src/main/java/org/eclipse/che/api/user/shared/dto/UserDto.java b/wsmaster/che-core-api-user-shared/src/main/java/org/eclipse/che/api/user/shared/dto/UserDto.java index 58b6ea4609a..a8f66fb30e8 100644 --- a/wsmaster/che-core-api-user-shared/src/main/java/org/eclipse/che/api/user/shared/dto/UserDto.java +++ b/wsmaster/che-core-api-user-shared/src/main/java/org/eclipse/che/api/user/shared/dto/UserDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.shared.dto; diff --git a/wsmaster/che-core-api-user/pom.xml b/wsmaster/che-core-api-user/pom.xml index e379001ed7f..20a0989d93d 100644 --- a/wsmaster/che-core-api-user/pom.xml +++ b/wsmaster/che-core-api-user/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/CheUserCreator.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/CheUserCreator.java index 364f38b4351..a3084dfccd0 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/CheUserCreator.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/CheUserCreator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/Constants.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/Constants.java index d89cbef08fd..6a7faa4b488 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/Constants.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/DtoConverter.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/DtoConverter.java index 7e73588f814..558a8f503b1 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/DtoConverter.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/PreferenceManager.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/PreferenceManager.java index 9410eeeb3b0..8e09c51835e 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/PreferenceManager.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/PreferenceManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/PreferencesService.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/PreferencesService.java index 4a7017f9e2b..36ba7ecac84 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/PreferencesService.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/PreferencesService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileLinksInjector.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileLinksInjector.java index c49dc6eeaea..72c5f859f19 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileLinksInjector.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileLinksInjector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileManager.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileManager.java index d4e840359da..907ca5799dd 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileManager.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileService.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileService.java index 078099a75d6..2cb418a382d 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileService.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/ProfileService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/TokenValidator.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/TokenValidator.java index 1a122a46bbf..4983c56c0cd 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/TokenValidator.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/TokenValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserLinksInjector.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserLinksInjector.java index b7a298febb7..3402eaf5e5a 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserLinksInjector.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserLinksInjector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserManager.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserManager.java index 366951f2974..a9730cd143d 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserManager.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserService.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserService.java index fc70bde9384..bbfbd47435b 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserService.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserValidator.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserValidator.java index f067ba2ba97..daf30189a29 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserValidator.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/UserValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/BeforeUserRemovedEvent.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/BeforeUserRemovedEvent.java index 11e3281a026..4ab2eeeaa0e 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/BeforeUserRemovedEvent.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/BeforeUserRemovedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.event; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/PostUserPersistedEvent.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/PostUserPersistedEvent.java index eb12aff5438..0910122c568 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/PostUserPersistedEvent.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/PostUserPersistedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.event; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/UserCreatedEvent.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/UserCreatedEvent.java index a696c96f216..62ac7e371a3 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/UserCreatedEvent.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/UserCreatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.event; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/UserRemovedEvent.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/UserRemovedEvent.java index 89b766adf5c..03bf17037ed 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/UserRemovedEvent.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/event/UserRemovedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.event; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaPreferenceDao.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaPreferenceDao.java index bad3f3d6809..04cfc576604 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaPreferenceDao.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaPreferenceDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaProfileDao.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaProfileDao.java index 86e98911365..d4c43551ff3 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaProfileDao.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaProfileDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaUserDao.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaUserDao.java index 528f666c27a..5b040db8c54 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaUserDao.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/JpaUserDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/PreferenceEntity.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/PreferenceEntity.java index 6932ff3d4c6..f0716e1c7b2 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/PreferenceEntity.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/PreferenceEntity.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/UserJpaModule.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/UserJpaModule.java index 7fbbea68834..0d5233c293d 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/UserJpaModule.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/jpa/UserJpaModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/model/impl/ProfileImpl.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/model/impl/ProfileImpl.java index e69a9bb7f7e..f8c3bb4bf87 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/model/impl/ProfileImpl.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/model/impl/ProfileImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.model.impl; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/model/impl/UserImpl.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/model/impl/UserImpl.java index f8a95fe0a3d..9d900050f5c 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/model/impl/UserImpl.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/model/impl/UserImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.model.impl; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/PreferenceDao.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/PreferenceDao.java index 97a066691f3..f77a853a9a4 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/PreferenceDao.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/PreferenceDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.spi; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/ProfileDao.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/ProfileDao.java index 7a074707e40..eac517ec6a3 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/ProfileDao.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/ProfileDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.spi; diff --git a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/UserDao.java b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/UserDao.java index 863c67a136f..684c3d32756 100644 --- a/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/UserDao.java +++ b/wsmaster/che-core-api-user/src/main/java/org/eclipse/che/api/user/server/spi/UserDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.spi; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/PreferenceManagerTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/PreferenceManagerTest.java index e6925dce25b..0681a8623f8 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/PreferenceManagerTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/PreferenceManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/PreferencesServiceTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/PreferencesServiceTest.java index eaf692390b2..e63b892105d 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/PreferencesServiceTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/PreferencesServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileLinksInjectorTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileLinksInjectorTest.java index 10ff2349968..c050c19f69d 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileLinksInjectorTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileLinksInjectorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileManagerTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileManagerTest.java index d29c3c90e89..504fdfba263 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileManagerTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileServiceTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileServiceTest.java index 3f2c37c96ef..5c98f5bcfd3 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileServiceTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/ProfileServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserLinksInjectorTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserLinksInjectorTest.java index 5f624f3512d..31ddba61e6e 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserLinksInjectorTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserLinksInjectorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserManagerTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserManagerTest.java index 23c335e869e..85b35c6c9bc 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserManagerTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserServiceTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserServiceTest.java index 5e6687124ee..c895ec36fd9 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserServiceTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserValidatorTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserValidatorTest.java index bb0faca1e2c..229d7096dbf 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserValidatorTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/UserValidatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/JpaTckModule.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/JpaTckModule.java index 39eb1880bf0..4076babac36 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/JpaTckModule.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/JpaTckModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/JpaUserDaoTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/JpaUserDaoTest.java index 200369e8c27..b7a2b2f57fe 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/JpaUserDaoTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/JpaUserDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/PreferenceJpaTckRepository.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/PreferenceJpaTckRepository.java index 3b18bf5857e..86b900aff52 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/PreferenceJpaTckRepository.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/PreferenceJpaTckRepository.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/UserJpaTckRepository.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/UserJpaTckRepository.java index 43a78dbef71..afa91887f20 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/UserJpaTckRepository.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/jpa/UserJpaTckRepository.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.jpa; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/model/impl/DataObjectsTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/model/impl/DataObjectsTest.java index 75a947f9376..e17d3bec36b 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/model/impl/DataObjectsTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/model/impl/DataObjectsTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.model.impl; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/PreferenceDaoTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/PreferenceDaoTest.java index 36b327bcce3..7d496ddf1b4 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/PreferenceDaoTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/PreferenceDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.spi.tck; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/ProfileDaoTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/ProfileDaoTest.java index 63bdbd6f245..a250a22a5eb 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/ProfileDaoTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/ProfileDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.spi.tck; diff --git a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/UserDaoTest.java b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/UserDaoTest.java index 373a0b1d4b7..dcadb838404 100644 --- a/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/UserDaoTest.java +++ b/wsmaster/che-core-api-user/src/test/java/org/eclipse/che/api/user/server/spi/tck/UserDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.user.server.spi.tck; diff --git a/wsmaster/che-core-api-workspace-shared/pom.xml b/wsmaster/che-core-api-workspace-shared/pom.xml index ccae7a23a2d..1f245f232c6 100644 --- a/wsmaster/che-core-api-workspace-shared/pom.xml +++ b/wsmaster/che-core-api-workspace-shared/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/Constants.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/Constants.java index e130d805fc6..886312cf1c2 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/Constants.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/Constants.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/Utils.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/Utils.java index bcb9d9f07e2..a6cb0527e35 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/Utils.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/Utils.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/EnvironmentDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/EnvironmentDto.java index 74a727951df..00d3015341d 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/EnvironmentDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/EnvironmentDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/EnvironmentRecipeDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/EnvironmentRecipeDto.java index f48a881a934..d8489a60f2e 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/EnvironmentRecipeDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/EnvironmentRecipeDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ExtendedMachineDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ExtendedMachineDto.java index 6723bf4904a..1f82d24169c 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ExtendedMachineDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ExtendedMachineDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/NewProjectConfigDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/NewProjectConfigDto.java index 7208c38c1c6..4e6f1b914b0 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/NewProjectConfigDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/NewProjectConfigDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ProjectConfigDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ProjectConfigDto.java index 541ced78a48..667189ac330 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ProjectConfigDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ProjectConfigDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ProjectProblemDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ProjectProblemDto.java index f1bc020fad8..b8e01bcf1bd 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ProjectProblemDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ProjectProblemDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ServerConf2Dto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ServerConf2Dto.java index c88840d6531..7194263d9ad 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ServerConf2Dto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/ServerConf2Dto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/SourceStorageDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/SourceStorageDto.java index 6a2887c7994..8e14fc16837 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/SourceStorageDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/SourceStorageDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceConfigDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceConfigDto.java index bc5547b3274..54064eb5378 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceConfigDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceConfigDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceDto.java index e02215ed75d..cc4f23b5c59 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceRuntimeDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceRuntimeDto.java index cbedf973e75..ec64bbc796f 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceRuntimeDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WorkspaceRuntimeDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WsAgentHealthStateDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WsAgentHealthStateDto.java index 6190ffdda4c..66c7a37db9e 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WsAgentHealthStateDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/WsAgentHealthStateDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/event/WorkspaceStatusEvent.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/event/WorkspaceStatusEvent.java index bdda33112b0..78826ad53cc 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/event/WorkspaceStatusEvent.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/event/WorkspaceStatusEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto.event; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackComponentDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackComponentDto.java index 67870162399..c64ff28392a 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackComponentDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackComponentDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto.stack; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackDto.java index 41afd370fc2..4e59ea3ec45 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto.stack; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackSourceDto.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackSourceDto.java index 0a0e8c3141d..4c5c87d08a0 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackSourceDto.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/dto/stack/StackSourceDto.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.dto.stack; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/Stack.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/Stack.java index 924187da6a0..a373fcf2bec 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/Stack.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/Stack.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.stack; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/StackComponent.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/StackComponent.java index 390e0522ada..201d401ebdf 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/StackComponent.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/StackComponent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.stack; diff --git a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/StackSource.java b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/StackSource.java index bc2bbd839d4..333758d5048 100644 --- a/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/StackSource.java +++ b/wsmaster/che-core-api-workspace-shared/src/main/java/org/eclipse/che/api/workspace/shared/stack/StackSource.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.shared.stack; diff --git a/wsmaster/che-core-api-workspace/pom.xml b/wsmaster/che-core-api-workspace/pom.xml index aa7ccb56a67..2f1d3cfdabc 100644 --- a/wsmaster/che-core-api-workspace/pom.xml +++ b/wsmaster/che-core-api-workspace/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentHealthChecker.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentHealthChecker.java index cd014abb5bc..7ad799200c9 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentHealthChecker.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentHealthChecker.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentHealthCheckerImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentHealthCheckerImpl.java index 6a87d809cc5..dd97586fedd 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentHealthCheckerImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentHealthCheckerImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentPingRequestFactory.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentPingRequestFactory.java index 5d5edca79e7..b3376cd1c78 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentPingRequestFactory.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/WsAgentPingRequestFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInEnvironmentUtil.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInEnvironmentUtil.java index f04240da751..110099fd1e6 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInEnvironmentUtil.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInEnvironmentUtil.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.filters; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInStackFilter.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInStackFilter.java index ef139b5e42e..6dd3ef4316a 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInStackFilter.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInStackFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.filters; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInWorkspaceFilter.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInWorkspaceFilter.java index f11795afeb5..bf6719d5a34 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInWorkspaceFilter.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInWorkspaceFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.filters; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/terminal/WebsocketTerminalFilesPathProvider.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/terminal/WebsocketTerminalFilesPathProvider.java index b03f7d34f7d..9d8db20e726 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/terminal/WebsocketTerminalFilesPathProvider.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/agent/server/terminal/WebsocketTerminalFilesPathProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.terminal; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/AgentConfigApplier.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/AgentConfigApplier.java index 026a7ac92aa..b3ffd91aaf9 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/AgentConfigApplier.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/AgentConfigApplier.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/CheEnvironmentEngine.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/CheEnvironmentEngine.java index c37607c4ac9..2560f9da4e3 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/CheEnvironmentEngine.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/CheEnvironmentEngine.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/CheEnvironmentValidator.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/CheEnvironmentValidator.java index 19462a92b15..060a7a85d28 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/CheEnvironmentValidator.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/CheEnvironmentValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/ContainerNameGenerator.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/ContainerNameGenerator.java index 200725a24e4..8df690ccd75 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/ContainerNameGenerator.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/ContainerNameGenerator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/DefaultInfrastructureProvisioner.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/DefaultInfrastructureProvisioner.java index 245e8820212..1eb5b6f7944 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/DefaultInfrastructureProvisioner.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/DefaultInfrastructureProvisioner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/DefaultServicesStartStrategy.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/DefaultServicesStartStrategy.java index 05e0f49141e..21e7f2d096e 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/DefaultServicesStartStrategy.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/DefaultServicesStartStrategy.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/EnvironmentParser.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/EnvironmentParser.java index 4680161d883..9ae19c81902 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/EnvironmentParser.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/EnvironmentParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/InfrastructureProvisioner.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/InfrastructureProvisioner.java index 95dc3e2a49a..6202a73390c 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/InfrastructureProvisioner.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/InfrastructureProvisioner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineInstanceProvider.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineInstanceProvider.java index 3547dc2f99c..471d3a017e1 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineInstanceProvider.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineInstanceProvider.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineLinksInjector.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineLinksInjector.java index 3b139e37ca6..2bcaeb6bafe 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineLinksInjector.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineLinksInjector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineProcessManager.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineProcessManager.java index 7d9ed04d2ec..9899b8f254e 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineProcessManager.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineProcessManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineStartedHandler.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineStartedHandler.java index e0ab139850b..26dc588f731 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineStartedHandler.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/MachineStartedHandler.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/NoOpMachineInstance.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/NoOpMachineInstance.java index 6fae270c878..e8569a87317 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/NoOpMachineInstance.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/NoOpMachineInstance.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/TypeSpecificEnvironmentParser.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/TypeSpecificEnvironmentParser.java index dac7858297f..86dfa087d24 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/TypeSpecificEnvironmentParser.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/TypeSpecificEnvironmentParser.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentException.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentException.java index 5c287c12433..ff9a4d497e3 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentException.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server.exception; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentNotRunningException.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentNotRunningException.java index 2871555b445..c58764266b5 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentNotRunningException.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentNotRunningException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server.exception; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentStartInterruptedException.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentStartInterruptedException.java index 21629b71e6d..265f1d661ed 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentStartInterruptedException.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/exception/EnvironmentStartInterruptedException.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server.exception; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServiceBuildContextImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServiceBuildContextImpl.java index f31e6b8b943..0be576f3ea5 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServiceBuildContextImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServiceBuildContextImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server.model; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServiceImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServiceImpl.java index e9b6369e349..9545590e331 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServiceImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServiceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server.model; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServicesEnvironmentImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServicesEnvironmentImpl.java index 0351ae5f4dd..489f5813246 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServicesEnvironmentImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/environment/server/model/CheServicesEnvironmentImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server.model; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/DefaultWorkspaceValidator.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/DefaultWorkspaceValidator.java index 2b8ed704e7b..90a212228eb 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/DefaultWorkspaceValidator.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/DefaultWorkspaceValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/DtoConverter.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/DtoConverter.java index 8c2dd8d1431..7dd84d4d416 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/DtoConverter.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/DtoConverter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/RecipeScriptDownloadService.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/RecipeScriptDownloadService.java index b08e6bbc072..568214a5ad2 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/RecipeScriptDownloadService.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/RecipeScriptDownloadService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/TemporaryWorkspaceRemover.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/TemporaryWorkspaceRemover.java index a34a36d3805..7127c227f7b 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/TemporaryWorkspaceRemover.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/TemporaryWorkspaceRemover.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceConfigJsonAdapter.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceConfigJsonAdapter.java index a88d3409847..9176833bf51 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceConfigJsonAdapter.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceConfigJsonAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceConfigMessageBodyAdapter.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceConfigMessageBodyAdapter.java index 8696b5158f3..8a25db30fdc 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceConfigMessageBodyAdapter.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceConfigMessageBodyAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceFilesCleaner.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceFilesCleaner.java index 40ae7ad4637..a458ccac358 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceFilesCleaner.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceFilesCleaner.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceManager.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceManager.java index cdc30f0c0c0..da5ce08de1e 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceManager.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceMessageBodyAdapter.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceMessageBodyAdapter.java index 4430c1c4d2f..cf21359053e 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceMessageBodyAdapter.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceMessageBodyAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimes.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimes.java index 6efec99fbe1..31395197507 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimes.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimes.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceService.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceService.java index 2527073f3da..c921f8e88fa 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceService.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceServiceLinksInjector.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceServiceLinksInjector.java index 2df44b62807..dee26d7c5dd 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceServiceLinksInjector.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceServiceLinksInjector.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceSharedPool.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceSharedPool.java index cb4fce6ac39..a6aa8d6191d 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceSharedPool.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceSharedPool.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceValidator.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceValidator.java index ba583680b47..ce72bc7d44b 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceValidator.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/WorkspaceValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityManager.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityManager.java index d968a503934..451dcbef282 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityManager.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityManager.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.activity; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityService.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityService.java index e89e8843e95..0252bf26b91 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityService.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.activity; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/inject/WorkspaceActivityModule.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/inject/WorkspaceActivityModule.java index ab6a6364a0b..142b8cd154e 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/inject/WorkspaceActivityModule.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/activity/inject/WorkspaceActivityModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.activity.inject; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/BeforeStackRemovedEvent.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/BeforeStackRemovedEvent.java index 3eb4bdc562d..b51c32bed5e 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/BeforeStackRemovedEvent.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/BeforeStackRemovedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/BeforeWorkspaceRemovedEvent.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/BeforeWorkspaceRemovedEvent.java index 0eef4b0c35b..e9f55508623 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/BeforeWorkspaceRemovedEvent.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/BeforeWorkspaceRemovedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/MachineStateListener.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/MachineStateListener.java index 287962b9c5f..998d59c6136 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/MachineStateListener.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/MachineStateListener.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/StackPersistedEvent.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/StackPersistedEvent.java index 02f11eef43b..6f13143530b 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/StackPersistedEvent.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/StackPersistedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceCreatedEvent.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceCreatedEvent.java index afd6112f00d..2edd4d7ebf2 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceCreatedEvent.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceCreatedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceJsonRpcMessenger.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceJsonRpcMessenger.java index ea993e5562a..e6e375f9dd2 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceJsonRpcMessenger.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceJsonRpcMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceMessenger.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceMessenger.java index 9b306001dda..e76fea34222 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceMessenger.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceMessenger.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceRemovedEvent.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceRemovedEvent.java index d43f1888d06..0a5cd95df30 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceRemovedEvent.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/event/WorkspaceRemovedEvent.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/JpaStackDao.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/JpaStackDao.java index df74287714a..3f9a4ed861b 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/JpaStackDao.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/JpaStackDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.jpa; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/JpaWorkspaceDao.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/JpaWorkspaceDao.java index a66c8a8f683..2135bacf3d3 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/JpaWorkspaceDao.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/JpaWorkspaceDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.jpa; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/WorkspaceJpaModule.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/WorkspaceJpaModule.java index aee99761384..446ca1c0625 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/WorkspaceJpaModule.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/jpa/WorkspaceJpaModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.jpa; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/EnvironmentImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/EnvironmentImpl.java index 8240038ed27..3da8cffffbc 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/EnvironmentImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/EnvironmentImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/EnvironmentRecipeImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/EnvironmentRecipeImpl.java index 9917b502a8e..c632eb2fb42 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/EnvironmentRecipeImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/EnvironmentRecipeImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ExtendedMachineImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ExtendedMachineImpl.java index 7f446ab6386..0f25eeed39c 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ExtendedMachineImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ExtendedMachineImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ProjectConfigImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ProjectConfigImpl.java index 3e85a1e1d38..f9745f74f61 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ProjectConfigImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ProjectConfigImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ServerConf2Impl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ServerConf2Impl.java index 300a47b5060..e492459fa2a 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ServerConf2Impl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/ServerConf2Impl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/SourceStorageImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/SourceStorageImpl.java index 0b71397040f..8bbc67c9fcf 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/SourceStorageImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/SourceStorageImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceConfigImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceConfigImpl.java index 73d87e031ae..72398fe0e58 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceConfigImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceConfigImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceImpl.java index 3b1ebfe89b7..fabf6e1fdaf 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceRuntimeImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceRuntimeImpl.java index 1f45f8d719c..dd4c9501fb3 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceRuntimeImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/WorkspaceRuntimeImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackComponentImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackComponentImpl.java index c64ff5a89ef..25d533e0494 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackComponentImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackComponentImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl.stack; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackImpl.java index 706c2c89db1..11741d6c822 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl.stack; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackSourceImpl.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackSourceImpl.java index 47b7fa15416..e86d2175722 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackSourceImpl.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/model/impl/stack/StackSourceImpl.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.model.impl.stack; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/spi/StackDao.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/spi/StackDao.java index 59bed22179e..f7119541c69 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/spi/StackDao.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/spi/StackDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.spi; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/spi/WorkspaceDao.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/spi/WorkspaceDao.java index 549e1e9ff45..cea3aed8230 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/spi/WorkspaceDao.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/spi/WorkspaceDao.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.spi; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackJsonAdapter.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackJsonAdapter.java index 843adb3bcea..9514972f3c5 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackJsonAdapter.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackJsonAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackLoader.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackLoader.java index 6ea619edf9a..a3561313c41 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackLoader.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackLoader.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackMessageBodyAdapter.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackMessageBodyAdapter.java index 31a945c6b80..54e0ee73091 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackMessageBodyAdapter.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackMessageBodyAdapter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackService.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackService.java index d615c74aae6..0bc176d7947 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackService.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackService.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackValidator.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackValidator.java index d4985adf977..b3d36cc26e6 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackValidator.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/StackValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack; diff --git a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/image/StackIcon.java b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/image/StackIcon.java index 09c0282e41c..d47fb2afb44 100644 --- a/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/image/StackIcon.java +++ b/wsmaster/che-core-api-workspace/src/main/java/org/eclipse/che/api/workspace/server/stack/image/StackIcon.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack.image; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/WsAgentHealthCheckerTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/WsAgentHealthCheckerTest.java index e3024744717..3214a6ba667 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/WsAgentHealthCheckerTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/WsAgentHealthCheckerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/WsAgentPingRequestFactoryTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/WsAgentPingRequestFactoryTest.java index 69b00930edb..d07d87c3685 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/WsAgentPingRequestFactoryTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/WsAgentPingRequestFactoryTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInStackFilterTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInStackFilterTest.java index 23076d9f1c0..5b53874b4b2 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInStackFilterTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInStackFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.filters; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInWorkspaceFilterTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInWorkspaceFilterTest.java index aca31442141..551678f2f25 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInWorkspaceFilterTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/agent/server/filters/AddExecAgentInWorkspaceFilterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.agent.server.filters; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/AgentConfigApplierTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/AgentConfigApplierTest.java index 634c541477b..0694c45d9a8 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/AgentConfigApplierTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/AgentConfigApplierTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/CheEnvironmentEngineTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/CheEnvironmentEngineTest.java index cbed423b5f8..21b7f073de4 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/CheEnvironmentEngineTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/CheEnvironmentEngineTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/CheEnvironmentValidatorTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/CheEnvironmentValidatorTest.java index c5b0be9fb15..6837d86fcfd 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/CheEnvironmentValidatorTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/CheEnvironmentValidatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/EnvironmentParserTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/EnvironmentParserTest.java index 21c717253f8..d8bed59eafb 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/EnvironmentParserTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/EnvironmentParserTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/MachineProcessManagerTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/MachineProcessManagerTest.java index 33fa52b1b51..f78eb8ea9f9 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/MachineProcessManagerTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/MachineProcessManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/MachineServiceLinksInjectorTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/MachineServiceLinksInjectorTest.java index 26829b7e43a..17e78dc09fb 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/MachineServiceLinksInjectorTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/MachineServiceLinksInjectorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/compose/DefaultServicesStartStrategyTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/compose/DefaultServicesStartStrategyTest.java index 2f37f28eca4..018ffb9fbaa 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/compose/DefaultServicesStartStrategyTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/environment/server/compose/DefaultServicesStartStrategyTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.environment.server.compose; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/DefaultWorkspaceValidatorTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/DefaultWorkspaceValidatorTest.java index 6a8a7908e43..f2c69a24012 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/DefaultWorkspaceValidatorTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/DefaultWorkspaceValidatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/TemporaryWorkspaceRemoverTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/TemporaryWorkspaceRemoverTest.java index cffd804bf7a..0f88637c244 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/TemporaryWorkspaceRemoverTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/TemporaryWorkspaceRemoverTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceConfigJsonAdapterTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceConfigJsonAdapterTest.java index 3b5b91816e5..6e0511707df 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceConfigJsonAdapterTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceConfigJsonAdapterTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceManagerTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceManagerTest.java index 1a25b1fad79..13c801db1f7 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceManagerTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimeIntegrationTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimeIntegrationTest.java index e1664d1c014..c7c8b6f936e 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimeIntegrationTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimeIntegrationTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimesTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimesTest.java index 5764ac0b480..e9a865ebc5d 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimesTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceRuntimesTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceServiceTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceServiceTest.java index f59c23d3ffe..bc389614f10 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceServiceTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/WorkspaceServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityManagerTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityManagerTest.java index 01b3c7b0069..a9457cedece 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityManagerTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityManagerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.activity; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityServiceTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityServiceTest.java index 1b3760350db..97417381d35 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityServiceTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/activity/WorkspaceActivityServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.activity; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/event/MachineStateListenerTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/event/MachineStateListenerTest.java index 3acf8cfc9cd..0b4590a158f 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/event/MachineStateListenerTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/event/MachineStateListenerTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.event; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/jpa/JpaWorkspaceDaoTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/jpa/JpaWorkspaceDaoTest.java index 5a64d164add..1884ad62c6a 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/jpa/JpaWorkspaceDaoTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/jpa/JpaWorkspaceDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.jpa; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/jpa/WorkspaceTckModule.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/jpa/WorkspaceTckModule.java index e7722f87a3b..a3f7f1bfde8 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/jpa/WorkspaceTckModule.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/jpa/WorkspaceTckModule.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.jpa; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/spi/tck/StackDaoTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/spi/tck/StackDaoTest.java index 54592b40756..192c19a5ec4 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/spi/tck/StackDaoTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/spi/tck/StackDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.spi.tck; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/spi/tck/WorkspaceDaoTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/spi/tck/WorkspaceDaoTest.java index dabc470a89e..62402f84200 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/spi/tck/WorkspaceDaoTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/spi/tck/WorkspaceDaoTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.spi.tck; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackLoaderTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackLoaderTest.java index c5b78852ce3..e920f59d172 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackLoaderTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackLoaderTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackServiceTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackServiceTest.java index de40812e063..29940cbc24a 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackServiceTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackServiceTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack; diff --git a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackValidatorTest.java b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackValidatorTest.java index 900c83f4e0d..a26a1b2b607 100644 --- a/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackValidatorTest.java +++ b/wsmaster/che-core-api-workspace/src/test/java/org/eclipse/che/api/workspace/server/stack/StackValidatorTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.workspace.server.stack; diff --git a/wsmaster/che-core-api-workspace/src/test/resources/logback-test.xml b/wsmaster/che-core-api-workspace/src/test/resources/logback-test.xml index fcf447cc26f..072d6e90643 100644 --- a/wsmaster/che-core-api-workspace/src/test/resources/logback-test.xml +++ b/wsmaster/che-core-api-workspace/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-api-workspace/src/test/resources/stack_img/type-java.svg b/wsmaster/che-core-api-workspace/src/test/resources/stack_img/type-java.svg index b66a2ea09c2..383bf585d35 100644 --- a/wsmaster/che-core-api-workspace/src/test/resources/stack_img/type-java.svg +++ b/wsmaster/che-core-api-workspace/src/test/resources/stack_img/type-java.svg @@ -1,14 +1,14 @@ diff --git a/wsmaster/che-core-sql-schema/pom.xml b/wsmaster/che-core-sql-schema/pom.xml index d2635f703ee..15dfa853149 100644 --- a/wsmaster/che-core-sql-schema/pom.xml +++ b/wsmaster/che-core-sql-schema/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/integration-tests/cascade-removal/pom.xml b/wsmaster/integration-tests/cascade-removal/pom.xml index 59abe130619..a2700f9b8d1 100644 --- a/wsmaster/integration-tests/cascade-removal/pom.xml +++ b/wsmaster/integration-tests/cascade-removal/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/integration-tests/cascade-removal/src/test/java/org/eclipse/che/core/db/jpa/CascadeRemovalTest.java b/wsmaster/integration-tests/cascade-removal/src/test/java/org/eclipse/che/core/db/jpa/CascadeRemovalTest.java index ff645073bd8..af1b2ed246e 100644 --- a/wsmaster/integration-tests/cascade-removal/src/test/java/org/eclipse/che/core/db/jpa/CascadeRemovalTest.java +++ b/wsmaster/integration-tests/cascade-removal/src/test/java/org/eclipse/che/core/db/jpa/CascadeRemovalTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.jpa; diff --git a/wsmaster/integration-tests/cascade-removal/src/test/java/org/eclipse/che/core/db/jpa/TestObjectsFactory.java b/wsmaster/integration-tests/cascade-removal/src/test/java/org/eclipse/che/core/db/jpa/TestObjectsFactory.java index bbcb86a14b6..8c1ca0e2926 100644 --- a/wsmaster/integration-tests/cascade-removal/src/test/java/org/eclipse/che/core/db/jpa/TestObjectsFactory.java +++ b/wsmaster/integration-tests/cascade-removal/src/test/java/org/eclipse/che/core/db/jpa/TestObjectsFactory.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.core.db.jpa; diff --git a/wsmaster/integration-tests/pom.xml b/wsmaster/integration-tests/pom.xml index e494b8d8c07..b82f88f30e3 100644 --- a/wsmaster/integration-tests/pom.xml +++ b/wsmaster/integration-tests/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/integration-tests/postgresql-tck/pom.xml b/wsmaster/integration-tests/postgresql-tck/pom.xml index e64935ea3bf..238984164df 100644 --- a/wsmaster/integration-tests/postgresql-tck/pom.xml +++ b/wsmaster/integration-tests/postgresql-tck/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/integration-tests/postgresql-tck/src/test/java/PostgreSqlTckModule.java b/wsmaster/integration-tests/postgresql-tck/src/test/java/PostgreSqlTckModule.java index ab9f8a4f4d0..17964f4671b 100644 --- a/wsmaster/integration-tests/postgresql-tck/src/test/java/PostgreSqlTckModule.java +++ b/wsmaster/integration-tests/postgresql-tck/src/test/java/PostgreSqlTckModule.java @@ -1,14 +1,13 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ - import com.google.inject.TypeLiteral; import com.google.inject.persist.Transactional; diff --git a/wsmaster/integration-tests/postgresql-tck/src/test/resources/logback-test.xml b/wsmaster/integration-tests/postgresql-tck/src/test/resources/logback-test.xml index 897d1dffff0..a26c5f34182 100644 --- a/wsmaster/integration-tests/postgresql-tck/src/test/resources/logback-test.xml +++ b/wsmaster/integration-tests/postgresql-tck/src/test/resources/logback-test.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/pom.xml b/wsmaster/pom.xml index f7d6356c147..3edb16a9e9d 100644 --- a/wsmaster/pom.xml +++ b/wsmaster/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/wsmaster-local/pom.xml b/wsmaster/wsmaster-local/pom.xml index 6f560b86bcf..c437b75c4dc 100644 --- a/wsmaster/wsmaster-local/pom.xml +++ b/wsmaster/wsmaster-local/pom.xml @@ -1,14 +1,14 @@ diff --git a/wsmaster/wsmaster-local/src/main/java/org/eclipse/che/api/local/DummyTokenValidator.java b/wsmaster/wsmaster-local/src/main/java/org/eclipse/che/api/local/DummyTokenValidator.java index 73b6dbf143f..087492b02a6 100644 --- a/wsmaster/wsmaster-local/src/main/java/org/eclipse/che/api/local/DummyTokenValidator.java +++ b/wsmaster/wsmaster-local/src/main/java/org/eclipse/che/api/local/DummyTokenValidator.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.local; diff --git a/wsmaster/wsmaster-local/src/main/java/org/eclipse/che/api/local/filters/EnvironmentInitializationFilter.java b/wsmaster/wsmaster-local/src/main/java/org/eclipse/che/api/local/filters/EnvironmentInitializationFilter.java index 034221d7112..cf5f45c5575 100644 --- a/wsmaster/wsmaster-local/src/main/java/org/eclipse/che/api/local/filters/EnvironmentInitializationFilter.java +++ b/wsmaster/wsmaster-local/src/main/java/org/eclipse/che/api/local/filters/EnvironmentInitializationFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2012-2017 Codenvy, S.A. + * Copyright (c) 2012-2017 Red Hat, 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: - * Codenvy, S.A. - initial API and implementation + * Red Hat, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.local.filters; From 5d8744af49daae808c344d1b7e6a27389cbfddac Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Mon, 14 Aug 2017 11:39:42 +0300 Subject: [PATCH 14/33] CHE-5892: Add AlteredFiles test --- .../git/client/commit/CommitPresenter.java | 2 +- .../ext/git/client/compare/AlteredFiles.java | 14 ++- .../git/client/compare/ComparePresenter.java | 6 +- .../changespanel/ChangesPanelViewImpl.java | 6 +- .../git/client/compare/AlteredFilesTest.java | 105 ++++++++++++++++++ 5 files changed, 120 insertions(+), 13 deletions(-) create mode 100644 plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index f38fcb3f249..1e8dbb7884f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -162,7 +162,7 @@ private void showAskForAmendDialog() { private void show(@Nullable String diff) { AlteredFiles alteredFiles = new AlteredFiles(project, diff); filesToCommit.clear(); - allFiles = alteredFiles.getChangedItemsList(); + allFiles = alteredFiles.getChangedFilesList(); view.setEnableCommitButton(!view.getMessage().isEmpty()); view.focusInMessageField(); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java index 6e469a383b1..a4a6f862eed 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java @@ -44,8 +44,10 @@ public AlteredFiles(Project project, String diff) { this.project = project; changedFilesStatuses = new LinkedHashMap<>(); - for (String item : diff.split("\n")) { - changedFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); + if (!"".equals(diff)) { + for (String item : diff.split("\n")) { + changedFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); + } } changedFilesList = new ArrayList<>(changedFilesStatuses.keySet()); @@ -66,15 +68,15 @@ public boolean isEmpty() { return 0 == changedFilesList.size(); } - public Map getChangedItemsMap() { + public Map getChangedFilesMap() { return changedFilesStatuses; } - public List getChangedItemsList() { + public List getChangedFilesList() { return changedFilesList; } - public Status getStatusByPath(String pathToChangedItem) { + public Status getStatusByFilePath(String pathToChangedItem) { return changedFilesStatuses.get(pathToChangedItem); } @@ -82,7 +84,7 @@ public Status getStatusByIndex(int index) { return changedFilesStatuses.get(changedFilesList.get(index)); } - public String getItemByIndex(int index) { + public String getFileByIndex(int index) { return changedFilesList.get(index); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 301a97633fa..f166ffd11da 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -138,7 +138,7 @@ private void showCompareForCurrentFile() { view.setEnablePreviousDiffButton(currentFileIndex != 0); alteredFiles.getProject() - .getFile(alteredFiles.getItemByIndex(currentFileIndex)) + .getFile(alteredFiles.getFileByIndex(currentFileIndex)) .then(file -> { if (file.isPresent()) { @@ -169,7 +169,7 @@ private void showCompareForCurrentFile() { // For now git repository supported only in project root folder final Path gitDir = alteredFiles.getProject().getLocation(); - final Path relPath = Path.valueOf(alteredFiles.getItemByIndex(currentFileIndex)); + final Path relPath = Path.valueOf(alteredFiles.getFileByIndex(currentFileIndex)); if (compareWithLatest) { this.comparedFile = null; @@ -325,7 +325,7 @@ private void findCurrentFile(@Nullable String currentFile) { return; } - currentFileIndex = alteredFiles.getChangedItemsList().indexOf(currentFile); + currentFileIndex = alteredFiles.getChangedFilesList().indexOf(currentFile); if (currentFileIndex == -1) { currentFileIndex = 0; } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java index 6b53895090b..4c827769d3e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java @@ -112,11 +112,11 @@ public void viewChangedFiles(AlteredFiles files, ViewMode viewMode) { NodeStorage nodeStorage = tree.getNodeStorage(); nodeStorage.clear(); if (viewMode == TREE) { - getGroupedNodes(files.getChangedItemsMap()).forEach(nodeStorage::add); + getGroupedNodes(files.getChangedFilesMap()).forEach(nodeStorage::add); tree.expandAll(); } else { - files.getChangedItemsList().forEach( - file -> nodeStorage.add(new ChangedFileNode(file, files.getStatusByPath(file), nodesResources, delegate, false))); + files.getChangedFilesList().forEach( + file -> nodeStorage.add(new ChangedFileNode(file, files.getStatusByFilePath(file), nodesResources, delegate, false))); } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java new file mode 100644 index 00000000000..525650c9402 --- /dev/null +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java @@ -0,0 +1,105 @@ +/******************************************************************************* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + *******************************************************************************/ +package org.eclipse.che.ide.ext.git.client.compare; + +import org.eclipse.che.ide.api.resources.Project; +import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; +import org.mockito.Mock; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.BeforeMethod; +import org.testng.annotations.Test; + +import java.util.Arrays; + +import static org.testng.Assert.assertEquals; +import static org.testng.Assert.assertTrue; + +/** + * @author Mykola Morhun + */ +public class AlteredFilesTest { + + private static final String[] FILES = {"Test1.java", "Test2.java", "Test3.java", "/dir/Test4.java"}; + private static final String[] STATUSES_STRINGS = {"A", "M", "D", "M"}; + private static final Status[] STATUSES = Arrays.stream(STATUSES_STRINGS).map(FileStatus::defineStatus).toArray(Status[]::new); + private static final int FILES_LEN = FILES.length; + + private static String diff; + + @Mock + private Project project; + + private AlteredFiles alteredFiles; + + @BeforeClass + public void setupClass() { + StringBuilder diffBuilder = new StringBuilder(); + + for (int i = 0; i < FILES_LEN; i++) { + diffBuilder.append(STATUSES_STRINGS[i]) + .append(" ") + .append(FILES[i]) + .append("\n"); + } + diffBuilder.setLength(diffBuilder.length() - 1); + + diff = diffBuilder.toString(); + } + + @BeforeMethod + public void setup() { + alteredFiles = null; + } + + @Test + public void shouldBeAbleToCreateAlteredFilesList() { + alteredFiles = new AlteredFiles(project, diff); + + assertEquals(alteredFiles.getFilesQuantity(), FILES_LEN); + assertEquals(alteredFiles.getProject(), project); + } + + @Test + public void shouldBeAbleToCreateEmptyFilesList() { + alteredFiles = new AlteredFiles(project, ""); + + assertTrue(alteredFiles.isEmpty()); + assertEquals(alteredFiles.getFilesQuantity(), 0); + } + + @Test + public void shouldBeAbleToGetFileByIndex() { + alteredFiles = new AlteredFiles(project, diff); + + for (int i = 0; i < FILES_LEN; i++) { + assertEquals(alteredFiles.getFileByIndex(i), FILES[i]); + } + } + + @Test + public void shouldBeAbleToGetStatusByIndex() { + alteredFiles = new AlteredFiles(project, diff); + + for (int i = 0; i < FILES_LEN; i++) { + assertEquals(alteredFiles.getStatusByIndex(i), STATUSES[i]); + } + } + + @Test + public void shouldBeAbleToGetStatusByFile() { + alteredFiles = new AlteredFiles(project, diff); + + for (int i = 0; i < FILES_LEN; i++) { + assertEquals(alteredFiles.getStatusByFilePath(FILES[i]), STATUSES[i]); + } + } + +} \ No newline at end of file From 6f3ea375601f7e7cb32c4e731c3b5b9e4e138914 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Mon, 14 Aug 2017 14:43:21 +0300 Subject: [PATCH 15/33] CHE-5892: Code cleanup --- .../git/client/commit/CommitPresenter.java | 2 +- .../ext/git/client/compare/AlteredFiles.java | 48 +++++++++++-------- .../git/client/compare/ComparePresenter.java | 6 +-- .../changespanel/ChangesPanelViewImpl.java | 2 +- 4 files changed, 32 insertions(+), 26 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index 1e8dbb7884f..82f5dd07f00 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -162,7 +162,7 @@ private void showAskForAmendDialog() { private void show(@Nullable String diff) { AlteredFiles alteredFiles = new AlteredFiles(project, diff); filesToCommit.clear(); - allFiles = alteredFiles.getChangedFilesList(); + allFiles = alteredFiles.getAlteredFilesList(); view.setEnableCommitButton(!view.getMessage().isEmpty()); view.focusInMessageField(); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java index a4a6f862eed..f34e4c63531 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java @@ -19,6 +19,7 @@ import java.util.Map; import java.util.Objects; +import static com.google.common.base.Strings.isNullOrEmpty; import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; /** @@ -29,11 +30,11 @@ public class AlteredFiles { private final Project project; - private final LinkedHashMap changedFilesStatuses; - private final List changedFilesList; + private final LinkedHashMap alteredFilesStatuses; + private final List alteredFilesList; /** - * Git diff representation. + * Parses raw git diff string and creates advanced representation. * * @param project * the project under diff operation @@ -43,16 +44,19 @@ public class AlteredFiles { public AlteredFiles(Project project, String diff) { this.project = project; - changedFilesStatuses = new LinkedHashMap<>(); - if (!"".equals(diff)) { + alteredFilesStatuses = new LinkedHashMap<>(); + if (!isNullOrEmpty(diff)) { for (String item : diff.split("\n")) { - changedFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); + alteredFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); } } - changedFilesList = new ArrayList<>(changedFilesStatuses.keySet()); + alteredFilesList = new ArrayList<>(alteredFilesStatuses.keySet()); } + /** + * Returns project in which git repository is located. + */ public Project getProject() { return project; } @@ -61,31 +65,37 @@ public Project getProject() { * Returns number of files in the diff. */ public int getFilesQuantity() { - return changedFilesList.size(); + return alteredFilesList.size(); } public boolean isEmpty() { - return 0 == changedFilesList.size(); + return 0 == alteredFilesList.size(); } + /** + * Returns this diff in map representation: altered file to its git status. + */ public Map getChangedFilesMap() { - return changedFilesStatuses; + return alteredFilesStatuses; } - public List getChangedFilesList() { - return changedFilesList; + /** + * Returns list of altered files in this git diff. + */ + public List getAlteredFilesList() { + return alteredFilesList; } - public Status getStatusByFilePath(String pathToChangedItem) { - return changedFilesStatuses.get(pathToChangedItem); + public Status getStatusByFilePath(String relativePathToChangedFile) { + return alteredFilesStatuses.get(relativePathToChangedFile); } public Status getStatusByIndex(int index) { - return changedFilesStatuses.get(changedFilesList.get(index)); + return alteredFilesStatuses.get(alteredFilesList.get(index)); } public String getFileByIndex(int index) { - return changedFilesList.get(index); + return alteredFilesList.get(index); } @Override @@ -94,13 +104,13 @@ public boolean equals(Object o) { if (o == null || getClass() != o.getClass()) return false; AlteredFiles that = (AlteredFiles)o; return Objects.equals(project, that.project) && - Objects.equals(changedFilesStatuses, that.changedFilesStatuses) && - Objects.equals(changedFilesList, that.changedFilesList); + Objects.equals(alteredFilesStatuses, that.alteredFilesStatuses) && + Objects.equals(alteredFilesList, that.alteredFilesList); } @Override public int hashCode() { - return Objects.hash(project, changedFilesStatuses, changedFilesList); + return Objects.hash(project, alteredFilesStatuses, alteredFilesList); } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index f166ffd11da..98086e4db24 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -141,7 +141,6 @@ private void showCompareForCurrentFile() { .getFile(alteredFiles.getFileByIndex(currentFileIndex)) .then(file -> { if (file.isPresent()) { - view.setEnableSaveChangesButton(true); final Container gitDir = getGitDir(file.get()); @@ -162,9 +161,7 @@ private void showCompareForCurrentFile() { relPath, alteredFiles.getStatusByIndex(currentFileIndex)); } - } else { // file is deleted - view.setEnableSaveChangesButton(false); // For now git repository supported only in project root folder @@ -178,7 +175,6 @@ private void showCompareForCurrentFile() { } else { showCompareBetweenRevisionsForFile(gitDir, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); } - } }).catchError(error -> { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); @@ -325,7 +321,7 @@ private void findCurrentFile(@Nullable String currentFile) { return; } - currentFileIndex = alteredFiles.getChangedFilesList().indexOf(currentFile); + currentFileIndex = alteredFiles.getAlteredFilesList().indexOf(currentFile); if (currentFileIndex == -1) { currentFileIndex = 0; } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java index 4c827769d3e..79a88191625 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java @@ -115,7 +115,7 @@ public void viewChangedFiles(AlteredFiles files, ViewMode viewMode) { getGroupedNodes(files.getChangedFilesMap()).forEach(nodeStorage::add); tree.expandAll(); } else { - files.getChangedFilesList().forEach( + files.getAlteredFilesList().forEach( file -> nodeStorage.add(new ChangedFileNode(file, files.getStatusByFilePath(file), nodesResources, delegate, false))); } } From 241dca745cf59fda5bfb49a59b4d8691d0974678 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Mon, 14 Aug 2017 15:37:41 +0300 Subject: [PATCH 16/33] CHE-5892: Add additional check in AlteredFiles constructor --- .../ide/ext/git/client/compare/AlteredFiles.java | 3 +++ .../ext/git/client/compare/ComparePresenter.java | 6 +++--- .../ext/git/client/compare/AlteredFilesTest.java | 16 ++++++++++++++++ 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java index f34e4c63531..3326d84ee78 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java @@ -47,6 +47,9 @@ public AlteredFiles(Project project, String diff) { alteredFilesStatuses = new LinkedHashMap<>(); if (!isNullOrEmpty(diff)) { for (String item : diff.split("\n")) { + if (item.length() < 3 || item.charAt(1) != ' ') { + throw new IllegalArgumentException("Invalid git diff format."); + } alteredFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 98086e4db24..28cee9a833b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -97,7 +97,7 @@ public void showCompareWithLatest(final AlteredFiles alteredFiles, this.compareWithLatest = true; - findCurrentFile(currentFile); + findFileIndexOrFirst(currentFile); showCompareForCurrentFile(); } @@ -125,7 +125,7 @@ public void showCompareBetweenRevisions(final AlteredFiles alteredFiles, this.compareWithLatest = false; - findCurrentFile(currentFile); + findFileIndexOrFirst(currentFile); showCompareForCurrentFile(); } @@ -315,7 +315,7 @@ private void showCompare(final String remoteContent) { * @param currentFile * name of file to set up as current; if null or invalid, the first one will be chosen. */ - private void findCurrentFile(@Nullable String currentFile) { + private void findFileIndexOrFirst(@Nullable String currentFile) { if (currentFile == null) { currentFileIndex = 0; return; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java index 525650c9402..64b50ba26b8 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java @@ -12,9 +12,11 @@ import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; +import org.junit.rules.ExpectedException; import org.mockito.Mock; import org.testng.annotations.BeforeClass; import org.testng.annotations.BeforeMethod; +import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import java.util.Arrays; @@ -102,4 +104,18 @@ public void shouldBeAbleToGetStatusByFile() { } } + @Test(expectedExceptions = IllegalArgumentException.class, dataProvider = "invalidDiffFileData") + public void shouldThrowIllegalArgumentExceptionIfDiffFileDescriptionIsInvalid(String invalidDiffFileData) { + alteredFiles = new AlteredFiles(project, diff + '\n' + invalidDiffFileData); + } + + @DataProvider(name = "invalidDiffFileData") + private Object[][] getInvalidDiffFileData() { + return new Object[][] { + {"M "}, + {"M_Test.java"}, + {"Test.java"}, + {" "} + }; + } } \ No newline at end of file From 5a6d74595604154ed11483925dde0fef9692c125 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Mon, 14 Aug 2017 18:05:07 +0300 Subject: [PATCH 17/33] CHE-5892: Fix constraint mistake --- .../eclipse/che/ide/ext/git/client/compare/AlteredFiles.java | 3 ++- .../che/ide/ext/git/client/compare/AlteredFilesTest.java | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java index 3326d84ee78..10c3b5bbad1 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java @@ -12,6 +12,7 @@ import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; +import org.eclipse.che.ide.util.loging.Log; import java.util.ArrayList; import java.util.LinkedHashMap; @@ -47,7 +48,7 @@ public AlteredFiles(Project project, String diff) { alteredFilesStatuses = new LinkedHashMap<>(); if (!isNullOrEmpty(diff)) { for (String item : diff.split("\n")) { - if (item.length() < 3 || item.charAt(1) != ' ') { + if (item.length() < 3 || item.charAt(1) != '\t') { throw new IllegalArgumentException("Invalid git diff format."); } alteredFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java index 64b50ba26b8..9fb8c3a7ff8 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java @@ -47,7 +47,7 @@ public void setupClass() { for (int i = 0; i < FILES_LEN; i++) { diffBuilder.append(STATUSES_STRINGS[i]) - .append(" ") + .append("\t") .append(FILES[i]) .append("\n"); } From e1bb8f4e09c5a5fb86b2654ee8c474c20b6bab83 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Tue, 15 Aug 2017 12:18:42 +0300 Subject: [PATCH 18/33] CHE-5892: Generalize showCompareForCurrentFile in ComparePresenter. Bug fixes. --- .../git/client/commit/CommitPresenter.java | 2 +- .../ext/git/client/compare/AlteredFiles.java | 2 +- .../git/client/compare/ComparePresenter.java | 77 +++++-------------- .../client/commit/CommitPresenterTest.java | 8 +- .../client/history/HistoryPresenterTest.java | 4 +- 5 files changed, 29 insertions(+), 64 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index 82f5dd07f00..5087fae4b65 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -128,7 +128,7 @@ public void showDialog(Project project) { List newFiles = new ArrayList<>(); newFiles.addAll(status.getAdded()); newFiles.addAll(status.getUntracked()); - show(newFiles.stream().collect(joining("\nA ", "A ", ""))); + show(newFiles.stream().collect(joining("\nA\t", "A\t", ""))); }); } }); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java index 10c3b5bbad1..8fc240937ca 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java @@ -49,7 +49,7 @@ public AlteredFiles(Project project, String diff) { if (!isNullOrEmpty(diff)) { for (String item : diff.split("\n")) { if (item.length() < 3 || item.charAt(1) != '\t') { - throw new IllegalArgumentException("Invalid git diff format."); + throw new IllegalArgumentException("Invalid git diff format. Invalid record: " + item); } alteredFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 28cee9a833b..778b8e7a3be 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -21,17 +21,14 @@ import org.eclipse.che.ide.api.resources.Container; import org.eclipse.che.ide.api.resources.File; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; -import org.eclipse.che.ide.ext.git.client.GitUtil; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; import org.eclipse.che.ide.api.dialogs.CancelCallback; import org.eclipse.che.ide.api.dialogs.ConfirmCallback; import org.eclipse.che.ide.api.dialogs.DialogFactory; import org.eclipse.che.ide.resource.Path; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.WARNING; import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.ADDED; import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.DELETED; @@ -141,54 +138,35 @@ private void showCompareForCurrentFile() { .getFile(alteredFiles.getFileByIndex(currentFileIndex)) .then(file -> { if (file.isPresent()) { + this.comparedFile = file.get(); view.setEnableSaveChangesButton(true); - - final Container gitDir = getGitDir(file.get()); - if (gitDir == null) { - notificationManager.notify(locale.messageFileIsNotUnderGit(file.toString()), WARNING, EMERGE_MODE); - return; - } - final Path relPath = getRelPath(gitDir, file.get()); - - if (compareWithLatest) { - this.comparedFile = file.get(); - - showCompareWithLatestForFile(gitDir.getLocation(), - relPath, - alteredFiles.getStatusByIndex(currentFileIndex)); - } else { - showCompareBetweenRevisionsForFile(gitDir.getLocation(), - relPath, - alteredFiles.getStatusByIndex(currentFileIndex)); - } } else { // file is deleted + this.comparedFile = null; view.setEnableSaveChangesButton(false); + } - // For now git repository supported only in project root folder - final Path gitDir = alteredFiles.getProject().getLocation(); - final Path relPath = Path.valueOf(alteredFiles.getFileByIndex(currentFileIndex)); - - if (compareWithLatest) { - this.comparedFile = null; + // For now git repository supported only in project root folder + final Path gitDirLocation = alteredFiles.getProject().getLocation(); + final Path relPath = Path.valueOf(alteredFiles.getFileByIndex(currentFileIndex)); - showCompareWithLatestForFile(gitDir, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); - } else { - showCompareBetweenRevisionsForFile(gitDir, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); - } + if (compareWithLatest) { + showCompareWithLatestForFile(gitDirLocation, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); + } else { + showCompareBetweenRevisionsForFile(gitDirLocation, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); } }).catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); } - private void showCompareWithLatestForFile(final Path gitDir, final Path relPath, final Status status) { + private void showCompareWithLatestForFile(final Path gitDirLocation, final Path relPath, final Status status) { if (status.equals(ADDED)) { showCompare(""); return; } if (status.equals(DELETED)) { - service.showFileContent(gitDir, relPath, revision) + service.showFileContent(gitDirLocation, relPath, revision) .then(content -> { view.setTitle(relPath.toString()); view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); @@ -198,7 +176,7 @@ private void showCompareWithLatestForFile(final Path gitDir, final Path relPath, notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } else { - service.showFileContent(gitDir, relPath, revision) + service.showFileContent(gitDirLocation, relPath, revision) .then(content -> { showCompare(content.getContent()); }) @@ -248,7 +226,7 @@ private void showCompareBetweenRevisionsForFile(final Path gitDir, final Path re @Override public void onClose(final String newContent) { - if (!isEdited(newContent)) { + if (!isDirty(newContent)) { view.hide(); return; } @@ -268,7 +246,7 @@ public void onClose(final String newContent) { public void onSaveChangesClicked() { if (compareWithLatest) { view.getEditableContent(content -> { - if (isEdited(content)) { + if (isDirty(content)) { saveContent(content); } }); @@ -278,7 +256,7 @@ public void onSaveChangesClicked() { @Override public void onNextDiffClicked() { view.getEditableContent(content -> { - if (isEdited(content)) { + if (isDirty(content)) { saveContent(content); } @@ -290,7 +268,7 @@ public void onNextDiffClicked() { @Override public void onPreviousDiffClicked() { view.getEditableContent(content -> { - if (isEdited(content)) { + if (isDirty(content)) { saveContent(content); } @@ -327,8 +305,8 @@ private void findFileIndexOrFirst(@Nullable String currentFile) { } } - /** Returns true if user edited content in the compare widget i.e. initial and current isn't equal. */ - private boolean isEdited(final String newContent) { + /** Returns true if is required to save new content. */ + private boolean isDirty(final String newContent) { return compareWithLatest && comparedFile != null && this.localContent != null && !newContent.equals(localContent); } @@ -351,17 +329,4 @@ private void saveContent(final String content) { }); } - /** Returns relative path of given file from specified project */ - private Path getRelPath(final Container project, final File file) { - return file.getLocation().removeFirstSegments(project.getLocation().segmentCount()); - } - - /** - * Searches for project with git repository to which given file belongs. - */ - @Nullable - private Container getGitDir(final File file) { - // For now we have support only for git repository in the root project - return GitUtil.getRootProject(file); - } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java index eafdf76d71f..72c434401c4 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java @@ -141,7 +141,7 @@ public void shouldShowMessageWhenNothingToCommit() throws Exception { @Test public void shouldShowDialog() throws Exception { - final String diff = "M file"; + final String diff = "M\tfile"; final AlteredFiles alteredFiles = new AlteredFiles(project, diff); ConfirmDialog dialog = mock(ConfirmDialog.class); @@ -154,7 +154,7 @@ public void shouldShowDialog() throws Exception { presenter.showDialog(project); verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply("M file"); + stringCaptor.getValue().apply("M\tfile"); verify(logPromise).then(logCaptor.capture()); logCaptor.getValue().apply(null); @@ -170,7 +170,7 @@ public void shouldShowDialog() throws Exception { @Test public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { - final String diff = "A file"; + final String diff = "A\tfile"; final AlteredFiles alteredFiles = new AlteredFiles(project, diff); PromiseError error = mock(PromiseError.class); @@ -204,7 +204,7 @@ public void shouldEnableCommitButton() throws Exception { presenter.showDialog(project); verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply("M file"); + stringCaptor.getValue().apply("M\tfile"); verify(logPromise).then(logCaptor.capture()); logCaptor.getValue().apply(null); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java index 2972db2169e..05d2431ada6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java @@ -137,7 +137,7 @@ public void shouldShowNotificationOnGetLogError() throws Exception { @Test public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Exception { - final String diff = "M file"; + final String diff = "M\tfile"; final AlteredFiles alteredFiles = new AlteredFiles(project, diff); Revision parentRevision = mock(Revision.class); @@ -163,7 +163,7 @@ public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Except @Test public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() throws Exception { - final String diff = "M file1\nM file2"; + final String diff = "M\tfile1\nM\tfile2"; final AlteredFiles alteredFiles = new AlteredFiles(project, diff); Revision revisionA = mock(Revision.class); From c50272a79af8378eaaa4498206d876ad51d211a1 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Tue, 15 Aug 2017 12:34:27 +0300 Subject: [PATCH 19/33] CHE-5892: Code cleanup --- .../ide/ext/git/client/compare/ComparePresenter.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 778b8e7a3be..008328dab54 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -226,7 +226,7 @@ private void showCompareBetweenRevisionsForFile(final Path gitDir, final Path re @Override public void onClose(final String newContent) { - if (!isDirty(newContent)) { + if (!isSaveNeeded(newContent)) { view.hide(); return; } @@ -246,7 +246,7 @@ public void onClose(final String newContent) { public void onSaveChangesClicked() { if (compareWithLatest) { view.getEditableContent(content -> { - if (isDirty(content)) { + if (isSaveNeeded(content)) { saveContent(content); } }); @@ -256,7 +256,7 @@ public void onSaveChangesClicked() { @Override public void onNextDiffClicked() { view.getEditableContent(content -> { - if (isDirty(content)) { + if (isSaveNeeded(content)) { saveContent(content); } @@ -268,7 +268,7 @@ public void onNextDiffClicked() { @Override public void onPreviousDiffClicked() { view.getEditableContent(content -> { - if (isDirty(content)) { + if (isSaveNeeded(content)) { saveContent(content); } @@ -306,7 +306,7 @@ private void findFileIndexOrFirst(@Nullable String currentFile) { } /** Returns true if is required to save new content. */ - private boolean isDirty(final String newContent) { + private boolean isSaveNeeded(final String newContent) { return compareWithLatest && comparedFile != null && this.localContent != null && !newContent.equals(localContent); } From 69715a60f5a878d1a350539301d45bdaa1f406fb Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Tue, 15 Aug 2017 15:40:15 +0300 Subject: [PATCH 20/33] CHE-5892: Code cleanup --- .../git/client/compare/ComparePresenter.java | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 008328dab54..c3a3d168a9e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -94,7 +94,7 @@ public void showCompareWithLatest(final AlteredFiles alteredFiles, this.compareWithLatest = true; - findFileIndexOrFirst(currentFile); + currentFileIndex = findFileIndexOrFirst(currentFile); showCompareForCurrentFile(); } @@ -122,7 +122,7 @@ public void showCompareBetweenRevisions(final AlteredFiles alteredFiles, this.compareWithLatest = false; - findFileIndexOrFirst(currentFile); + currentFileIndex = findFileIndexOrFirst(currentFile); showCompareForCurrentFile(); } @@ -292,17 +292,18 @@ private void showCompare(final String remoteContent) { * * @param currentFile * name of file to set up as current; if null or invalid, the first one will be chosen. + * @return given file index or first index if specified file isn't found. */ - private void findFileIndexOrFirst(@Nullable String currentFile) { + private int findFileIndexOrFirst(@Nullable String currentFile) { if (currentFile == null) { - currentFileIndex = 0; - return; + return 0; } - currentFileIndex = alteredFiles.getAlteredFilesList().indexOf(currentFile); - if (currentFileIndex == -1) { - currentFileIndex = 0; + int fileIndex = alteredFiles.getAlteredFilesList().indexOf(currentFile); + if (fileIndex == -1) { + return 0; } + return fileIndex; } /** Returns true if is required to save new content. */ From 96fed943236a587c6960f6eeff71aeb6812d47b5 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 16 Aug 2017 09:22:55 +0300 Subject: [PATCH 21/33] CHE-5892: Add missing new line --- .../che/ide/ext/git/client/compare/AlteredFilesTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java index 9fb8c3a7ff8..f2516a7e2dc 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java @@ -118,4 +118,4 @@ private Object[][] getInvalidDiffFileData() { {" "} }; } -} \ No newline at end of file +} From 436dc59a2183e0304a55924ac1491420d55447e6 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 16 Aug 2017 09:51:25 +0300 Subject: [PATCH 22/33] CHE-5892: Code cleanup --- .../che/ide/ext/git/client/compare/ComparePresenter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index c3a3d168a9e..73d57d6ed1f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -80,7 +80,7 @@ public ComparePresenter(EventBus eventBus, * Show compare window for given set of files between given revision and HEAD. * * @param alteredFiles - * ordered touched files + * ordered changed files * @param currentFile * file which will be shown first, if null then the first from the list will be shown * @param revision @@ -102,7 +102,7 @@ public void showCompareWithLatest(final AlteredFiles alteredFiles, * Shows compare window for given set of files between specified revisions. * * @param alteredFiles - * ordered touched files + * ordered changed files * @param currentFile * file which will be shown first, if null then the first from the list will be shown * @param revisionA From 286339c04d3cc22ba062cdfd6ce831ac3e54e386 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Tue, 22 Aug 2017 15:57:19 +0300 Subject: [PATCH 23/33] Apply new code style --- .../git/client/GitLocalizationConstant.java | 965 +++++++++--------- .../action/CompareWithLatestAction.java | 128 ++- .../git/client/commit/CommitPresenter.java | 466 +++++---- .../ide/ext/git/client/commit/CommitView.java | 199 ++-- .../git/client/compare/ComparePresenter.java | 593 ++++++----- .../ext/git/client/compare/CompareView.java | 129 ++- .../git/client/compare/CompareViewImpl.java | 257 ++--- .../branchlist/BranchListPresenter.java | 262 ++--- .../changeslist/ChangesListPresenter.java | 129 +-- .../changespanel/ChangesPanelPresenter.java | 171 ++-- .../changespanel/ChangesPanelView.java | 122 ++- .../changespanel/ChangesPanelViewImpl.java | 490 ++++----- .../revisionslist/RevisionListPresenter.java | 247 ++--- .../git/client/history/HistoryPresenter.java | 292 +++--- .../client/GitLocalizationConstant.properties | 1 - .../client/commit/CommitPresenterTest.java | 541 +++++----- .../client/history/HistoryPresenterTest.java | 348 ++++--- 17 files changed, 2745 insertions(+), 2595 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java index 2f77e48bbe0..3de6ed4188b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,723 +7,720 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client; import com.google.gwt.i18n.client.Messages; /** @author Evgen Vidolob */ public interface GitLocalizationConstant extends Messages { - // BUTTONS - @Key("button.add") - String buttonAdd(); + // BUTTONS + @Key("button.add") + String buttonAdd(); - @Key("button.cancel") - String buttonCancel(); + @Key("button.cancel") + String buttonCancel(); - @Key("button.create") - String buttonCreate(); + @Key("button.create") + String buttonCreate(); - @Key("button.checkout") - String buttonCheckout(); + @Key("button.checkout") + String buttonCheckout(); - @Key("button.delete") - String buttonDelete(); + @Key("button.delete") + String buttonDelete(); - @Key("button.rename") - String buttonRename(); + @Key("button.rename") + String buttonRename(); - @Key("button.close") - String buttonClose(); + @Key("button.close") + String buttonClose(); - @Key("button.refresh") - String buttonRefresh(); + @Key("button.refresh") + String buttonRefresh(); - @Key("button.commit") - String buttonCommit(); + @Key("button.commit") + String buttonCommit(); - @Key("button.reset") - String buttonReset(); + @Key("button.reset") + String buttonReset(); - @Key("button.remove") - String buttonRemove(); + @Key("button.remove") + String buttonRemove(); - @Key("button.fetch") - String buttonFetch(); + @Key("button.fetch") + String buttonFetch(); - @Key("button.ok") - String buttonOk(); + @Key("button.ok") + String buttonOk(); - @Key("button.yes") - String buttonYes(); + @Key("button.yes") + String buttonYes(); - @Key("button.no") - String buttonNo(); + @Key("button.no") + String buttonNo(); - @Key("button.push") - String buttonPush(); + @Key("button.push") + String buttonPush(); - @Key("button.pull") - String buttonPull(); + @Key("button.pull") + String buttonPull(); - @Key("button.merge") - String buttonMerge(); + @Key("button.merge") + String buttonMerge(); - @Key("button.compare") - String buttonCompare(); + @Key("button.compare") + String buttonCompare(); - @Key("button.save_changes") - String buttonSaveChanges(); + @Key("button.save_changes") + String buttonSaveChanges(); - @Key("button.next_diff") - String buttonNextDiff(); + @Key("button.next_diff") + String buttonNextDiff(); - @Key("button.previous_diff") - String buttonPreviousDiff(); + @Key("button.previous_diff") + String buttonPreviousDiff(); - @Key("console.tooltip.clear") - String buttonClear(); + @Key("console.tooltip.clear") + String buttonClear(); - @Key("console.tooltip.scroll") - String buttonScroll(); + @Key("console.tooltip.scroll") + String buttonScroll(); - // MESSAGES - @Key("messages.file_is_not_under_git") - String messageFileIsNotUnderGit(String file); + // MESSAGES + @Key("messages.unableGetSshKey") + String messagesUnableGetSshKey(); - @Key("messages.unableGetSshKey") - String messagesUnableGetSshKey(); + @Key("messages.warningTitle") + String messagesWarningTitle(); - @Key("messages.warningTitle") - String messagesWarningTitle(); + @Key("messages.index_empty") + String indexIsEmpty(); - @Key("messages.index_empty") - String indexIsEmpty(); + @Key("messages.add_success") + String addSuccess(); - @Key("messages.add_success") - String addSuccess(); + @Key("messages.nothingAddToIndex") + String nothingAddToIndex(); - @Key("messages.nothingAddToIndex") - String nothingAddToIndex(); + @Key("messages.nothingAddToIndexMultiSelect") + String nothingAddToIndexMultiSelect(); - @Key("messages.nothingAddToIndexMultiSelect") - String nothingAddToIndexMultiSelect(); + @Key("messages.add_failed") + String addFailed(); - @Key("messages.add_failed") - String addFailed(); + @Key("messages.branches_list_failed") + String branchesListFailed(); - @Key("messages.branches_list_failed") - String branchesListFailed(); + @Key("messages.local_branches_list_failed") + String localBranchesListFailed(); - @Key("messages.local_branches_list_failed") - String localBranchesListFailed(); + @Key("messages.remote_branches_list_failed") + String remoteBranchesListFailed(); - @Key("messages.remote_branches_list_failed") - String remoteBranchesListFailed(); + @Key("messages.get_config_failed") + String failedGettingConfig(); - @Key("messages.get_config_failed") - String failedGettingConfig(); + @Key("messages.branch_create_failed") + String branchCreateFailed(); - @Key("messages.branch_create_failed") - String branchCreateFailed(); + @Key("messages.branch_checkout_failed") + String branchCheckoutFailed(); - @Key("messages.branch_checkout_failed") - String branchCheckoutFailed(); + @Key("messages.branch_delete_failed") + String branchDeleteFailed(); - @Key("messages.branch_delete_failed") - String branchDeleteFailed(); + @Key("messages.branch_rename_failed") + String branchRenameFailed(); - @Key("messages.branch_rename_failed") - String branchRenameFailed(); + @Key("messages.commit_failed") + String commitFailed(); - @Key("messages.commit_failed") - String commitFailed(); + @Key("messages.committer_identity_info_empty") + String committerIdentityInfoEmpty(); - @Key("messages.committer_identity_info_empty") - String committerIdentityInfoEmpty(); + @Key("messages.init_commit_was_not_performed") + String initCommitWasNotPerformed(); - @Key("messages.init_commit_was_not_performed") - String initCommitWasNotPerformed(); + @Key("messages.diff.failed") + String diffFailed(); - @Key("messages.diff.failed") - String diffFailed(); + @Key("messages.log_failed") + String logFailed(); - @Key("messages.log_failed") - String logFailed(); + @Key("messages.init_success") + String initSuccess(); - @Key("messages.init_success") - String initSuccess(); + @Key("messages.initRepoQuestion") + String messagesInitRepoQuestion(String name); - @Key("messages.initRepoQuestion") - String messagesInitRepoQuestion(String name); + @Key("messages.init_failed") + String initFailed(); - @Key("messages.init_failed") - String initFailed(); + @Key("messages.push.process") + String pushProcess(); - @Key("messages.push.process") - String pushProcess(); + @Key("messages.push_success") + String pushSuccess(String remote); - @Key("messages.push_success") - String pushSuccess(String remote); + @Key("messages.push_up_to_date") + String pushUpToDate(); - @Key("messages.push_up_to_date") - String pushUpToDate(); + @Key("messages.push_fail") + String pushFail(); - @Key("messages.push_fail") - String pushFail(); + @Key("messages.pull.process") + String pullProcess(); - @Key("messages.pull.process") - String pullProcess(); + @Key("messages.pull_success") + String pullSuccess(String remoteUrl); - @Key("messages.pull_success") - String pullSuccess(String remoteUrl); + @Key("messages.pull_up_to_date") + String pullUpToDate(); - @Key("messages.pull_up_to_date") - String pullUpToDate(); + @Key("messages.pull_fail") + String pullFail(String remoteUrl); - @Key("messages.pull_fail") - String pullFail(String remoteUrl); + @Key("messages.checkout_failed") + String checkoutFailed(); - @Key("messages.checkout_failed") - String checkoutFailed(); + @Key("messages.fetch.process") + String fetchProcess(); - @Key("messages.fetch.process") - String fetchProcess(); + @Key("messages.fetch_success") + String fetchSuccess(String remoteUrl); - @Key("messages.fetch_success") - String fetchSuccess(String remoteUrl); + @Key("messages.fetch_fail") + String fetchFail(String remoteUrl); - @Key("messages.fetch_fail") - String fetchFail(String remoteUrl); + @Key("messages.remote_list_failed") + String remoteListFailed(); - @Key("messages.remote_list_failed") - String remoteListFailed(); + @Key("messages.remove_files_success") + String removeFilesSuccessfull(); - @Key("messages.remove_files_success") - String removeFilesSuccessfull(); + @Key("messages.remove_files_failed") + String removeFilesFailed(); - @Key("messages.remove_files_failed") - String removeFilesFailed(); + @Key("messages.remote_add_failed") + String remoteAddFailed(); - @Key("messages.remote_add_failed") - String remoteAddFailed(); + @Key("messages.remote_delete_failed") + String remoteDeleteFailed(); - @Key("messages.remote_delete_failed") - String remoteDeleteFailed(); + @Key("messages.reset_files_failed") + String resetFilesFailed(); - @Key("messages.reset_files_failed") - String resetFilesFailed(); + @Key("messages.reset_files_successfully") + String resetFilesSuccessfully(); - @Key("messages.reset_files_successfully") - String resetFilesSuccessfully(); + @Key("messages.nothing_to_reset") + String nothingToReset(); - @Key("messages.nothing_to_reset") - String nothingToReset(); + @Key("messages.reset_successfully") + String resetSuccessfully(); - @Key("messages.reset_successfully") - String resetSuccessfully(); + @Key("messages.reset_fail") + String resetFail(); - @Key("messages.reset_fail") - String resetFail(); + @Key("messages.status_failed") + String statusFailed(); - @Key("messages.status_failed") - String statusFailed(); + @Key("messages.selected_remote_fail") + String selectRemoteRepositoryFail(); - @Key("messages.selected_remote_fail") - String selectRemoteRepositoryFail(); + @Key("messages.delete_remote_repository.title") + String deleteRemoteRepositoryTitle(); - @Key("messages.delete_remote_repository.title") - String deleteRemoteRepositoryTitle(); + @Key("messages.delete_remote_repository.question") + String deleteRemoteRepositoryQuestion(String remote); - @Key("messages.delete_remote_repository.question") - String deleteRemoteRepositoryQuestion(String remote); + @Key("messages.delete_repository.question") + String deleteGitRepositoryQuestion(String repository); - @Key("messages.delete_repository.question") - String deleteGitRepositoryQuestion(String repository); + @Key("messages.delete_repository.title") + String deleteGitRepositoryTitle(); - @Key("messages.delete_repository.title") - String deleteGitRepositoryTitle(); + @Key("messages.delete_success") + String deleteGitRepositorySuccess(); - @Key("messages.delete_success") - String deleteGitRepositorySuccess(); + @Key("messages.notAuthorizedTitle") + String messagesNotAuthorizedTitle(); - @Key("messages.notAuthorizedTitle") - String messagesNotAuthorizedTitle(); + @Key("messages.notAuthorizedContent") + String messagesNotAuthorizedContent(); - @Key("messages.notAuthorizedContent") - String messagesNotAuthorizedContent(); + @Key("messages.compare_save.title") + String compareSaveTitle(); - @Key("messages.compare_save.title") - String compareSaveTitle(); + @Key("messages.compare_save.question") + String compareSaveQuestion(); - @Key("messages.compare_save.question") - String compareSaveQuestion(); + @Key("importProject.messageStartWithWhiteSpace") + String importProjectMessageStartWithWhiteSpace(); - @Key("importProject.messageStartWithWhiteSpace") - String importProjectMessageStartWithWhiteSpace(); + @Key("importProject.messageNameRepoIncorrect") + String importProjectMessageNameRepoIncorrect(); - @Key("importProject.messageNameRepoIncorrect") - String importProjectMessageNameRepoIncorrect(); + @Key("importProject.messageProtocolIncorrect") + String importProjectMessageProtocolIncorrect(); - @Key("importProject.messageProtocolIncorrect") - String importProjectMessageProtocolIncorrect(); + @Key("importProject.messageHostIncorrect") + String importProjectMessageHostIncorrect(); - @Key("importProject.messageHostIncorrect") - String importProjectMessageHostIncorrect(); + // ----VIEWS------------------------------------------------------------------ - // ----VIEWS------------------------------------------------------------------ + // GitImporterPage + @Key("view.import.gitImporterPage.projectUrl") + String gitImporterPageProjectUrl(); - // GitImporterPage - @Key("view.import.gitImporterPage.projectUrl") - String gitImporterPageProjectUrl(); + @Key("view.import.gitImporterPage.recursive") + String gitImporterPageRecursive(); - @Key("view.import.gitImporterPage.recursive") - String gitImporterPageRecursive(); + @Key("view.import.gitImporterPage.projectInfo") + String gitImporterPageProjectInfo(); - @Key("view.import.gitImporterPage.projectInfo") - String gitImporterPageProjectInfo(); + @Key("view.import.gitImporterPage.projectName") + String gitImporterPageProjectName(); - @Key("view.import.gitImporterPage.projectName") - String gitImporterPageProjectName(); + @Key("view.import.gitImporterPageProjectNamePrompt") + String gitImporterPageProjectNamePrompt(); - @Key("view.import.gitImporterPageProjectNamePrompt") - String gitImporterPageProjectNamePrompt(); + @Key("view.import.gitImporterPage.projectDescription") + String gitImporterPageProjectDescription(); - @Key("view.import.gitImporterPage.projectDescription") - String gitImporterPageProjectDescription(); + @Key("view.import.gitImporterPage.projectDescriptionPrompt") + String gitImporterPageProjectDescriptionPrompt(); - @Key("view.import.gitImporterPage.projectDescriptionPrompt") - String gitImporterPageProjectDescriptionPrompt(); + @Key("view.import.gitImporterPage.keepDirectory") + String gitImporterPageKeepDirectory(); - @Key("view.import.gitImporterPage.keepDirectory") - String gitImporterPageKeepDirectory(); + @Key("view.import.gitImporterPage.keepDirectoryField") + String gitImporterPageKeepDirectoryField(); - @Key("view.import.gitImporterPage.keepDirectoryField") - String gitImporterPageKeepDirectoryField(); + @Key("view.import.gitImporterPage.branchField") + String gitImporterPageBranchField(); - @Key("view.import.gitImporterPage.branchField") - String gitImporterPageBranchField(); + @Key("view.import.gitImporterPage.branch") + String gitImporterPageBranch(); - @Key("view.import.gitImporterPage.branch") - String gitImporterPageBranch(); + // Add + @Key("view.add_to_index.all_changes") + String addToIndexAllChanges(); - // Add - @Key("view.add_to_index.all_changes") - String addToIndexAllChanges(); + @Key("view.add_to_index.multiselect") + String addToIndexMultiSelect(); - @Key("view.add_to_index.multiselect") - String addToIndexMultiSelect(); + @Key("view.add_to_index.folder") + String addToIndexFolder(String folder); - @Key("view.add_to_index.folder") - String addToIndexFolder(String folder); + @Key("view.add_to_index.file") + String addToIndexFile(String file); - @Key("view.add_to_index.file") - String addToIndexFile(String file); + @Key("view.add_to_index.update_field_title") + String addToIndexUpdateFieldTitle(); - @Key("view.add_to_index.update_field_title") - String addToIndexUpdateFieldTitle(); + @Key("view.add_to_index.title") + String addToIndexTitle(); - @Key("view.add_to_index.title") - String addToIndexTitle(); + @Key("view.add_to_index.command_name") + String addToIndexCommandName(); - @Key("view.add_to_index.command_name") - String addToIndexCommandName(); + // Branch + @Key("view.branch.create_new") + String branchCreateNew(); - // Branch - @Key("view.branch.create_new") - String branchCreateNew(); + @Key("view.branch.confirm_rename.title") + String branchConfirmRenameTitle(); - @Key("view.branch.confirm_rename.title") - String branchConfirmRenameTitle(); + @Key("view.branch.confirm_rename.message") + String branchConfirmRenameMessage(); - @Key("view.branch.confirm_rename.message") - String branchConfirmRenameMessage(); + @Key("view.branch.type_new") + String branchTypeNew(); - @Key("view.branch.type_new") - String branchTypeNew(); + @Key("view.branch.title_rename") + String branchTitleRename(); - @Key("view.branch.title_rename") - String branchTitleRename(); + @Key("view.branch.type_rename") + String branchTypeRename(); - @Key("view.branch.type_rename") - String branchTypeRename(); + @Key("view.branch.delete") + String branchDelete(); - @Key("view.branch.delete") - String branchDelete(); + @Key("view.branch.delete_ask") + String branchDeleteAsk(String name); - @Key("view.branch.delete_ask") - String branchDeleteAsk(String name); + @Key("view.branch.filter.label") + String branchFilterLabel(); - @Key("view.branch.filter.label") - String branchFilterLabel(); + @Key("view.branch.title") + String branchTitle(); - @Key("view.branch.title") - String branchTitle(); + // Commit + @Key("view.commit.commit_message") + String commitMessage(String revision, String time); - // Commit - @Key("view.commit.commit_message") - String commitMessage(String revision, String time); + @Key("view.commit.commit_user") + String commitUser(String user); - @Key("view.commit.commit_user") - String commitUser(String user); + @Key("view.commit.title") + String commitTitle(); - @Key("view.commit.title") - String commitTitle(); + @Key("view.commit.amend_field_title") + String commitAmendFieldTitle(); - @Key("view.commit.amend_field_title") - String commitAmendFieldTitle(); + @Key("view.commit.grid.date") + String commitGridDate(); - @Key("view.commit.grid.date") - String commitGridDate(); + @Key("view.commit.grid.commiter") + String commitGridCommiter(); - @Key("view.commit.grid.commiter") - String commitGridCommiter(); + @Key("view.commit.grid.comment") + String commitGridComment(); - @Key("view.commit.grid.comment") - String commitGridComment(); + @Key("view.commit.push.checkbox.title") + String commitPushCheckboxTitle(); - @Key("view.commit.push.checkbox.title") - String commitPushCheckboxTitle(); + @Key("view.commit.nothing_to_commit.text") + String commitNothingToCommitMessageText(); - @Key("view.commit.nothing_to_commit.text") - String commitNothingToCommitMessageText(); + @Key("view.push.title") + String pushViewTitle(); - @Key("view.push.title") - String pushViewTitle(); + @Key("view.push.remote.field") + String pushViewRemoteFieldTitle(); - @Key("view.push.remote.field") - String pushViewRemoteFieldTitle(); + @Key("view.push.local_branch.field") + String pushViewLocalBranchFieldTitle(); - @Key("view.push.local_branch.field") - String pushViewLocalBranchFieldTitle(); + @Key("view.push.remote_branch.field") + String pushViewRemoteBranchFieldTitle(); - @Key("view.push.remote_branch.field") - String pushViewRemoteBranchFieldTitle(); + @Key("view.push.force.checkbox.title") + String pushForceCheckboxTitle(); - @Key("view.push.force.checkbox.title") - String pushForceCheckboxTitle(); + // Reset + @Key("view.reset.files.title") + String resetFilesViewTitle(); - // Reset - @Key("view.reset.files.title") - String resetFilesViewTitle(); + @Key("view.reset.commit.title") + String resetCommitViewTitle(); - @Key("view.reset.commit.title") - String resetCommitViewTitle(); + @Key("view.reset.soft.type.title") + String resetSoftTypeTitle(); - @Key("view.reset.soft.type.title") - String resetSoftTypeTitle(); + @Key("view.reset.soft.type.description") + String resetSoftTypeDescription(); - @Key("view.reset.soft.type.description") - String resetSoftTypeDescription(); + @Key("view.reset.mixed.type.title") + String resetMixedTypeTitle(); - @Key("view.reset.mixed.type.title") - String resetMixedTypeTitle(); + @Key("view.reset.mixed.type.description") + String resetMixedTypeDescription(); - @Key("view.reset.mixed.type.description") - String resetMixedTypeDescription(); + @Key("view.reset.hard.type.title") + String resetHardTypeTitle(); - @Key("view.reset.hard.type.title") - String resetHardTypeTitle(); + @Key("view.reset.hard.type.description") + String resetHardTypeDescription(); - @Key("view.reset.hard.type.description") - String resetHardTypeDescription(); + // Remove + @Key("view.remove_from_index.all") + String removeFromIndexAll(); - // Remove - @Key("view.remove_from_index.all") - String removeFromIndexAll(); + @Key("view.remove_from_index.only") + String removeFromIndexOnly(); - @Key("view.remove_from_index.only") - String removeFromIndexOnly(); + @Key("view.remove_from_index.folder") + String removeFromIndexFolder(String folder); - @Key("view.remove_from_index.folder") - String removeFromIndexFolder(String folder); + @Key("view.remove_from_index.file") + String removeFromIndexFile(String file); - @Key("view.remove_from_index.file") - String removeFromIndexFile(String file); + @Key("view.remove_from_index.title") + String removeFromIndexTitle(); - @Key("view.remove_from_index.title") - String removeFromIndexTitle(); + // Create + @Key("view.create.title") + String createTitle(); - // Create - @Key("view.create.title") - String createTitle(); + // Compare + @Key("view.compare.with.latest.title") + String compareWithLatestTitle(); - // Compare - @Key("view.compare.with.latest.title") - String compareWithLatestTitle(); + @Key("view.compare.with.branch.title") + String compareWithBranchTitle(); - @Key("view.compare.with.branch.title") - String compareWithBranchTitle(); + @Key("view.compare.with.revision.title") + String compareWithRevisionTitle(); - @Key("view.compare.with.revision.title") - String compareWithRevisionTitle(); + @Key("view.compare.revision.table.id.title") + String viewCompareRevisionTableIdTitle(); - @Key("view.compare.revision.table.id.title") - String viewCompareRevisionTableIdTitle(); + @Key("view.compare.revision.table.time.title") + String viewCompareRevisionTableTimeTitle(); - @Key("view.compare.revision.table.time.title") - String viewCompareRevisionTableTimeTitle(); + @Key("view.compare.revision.table.author.title") + String viewCompareRevisionTableAuthorTitle(); - @Key("view.compare.revision.table.author.title") - String viewCompareRevisionTableAuthorTitle(); + @Key("view.compare.revision.table.title.title") + String viewCompareRevisionTableTitleTitle(); - @Key("view.compare.revision.table.title.title") - String viewCompareRevisionTableTitleTitle(); + @Key("view.compare.revision.full.description.title") + String viewCompareRevisionFullDescriptionTitle(); - @Key("view.compare.revision.full.description.title") - String viewCompareRevisionFullDescriptionTitle(); + @Key("view.compare.revision.full.description.empty.message") + String viewCompareRevisionFullDescriptionEmptyMessage(); - @Key("view.compare.revision.full.description.empty.message") - String viewCompareRevisionFullDescriptionEmptyMessage(); + @Key("view.compare.message.identical.content.title") + String compareMessageIdenticalContentTitle(); - @Key("view.compare.message.identical.content.title") - String compareMessageIdenticalContentTitle(); + @Key("view.compare.message.identical.content.text") + String compareMessageIdenticalContentText(); - @Key("view.compare.message.identical.content.text") - String compareMessageIdenticalContentText(); + @Key("view.compare.your.version.title") + String compareYourVersionTitle(); - @Key("view.compare.your.version.title") - String compareYourVersionTitle(); + @Key("view.compare.read.only.title") + String compareReadOnlyTitle(); - @Key("view.compare.read.only.title") - String compareReadOnlyTitle(); + // ChangeList + @Key("view.change.list.title") + String changeListTitle(); - // ChangeList - @Key("view.change.list.title") - String changeListTitle(); + @Key("view.change.list.group.by.directory.button.text") + String changeListGroupByDirectoryButtonText(); - @Key("view.change.list.group.by.directory.button.text") - String changeListGroupByDirectoryButtonText(); + @Key("view.change.list.row.list.view.button.text") + String changeListRowListViewButtonText(); - @Key("view.change.list.row.list.view.button.text") - String changeListRowListViewButtonText(); + @Key("view.change.list.expand.all.button.title") + String changeListExpandCollapseAllButtonTitle(); - @Key("view.change.list.expand.all.button.title") - String changeListExpandCollapseAllButtonTitle(); + @Key("view.change.list.collapse.all.button.title") + String changeListCollapseAllButtonTitle(); - @Key("view.change.list.collapse.all.button.title") - String changeListCollapseAllButtonTitle(); + // Fetch + @Key("view.fetch.title") + String fetchTitle(); - // Fetch - @Key("view.fetch.title") - String fetchTitle(); + @Key("view.fetch.remote.field.title") + String fetchRemoteFieldTitle(); - @Key("view.fetch.remote.field.title") - String fetchRemoteFieldTitle(); + @Key("view.fetch.remote.branches.title") + String fetchRemoteBranchesTitle(); - @Key("view.fetch.remote.branches.title") - String fetchRemoteBranchesTitle(); + @Key("view.fetch.local.branches.title") + String fetchLocalBranchesTitle(); - @Key("view.fetch.local.branches.title") - String fetchLocalBranchesTitle(); + @Key("view.fetch.remove.deleted.refs.title") + String fetchRemoveDeletedRefsTitle(); - @Key("view.fetch.remove.deleted.refs.title") - String fetchRemoveDeletedRefsTitle(); + @Key("view.fetch.all.branches.field.title") + String fetchAllBranchesTitle(); - @Key("view.fetch.all.branches.field.title") - String fetchAllBranchesTitle(); + // Remote + @Key("view.remotes.title") + String remotesViewTitle(); - // Remote - @Key("view.remotes.title") - String remotesViewTitle(); + @Key("view.remote.name.field") + String remoteNameField(); - @Key("view.remote.name.field") - String remoteNameField(); + @Key("view.remote.location.field") + String remoteLocationField(); - @Key("view.remote.location.field") - String remoteLocationField(); + @Key("view.remote.grid.name.field") + String remoteGridNameField(); - @Key("view.remote.grid.name.field") - String remoteGridNameField(); + @Key("view.remote.grid.location.field") + String remoteGridLocationField(); - @Key("view.remote.grid.location.field") - String remoteGridLocationField(); + // History + @Key("view.history.diff.index.state") + String historyDiffIndexState(); - // History - @Key("view.history.diff.index.state") - String historyDiffIndexState(); + @Key("view.history.diff.tree.state") + String historyDiffTreeState(); - @Key("view.history.diff.tree.state") - String historyDiffTreeState(); + @Key("view.history.nothing.to.display") + String historyNothingToDisplay(); - @Key("view.history.nothing.to.display") - String historyNothingToDisplay(); + @Key("view.history.title") + String historyTitle(); - @Key("view.history.title") - String historyTitle(); + @Key("view.history.project.changes.button.title") + String historyProjectChangesButtonTitle(); - @Key("view.history.project.changes.button.title") - String historyProjectChangesButtonTitle(); + @Key("view.history.resource.changes.button.title") + String historyResourceChangesButtonTitle(); - @Key("view.history.resource.changes.button.title") - String historyResourceChangesButtonTitle(); + @Key("view.history.diff.with.index.button.title") + String historyDiffWithIndexButtonTitle(); - @Key("view.history.diff.with.index.button.title") - String historyDiffWithIndexButtonTitle(); + @Key("view.history.diff.with.work.tree.button.title") + String historyDiffWithWorkTreeButtonTitle(); - @Key("view.history.diff.with.work.tree.button.title") - String historyDiffWithWorkTreeButtonTitle(); + @Key("view.history.diff.with.prev.version.button.title") + String historyDiffWithPrevVersionButtonTitle(); - @Key("view.history.diff.with.prev.version.button.title") - String historyDiffWithPrevVersionButtonTitle(); + @Key("view.history.revisionA.title") + String historyViewRevisionATitle(); - @Key("view.history.revisionA.title") - String historyViewRevisionATitle(); + @Key("view.history.revisionB.title") + String historyViewRevisionBTitle(); - @Key("view.history.revisionB.title") - String historyViewRevisionBTitle(); + @Key("view.history.date.title") + String historyViewDateTitle(); - @Key("view.history.date.title") - String historyViewDateTitle(); + @Key("view.history.refresh.button.title") + String refreshRevisionListButtonTitle(); - @Key("view.history.refresh.button.title") - String refreshRevisionListButtonTitle(); + // Pull + @Key("view.pull.title") + String pullTitle(); - // Pull - @Key("view.pull.title") - String pullTitle(); + @Key("view.pull.remote.branches.title") + String pullRemoteBranches(); - @Key("view.pull.remote.branches.title") - String pullRemoteBranches(); + @Key("view.pull.local.branches.title") + String pullLocalBranches(); - @Key("view.pull.local.branches.title") - String pullLocalBranches(); + @Key("view.pull.rebase.checkbox.label") + String pullRebaseCheckbox(); - @Key("view.pull.rebase.checkbox.label") - String pullRebaseCheckbox(); + // Merge + @Key("view.merge.title") + String mergeTitle(); - // Merge - @Key("view.merge.title") - String mergeTitle(); + @Key("merged.commits") + String mergedCommits(String commits); - @Key("merged.commits") - String mergedCommits(String commits); + @Key("merged.new.head") + String mergedNewHead(String newHead); - @Key("merged.new.head") - String mergedNewHead(String newHead); + @Key("merged.conflicts") + String mergedConflicts(); - @Key("merged.conflicts") - String mergedConflicts(); + /* Checkout reference */ + @Key("checkout.reference.title") + String checkoutReferenceTitle(); - /* Checkout reference */ - @Key("checkout.reference.title") - String checkoutReferenceTitle(); + @Key("checkout.reference.description") + String checkoutReferenceDescription(); - @Key("checkout.reference.description") - String checkoutReferenceDescription(); + @Key("checkout.reference.message") + String checkoutReferenceMessage(); - @Key("checkout.reference.message") - String checkoutReferenceMessage(); + /* Controls */ + @Key("control.branches.title") + String branchesControlTitle(); - /* Controls */ - @Key("control.branches.title") - String branchesControlTitle(); + @Key("control.branches.prompt") + String branchesControlPrompt(); - @Key("control.branches.prompt") - String branchesControlPrompt(); + @Key("control.commit.title") + String commitControlTitle(); - @Key("control.commit.title") - String commitControlTitle(); + @Key("control.commit.prompt") + String commitControlPrompt(); - @Key("control.commit.prompt") - String commitControlPrompt(); + @Key("control.delete.title") + String deleteControlTitle(); - @Key("control.delete.title") - String deleteControlTitle(); + @Key("control.delete.prompt") + String deleteControlPrompt(); - @Key("control.delete.prompt") - String deleteControlPrompt(); + @Key("control.fetch.title") + String fetchControlTitle(); - @Key("control.fetch.title") - String fetchControlTitle(); + @Key("control.fetch.prompt") + String fetchControlPrompt(); - @Key("control.fetch.prompt") - String fetchControlPrompt(); + @Key("control.init.title") + String initControlTitle(); - @Key("control.init.title") - String initControlTitle(); + @Key("control.init.prompt") + String initControlPrompt(); - @Key("control.init.prompt") - String initControlPrompt(); + @Key("control.merge.title") + String mergeControlTitle(); - @Key("control.merge.title") - String mergeControlTitle(); + @Key("control.merge.prompt") + String mergeControlPrompt(); - @Key("control.merge.prompt") - String mergeControlPrompt(); + @Key("control.pull.title") + String pullControlTitle(); - @Key("control.pull.title") - String pullControlTitle(); + @Key("control.pull.prompt") + String pullControlPrompt(); - @Key("control.pull.prompt") - String pullControlPrompt(); + @Key("control.push.title") + String pushControlTitle(); - @Key("control.push.title") - String pushControlTitle(); + @Key("control.push.prompt") + String pushControlPrompt(); - @Key("control.push.prompt") - String pushControlPrompt(); + @Key("control.remotes.title") + String remotesControlTitle(); - @Key("control.remotes.title") - String remotesControlTitle(); + @Key("control.remotes.prompt") + String remotesControlPrompt(); - @Key("control.remotes.prompt") - String remotesControlPrompt(); + @Key("control.resetFiles.title") + String resetFilesControlTitle(); - @Key("control.resetFiles.title") - String resetFilesControlTitle(); + @Key("control.resetFiles.prompt") + String resetFilesControlPrompt(); - @Key("control.resetFiles.prompt") - String resetFilesControlPrompt(); + @Key("control.resetToCommit.title") + String resetToCommitControlTitle(); - @Key("control.resetToCommit.title") - String resetToCommitControlTitle(); + @Key("control.resetToCommit.prompt") + String resetToCommitControlPrompt(); - @Key("control.resetToCommit.prompt") - String resetToCommitControlPrompt(); + @Key("control.history.title") + String historyControlTitle(); - @Key("control.history.title") - String historyControlTitle(); + @Key("control.history.prompt") + String historyControlPrompt(); - @Key("control.history.prompt") - String historyControlPrompt(); + @Key("control.status.title") + String statusControlTitle(); - @Key("control.status.title") - String statusControlTitle(); + @Key("control.status.prompt") + String statusControlPrompt(); - @Key("control.status.prompt") - String statusControlPrompt(); + @Key("control.ro.url.window.title") + String projectReadOnlyGitUrlWindowTitle(); - @Key("control.ro.url.window.title") - String projectReadOnlyGitUrlWindowTitle(); + @Key("control.ro.localUrl.title") + String projectReadOnlyGitLocalUrlTitle(); - @Key("control.ro.localUrl.title") - String projectReadOnlyGitLocalUrlTitle(); + @Key("control.ro.remoteUrl.title") + String projectReadOnlyGitRemoteUrlTitle(); - @Key("control.ro.remoteUrl.title") - String projectReadOnlyGitRemoteUrlTitle(); + @Key("control.ro.remoteUrls.title") + String projectReadOnlyGitRemoteUrlsTitle(); - @Key("control.ro.remoteUrls.title") - String projectReadOnlyGitRemoteUrlsTitle(); + @Key("control.ro.url.prompt") + String projectReadOnlyGitUrlPrompt(); - @Key("control.ro.url.prompt") - String projectReadOnlyGitUrlPrompt(); + @Key("committer.preference.category") + String committerPreferenceCategory(); - @Key("committer.preference.category") - String committerPreferenceCategory(); + @Key("committer.title") + String committerTitle(); - @Key("committer.title") - String committerTitle(); + @Key("commited") + String commited(); - @Key("commited") - String commited(); + @Key("failed.to.delete.repository") + String failedToDeleteRepository(); - @Key("failed.to.delete.repository") - String failedToDeleteRepository(); + @Key("merge.failed") + String mergeFailed(); - @Key("merge.failed") - String mergeFailed(); - - @Key("console.project.name") - String consoleProjectName(String projectName); + @Key("console.project.name") + String consoleProjectName(String projectName); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java index 5bf74d8d2b1..19ce5f6261c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.action; import com.google.inject.Inject; @@ -39,64 +39,82 @@ */ @Singleton public class CompareWithLatestAction extends GitAction { - private final ComparePresenter comparePresenter; - private final ChangesListPresenter changesListPresenter; - private final DialogFactory dialogFactory; - private final NotificationManager notificationManager; - private final GitServiceClient service; - private final GitLocalizationConstant locale; + private final ComparePresenter comparePresenter; + private final ChangesListPresenter changesListPresenter; + private final DialogFactory dialogFactory; + private final NotificationManager notificationManager; + private final GitServiceClient service; + private final GitLocalizationConstant locale; - private final static String REVISION = "HEAD"; + private static final String REVISION = "HEAD"; - @Inject - public CompareWithLatestAction(ComparePresenter presenter, - ChangesListPresenter changesListPresenter, - AppContext appContext, - DialogFactory dialogFactory, - NotificationManager notificationManager, - GitServiceClient service, - GitLocalizationConstant constant) { - super(constant.compareWithLatestTitle(), constant.compareWithLatestTitle(), null, appContext); - this.comparePresenter = presenter; - this.changesListPresenter = changesListPresenter; - this.dialogFactory = dialogFactory; - this.notificationManager = notificationManager; - this.service = service; - this.locale = constant; - } + @Inject + public CompareWithLatestAction( + ComparePresenter presenter, + ChangesListPresenter changesListPresenter, + AppContext appContext, + DialogFactory dialogFactory, + NotificationManager notificationManager, + GitServiceClient service, + GitLocalizationConstant constant) { + super(constant.compareWithLatestTitle(), constant.compareWithLatestTitle(), null, appContext); + this.comparePresenter = presenter; + this.changesListPresenter = changesListPresenter; + this.dialogFactory = dialogFactory; + this.notificationManager = notificationManager; + this.service = service; + this.locale = constant; + } - /** {@inheritDoc} */ - @Override - public void actionPerformed(ActionEvent e) { + /** {@inheritDoc} */ + @Override + public void actionPerformed(ActionEvent e) { - final Project project = appContext.getRootProject(); - final Resource resource = appContext.getResource(); + final Project project = appContext.getRootProject(); + final Resource resource = appContext.getResource(); - checkState(project != null, "Null project occurred"); - checkState(project.getLocation().isPrefixOf(resource.getLocation()), "Given selected item is not descendant of given project"); + checkState(project != null, "Null project occurred"); + checkState( + project.getLocation().isPrefixOf(resource.getLocation()), + "Given selected item is not descendant of given project"); - final String selectedItemPath = resource.getLocation() - .removeFirstSegments(project.getLocation().segmentCount()) - .removeTrailingSeparator() - .toString(); + final String selectedItemPath = + resource + .getLocation() + .removeFirstSegments(project.getLocation().segmentCount()) + .removeTrailingSeparator() + .toString(); - service.diff(project.getLocation(), - selectedItemPath.isEmpty() ? null : singletonList(selectedItemPath), NAME_STATUS, false, 0, REVISION, false) - .then(diff -> { - if (diff.isEmpty()) { - dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), - locale.compareMessageIdenticalContentText(), null).show(); - } else { - AlteredFiles alteredFiles = new AlteredFiles(project, diff); - if (alteredFiles.getFilesQuantity() == 1) { - comparePresenter.showCompareWithLatest(alteredFiles, null, REVISION); - } else { - changesListPresenter.show(alteredFiles, REVISION, null); - } - } - }) - .catchError(arg -> { - notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); - }); - } + service + .diff( + project.getLocation(), + selectedItemPath.isEmpty() ? null : singletonList(selectedItemPath), + NAME_STATUS, + false, + 0, + REVISION, + false) + .then( + diff -> { + if (diff.isEmpty()) { + dialogFactory + .createMessageDialog( + locale.compareMessageIdenticalContentTitle(), + locale.compareMessageIdenticalContentText(), + null) + .show(); + } else { + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + if (alteredFiles.getFilesQuantity() == 1) { + comparePresenter.showCompareWithLatest(alteredFiles, null, REVISION); + } else { + changesListPresenter.show(alteredFiles, REVISION, null); + } + } + }) + .catchError( + arg -> { + notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); + }); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index 5087fae4b65..48fbd825c7a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.commit; import com.google.inject.Inject; @@ -57,245 +57,277 @@ */ @Singleton public class CommitPresenter implements CommitView.ActionDelegate { - private static final String COMMIT_COMMAND_NAME = "Git commit"; + private static final String COMMIT_COMMAND_NAME = "Git commit"; - private final ChangesPanelPresenter changesPanelPresenter; - private final DialogFactory dialogFactory; - private final AppContext appContext; - private final CommitView view; - private final GitServiceClient service; - private final GitLocalizationConstant constant; - private final NotificationManager notificationManager; - private final DateTimeFormatter dateTimeFormatter; - private final GitOutputConsoleFactory gitOutputConsoleFactory; - private final ProcessesPanelPresenter consolesPanelPresenter; + private final ChangesPanelPresenter changesPanelPresenter; + private final DialogFactory dialogFactory; + private final AppContext appContext; + private final CommitView view; + private final GitServiceClient service; + private final GitLocalizationConstant constant; + private final NotificationManager notificationManager; + private final DateTimeFormatter dateTimeFormatter; + private final GitOutputConsoleFactory gitOutputConsoleFactory; + private final ProcessesPanelPresenter consolesPanelPresenter; - private Project project; - private List allFiles; - private List filesToCommit; + private Project project; + private List allFiles; + private List filesToCommit; - @Inject - public CommitPresenter(CommitView view, - GitServiceClient service, - ChangesPanelPresenter changesPanelPresenter, - GitLocalizationConstant constant, - NotificationManager notificationManager, - DialogFactory dialogFactory, - AppContext appContext, - DateTimeFormatter dateTimeFormatter, - GitOutputConsoleFactory gitOutputConsoleFactory, - ProcessesPanelPresenter processesPanelPresenter) { - this.view = view; - this.changesPanelPresenter = changesPanelPresenter; - this.dialogFactory = dialogFactory; - this.appContext = appContext; - this.dateTimeFormatter = dateTimeFormatter; - this.gitOutputConsoleFactory = gitOutputConsoleFactory; - this.consolesPanelPresenter = processesPanelPresenter; - this.view.setDelegate(this); - this.service = service; - this.constant = constant; - this.notificationManager = notificationManager; + @Inject + public CommitPresenter( + CommitView view, + GitServiceClient service, + ChangesPanelPresenter changesPanelPresenter, + GitLocalizationConstant constant, + NotificationManager notificationManager, + DialogFactory dialogFactory, + AppContext appContext, + DateTimeFormatter dateTimeFormatter, + GitOutputConsoleFactory gitOutputConsoleFactory, + ProcessesPanelPresenter processesPanelPresenter) { + this.view = view; + this.changesPanelPresenter = changesPanelPresenter; + this.dialogFactory = dialogFactory; + this.appContext = appContext; + this.dateTimeFormatter = dateTimeFormatter; + this.gitOutputConsoleFactory = gitOutputConsoleFactory; + this.consolesPanelPresenter = processesPanelPresenter; + this.view.setDelegate(this); + this.service = service; + this.constant = constant; + this.notificationManager = notificationManager; - this.filesToCommit = new ArrayList<>(); - this.view.setChangesPanelView(changesPanelPresenter.getView()); - } + this.filesToCommit = new ArrayList<>(); + this.view.setChangesPanelView(changesPanelPresenter.getView()); + } - public void showDialog(Project project) { - this.project = project; + public void showDialog(Project project) { + this.project = project; - view.setValueToAmendCheckBox(false); - view.setValueToPushAfterCommitCheckBox(false); - view.setEnableAmendCheckBox(true); - view.setEnablePushAfterCommitCheckBox(true); - view.setEnableRemoteBranchesDropDownLis(false); - service.diff(project.getLocation(), null, NAME_STATUS, true, 0, "HEAD", false) - .then(diff -> { - service.log(project.getLocation(), null, -1, 1, false) - .then(arg -> { - if (diff.isEmpty()) { - showAskForAmendDialog(); - } else { - show(diff); - } - }) - .catchError(error -> { - if (getErrorCode(error.getCause()) == ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED) { - service.getStatus(project.getLocation()).then( - status -> { - view.setEnableAmendCheckBox(false); - view.setEnablePushAfterCommitCheckBox(false); - List newFiles = new ArrayList<>(); - newFiles.addAll(status.getAdded()); - newFiles.addAll(status.getUntracked()); - show(newFiles.stream().collect(joining("\nA\t", "A\t", ""))); - }); - } - }); - }) - .catchError(arg -> { - notificationManager.notify(constant.diffFailed(), FAIL, FLOAT_MODE); - }); + view.setValueToAmendCheckBox(false); + view.setValueToPushAfterCommitCheckBox(false); + view.setEnableAmendCheckBox(true); + view.setEnablePushAfterCommitCheckBox(true); + view.setEnableRemoteBranchesDropDownLis(false); + service + .diff(project.getLocation(), null, NAME_STATUS, true, 0, "HEAD", false) + .then( + diff -> { + service + .log(project.getLocation(), null, -1, 1, false) + .then( + arg -> { + if (diff.isEmpty()) { + showAskForAmendDialog(); + } else { + show(diff); + } + }) + .catchError( + error -> { + if (getErrorCode(error.getCause()) + == ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED) { + service + .getStatus(project.getLocation()) + .then( + status -> { + view.setEnableAmendCheckBox(false); + view.setEnablePushAfterCommitCheckBox(false); + List newFiles = new ArrayList<>(); + newFiles.addAll(status.getAdded()); + newFiles.addAll(status.getUntracked()); + show(newFiles.stream().collect(joining("\nA\t", "A\t", ""))); + }); + } + }); + }) + .catchError( + arg -> { + notificationManager.notify(constant.diffFailed(), FAIL, FLOAT_MODE); + }); - service.branchList(project.getLocation(), LIST_REMOTE) - .then(view::setRemoteBranchesList) - .catchError(error -> { - notificationManager.notify(constant.branchesListFailed(), FAIL, FLOAT_MODE); - }); - } + service + .branchList(project.getLocation(), LIST_REMOTE) + .then(view::setRemoteBranchesList) + .catchError( + error -> { + notificationManager.notify(constant.branchesListFailed(), FAIL, FLOAT_MODE); + }); + } - private void showAskForAmendDialog() { - dialogFactory.createConfirmDialog(constant.commitTitle(), - constant.commitNothingToCommitMessageText(), - constant.buttonYes(), - constant.buttonNo(), - () -> { - view.setValueToAmendCheckBox(true); - view.setEnablePushAfterCommitCheckBox(false); - setAmendCommitMessage(); - show(null); - }, - null) - .show(); - } + private void showAskForAmendDialog() { + dialogFactory + .createConfirmDialog( + constant.commitTitle(), + constant.commitNothingToCommitMessageText(), + constant.buttonYes(), + constant.buttonNo(), + () -> { + view.setValueToAmendCheckBox(true); + view.setEnablePushAfterCommitCheckBox(false); + setAmendCommitMessage(); + show(null); + }, + null) + .show(); + } - private void show(@Nullable String diff) { - AlteredFiles alteredFiles = new AlteredFiles(project, diff); - filesToCommit.clear(); - allFiles = alteredFiles.getAlteredFilesList(); + private void show(@Nullable String diff) { + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + filesToCommit.clear(); + allFiles = alteredFiles.getAlteredFilesList(); - view.setEnableCommitButton(!view.getMessage().isEmpty()); - view.focusInMessageField(); - view.showDialog(); - changesPanelPresenter.show(alteredFiles); - view.setMarkedCheckBoxes(stream(appContext.getResources()).map(resource -> resource.getLocation().removeFirstSegments(1)) - .collect(Collectors.toSet())); - } + view.setEnableCommitButton(!view.getMessage().isEmpty()); + view.focusInMessageField(); + view.showDialog(); + changesPanelPresenter.show(alteredFiles); + view.setMarkedCheckBoxes( + stream(appContext.getResources()) + .map(resource -> resource.getLocation().removeFirstSegments(1)) + .collect(Collectors.toSet())); + } - @Override - public void onCommitClicked() { - Path location = project.getLocation(); - Path[] filesToCommitArray = getFilesToCommitArray(); + @Override + public void onCommitClicked() { + Path location = project.getLocation(); + Path[] filesToCommitArray = getFilesToCommitArray(); - service.add(location, false, filesToCommitArray) - .then(arg -> { - service.commit(location, - view.getMessage(), - view.isAmend(), - filesToCommitArray) - .then(revision -> { - onCommitSuccess(revision); - if (view.isPushAfterCommit()) { - push(location); - } - view.close(); - }) - .catchError(error -> { - handleError(error.getCause()); - }); - }) - .catchError(error -> { - notificationManager.notify(constant.addFailed(), FAIL, FLOAT_MODE); - }); - } + service + .add(location, false, filesToCommitArray) + .then( + arg -> { + service + .commit(location, view.getMessage(), view.isAmend(), filesToCommitArray) + .then( + revision -> { + onCommitSuccess(revision); + if (view.isPushAfterCommit()) { + push(location); + } + view.close(); + }) + .catchError( + error -> { + handleError(error.getCause()); + }); + }) + .catchError( + error -> { + notificationManager.notify(constant.addFailed(), FAIL, FLOAT_MODE); + }); + } - private Path[] getFilesToCommitArray() { - Path[] filesToCommitArray = new Path[filesToCommit.size()]; - filesToCommit.forEach(file -> filesToCommitArray[filesToCommit.indexOf(file)] = Path.valueOf(file)); + private Path[] getFilesToCommitArray() { + Path[] filesToCommitArray = new Path[filesToCommit.size()]; + filesToCommit.forEach( + file -> filesToCommitArray[filesToCommit.indexOf(file)] = Path.valueOf(file)); - return filesToCommitArray; - } + return filesToCommitArray; + } - private void push(Path location) { - String remoteBranch = view.getRemoteBranch(); - String remote = remoteBranch.split("/")[0]; - String branch = remoteBranch.split("/")[1]; - service.push(location, - singletonList(branch), - remote, - false) - .then(result -> { - notificationManager.notify(constant.pushSuccess(remote), SUCCESS, FLOAT_MODE); - }) - .catchError(error -> { - notificationManager.notify(constant.pushFail(), FAIL, FLOAT_MODE); - }); - } + private void push(Path location) { + String remoteBranch = view.getRemoteBranch(); + String remote = remoteBranch.split("/")[0]; + String branch = remoteBranch.split("/")[1]; + service + .push(location, singletonList(branch), remote, false) + .then( + result -> { + notificationManager.notify(constant.pushSuccess(remote), SUCCESS, FLOAT_MODE); + }) + .catchError( + error -> { + notificationManager.notify(constant.pushFail(), FAIL, FLOAT_MODE); + }); + } - @Override - public void onCancelClicked() { - view.close(); - } + @Override + public void onCancelClicked() { + view.close(); + } - @Override - public void onValueChanged() { - view.setEnableCommitButton(!view.getMessage().isEmpty() && (!filesToCommit.isEmpty() || view.isAmend())); - } + @Override + public void onValueChanged() { + view.setEnableCommitButton( + !view.getMessage().isEmpty() && (!filesToCommit.isEmpty() || view.isAmend())); + } - @Override - public void setAmendCommitMessage() { - service.log(project.getLocation(), null, -1, -1, false) - .then(log -> { - String message = ""; - final Revision revision = getFirst(log.getCommits(), null); - if (revision != null) { - message = revision.getMessage(); - } - CommitPresenter.this.view.setMessage(message); - CommitPresenter.this.view.setEnableCommitButton(!message.isEmpty()); - }) - .catchError(error -> { - if (getErrorCode(error.getCause()) == ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED) { - dialogFactory.createMessageDialog(constant.commitTitle(), - constant.initCommitWasNotPerformed(), - null).show(); - } else { - CommitPresenter.this.view.setMessage(""); - notificationManager.notify(constant.logFailed(), FAIL, NOT_EMERGE_MODE); - } - }); - } + @Override + public void setAmendCommitMessage() { + service + .log(project.getLocation(), null, -1, -1, false) + .then( + log -> { + String message = ""; + final Revision revision = getFirst(log.getCommits(), null); + if (revision != null) { + message = revision.getMessage(); + } + CommitPresenter.this.view.setMessage(message); + CommitPresenter.this.view.setEnableCommitButton(!message.isEmpty()); + }) + .catchError( + error -> { + if (getErrorCode(error.getCause()) == ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED) { + dialogFactory + .createMessageDialog( + constant.commitTitle(), constant.initCommitWasNotPerformed(), null) + .show(); + } else { + CommitPresenter.this.view.setMessage(""); + notificationManager.notify(constant.logFailed(), FAIL, NOT_EMERGE_MODE); + } + }); + } - @Override - public void onFileNodeCheckBoxValueChanged(Path path, boolean newCheckBoxValue) { - if (newCheckBoxValue) { - filesToCommit.add(path.toString()); - } else { - filesToCommit.remove(path.toString()); - } + @Override + public void onFileNodeCheckBoxValueChanged(Path path, boolean newCheckBoxValue) { + if (newCheckBoxValue) { + filesToCommit.add(path.toString()); + } else { + filesToCommit.remove(path.toString()); } + } - @Override - public List getChangedFiles() { - return allFiles; - } + @Override + public List getChangedFiles() { + return allFiles; + } - private void onCommitSuccess(@NotNull final Revision revision) { - String date = dateTimeFormatter.getFormattedDate(revision.getCommitTime()); - String message = constant.commitMessage(revision.getId(), date); + private void onCommitSuccess(@NotNull final Revision revision) { + String date = dateTimeFormatter.getFormattedDate(revision.getCommitTime()); + String message = constant.commitMessage(revision.getId(), date); - if ((revision.getCommitter() != null && revision.getCommitter().getName() != null && - !revision.getCommitter().getName().isEmpty())) { - message += " " + constant.commitUser(revision.getCommitter().getName()); - } - GitOutputConsole console = gitOutputConsoleFactory.create(COMMIT_COMMAND_NAME); - console.print(message); - consolesPanelPresenter.addCommandOutput(appContext.getDevMachine().getId(), console); - notificationManager.notify(message); - view.setMessage(""); + if ((revision.getCommitter() != null + && revision.getCommitter().getName() != null + && !revision.getCommitter().getName().isEmpty())) { + message += " " + constant.commitUser(revision.getCommitter().getName()); } + GitOutputConsole console = gitOutputConsoleFactory.create(COMMIT_COMMAND_NAME); + console.print(message); + consolesPanelPresenter.addCommandOutput(appContext.getDevMachine().getId(), console); + notificationManager.notify(message); + view.setMessage(""); + } - private void handleError(@NotNull Throwable exception) { - if (exception instanceof ServerException && - ((ServerException)exception).getErrorCode() == ErrorCodes.NO_COMMITTER_NAME_OR_EMAIL_DEFINED) { - dialogFactory.createMessageDialog(constant.commitTitle(), constant.committerIdentityInfoEmpty(), null).show(); - return; - } - String exceptionMessage = exception.getMessage(); - String errorMessage = (exceptionMessage != null && !exceptionMessage.isEmpty()) ? exceptionMessage : constant.commitFailed(); - GitOutputConsole console = gitOutputConsoleFactory.create(COMMIT_COMMAND_NAME); - console.printError(errorMessage); - consolesPanelPresenter.addCommandOutput(appContext.getDevMachine().getId(), console); - notificationManager.notify(constant.commitFailed(), errorMessage, FAIL, FLOAT_MODE); + private void handleError(@NotNull Throwable exception) { + if (exception instanceof ServerException + && ((ServerException) exception).getErrorCode() + == ErrorCodes.NO_COMMITTER_NAME_OR_EMAIL_DEFINED) { + dialogFactory + .createMessageDialog(constant.commitTitle(), constant.committerIdentityInfoEmpty(), null) + .show(); + return; } + String exceptionMessage = exception.getMessage(); + String errorMessage = + (exceptionMessage != null && !exceptionMessage.isEmpty()) + ? exceptionMessage + : constant.commitFailed(); + GitOutputConsole console = gitOutputConsoleFactory.create(COMMIT_COMMAND_NAME); + console.printError(errorMessage); + consolesPanelPresenter.addCommandOutput(appContext.getDevMachine().getId(), console); + notificationManager.notify(constant.commitFailed(), errorMessage, FAIL, FLOAT_MODE); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java index d7eb8207a78..219d47b3726 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.commit; import org.eclipse.che.api.git.shared.Branch; @@ -25,112 +25,109 @@ * @author Andrey Plotnikov */ public interface CommitView extends View { - /** Needs for delegate some function into Commit view. */ - interface ActionDelegate { - /** Performs any actions appropriate in response to the user having pressed the Commit button. */ - void onCommitClicked(); - - /** Performs any actions appropriate in response to the user having pressed the Cancel button. */ - void onCancelClicked(); - - /** Performs any actions appropriate in response to the user having changed something. */ - void onValueChanged(); - - /** Performs any actions appropriate in response to the user having clicked on changed file check-box. */ - void onFileNodeCheckBoxValueChanged(Path path, boolean newCheckBoxValue); - - /** Set the commit message for an amend commit. */ - void setAmendCommitMessage(); - - /** Get list of changed files paths. */ - List getChangedFiles(); - } - - /** @return entered message */ - @NotNull - String getMessage(); - - /** - * Mark check-boxes of given paths as checked. - * - * @param paths - * pats of nodes - */ - void setMarkedCheckBoxes(Set paths); - - /** - * Returns selected remote branch from branches drop-down list. - */ - String getRemoteBranch(); - - /** - * Set content into message field. - * - * @param message - * text what need to insert - */ - void setMessage(@NotNull String message); - - /** - * Set list of remote branches to drop-down. - */ - void setRemoteBranchesList(List branches); - - /** Returns true if need to amend the last commit, and false otherwise */ - boolean isAmend(); - - /** Set checked or unchecked the 'Amend' checkbox. */ - void setValueToAmendCheckBox(boolean value); - - /** Set checked or unchecked the 'Push after commit' checkbox. */ - void setValueToPushAfterCommitCheckBox(boolean value); - - /** - * Change the enable state of the 'Amend' check-box. - * - * @param enable - * true to enable the check-box, false to disable it - */ - void setEnableAmendCheckBox(boolean enable); - - /** - * Change the enable state of the 'Push after commit' check-box. - * - * @param enable - * true to enable the check-box, false to disable it - */ - void setEnablePushAfterCommitCheckBox(boolean enable); - + /** Needs for delegate some function into Commit view. */ + interface ActionDelegate { /** - * Change the enable state of the 'Remote branches' drop-down list. - * - * @param enable - * true to enable the drop-down list, false to disable it + * Performs any actions appropriate in response to the user having pressed the Commit button. */ - void setEnableRemoteBranchesDropDownLis(boolean enable); - - /** Returns true if need to push after commit, and false otherwise */ - boolean isPushAfterCommit(); + void onCommitClicked(); /** - * Change the enable state of the commit button. - * - * @param enable - * true to enable the button, false to disable it + * Performs any actions appropriate in response to the user having pressed the Cancel button. */ - void setEnableCommitButton(boolean enable); - - /** Give focus to message field. */ - void focusInMessageField(); - - /** Close dialog. */ - void close(); + void onCancelClicked(); - /** Show dialog. */ - void showDialog(); + /** Performs any actions appropriate in response to the user having changed something. */ + void onValueChanged(); /** - * Initialize changed panel. + * Performs any actions appropriate in response to the user having clicked on changed file + * check-box. */ - void setChangesPanelView(ChangesPanelView changesPanelView); + void onFileNodeCheckBoxValueChanged(Path path, boolean newCheckBoxValue); + + /** Set the commit message for an amend commit. */ + void setAmendCommitMessage(); + + /** Get list of changed files paths. */ + List getChangedFiles(); + } + + /** @return entered message */ + @NotNull + String getMessage(); + + /** + * Mark check-boxes of given paths as checked. + * + * @param paths pats of nodes + */ + void setMarkedCheckBoxes(Set paths); + + /** Returns selected remote branch from branches drop-down list. */ + String getRemoteBranch(); + + /** + * Set content into message field. + * + * @param message text what need to insert + */ + void setMessage(@NotNull String message); + + /** Set list of remote branches to drop-down. */ + void setRemoteBranchesList(List branches); + + /** + * Returns true if need to amend the last commit, and false otherwise + */ + boolean isAmend(); + + /** Set checked or unchecked the 'Amend' checkbox. */ + void setValueToAmendCheckBox(boolean value); + + /** Set checked or unchecked the 'Push after commit' checkbox. */ + void setValueToPushAfterCommitCheckBox(boolean value); + + /** + * Change the enable state of the 'Amend' check-box. + * + * @param enable true to enable the check-box, false to disable it + */ + void setEnableAmendCheckBox(boolean enable); + + /** + * Change the enable state of the 'Push after commit' check-box. + * + * @param enable true to enable the check-box, false to disable it + */ + void setEnablePushAfterCommitCheckBox(boolean enable); + + /** + * Change the enable state of the 'Remote branches' drop-down list. + * + * @param enable true to enable the drop-down list, false to disable it + */ + void setEnableRemoteBranchesDropDownLis(boolean enable); + + /** Returns true if need to push after commit, and false otherwise */ + boolean isPushAfterCommit(); + + /** + * Change the enable state of the commit button. + * + * @param enable true to enable the button, false to disable it + */ + void setEnableCommitButton(boolean enable); + + /** Give focus to message field. */ + void focusInMessageField(); + + /** Close dialog. */ + void close(); + + /** Show dialog. */ + void showDialog(); + + /** Initialize changed panel. */ + void setChangesPanelView(ChangesPanelView changesPanelView); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 73d57d6ed1f..77e01241cfa 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare; import com.google.inject.Inject; @@ -42,292 +42,341 @@ @Singleton public class ComparePresenter implements CompareView.ActionDelegate { - private final EventBus eventBus; - private final DialogFactory dialogFactory; - private final CompareView view; - private final GitServiceClient service; - private final GitLocalizationConstant locale; - private final NotificationManager notificationManager; - - private boolean compareWithLatest; - private AlteredFiles alteredFiles; - private int currentFileIndex; - - private File comparedFile; - private String revision; - private String localContent; - - private String revisionA; - private String revisionB; - - @Inject - public ComparePresenter(EventBus eventBus, - DialogFactory dialogFactory, - CompareView view, - GitServiceClient service, - GitLocalizationConstant locale, - NotificationManager notificationManager) { - this.eventBus = eventBus; - this.dialogFactory = dialogFactory; - this.view = view; - this.service = service; - this.locale = locale; - this.notificationManager = notificationManager; - this.view.setDelegate(this); - } - - /** - * Show compare window for given set of files between given revision and HEAD. - * - * @param alteredFiles - * ordered changed files - * @param currentFile - * file which will be shown first, if null then the first from the list will be shown - * @param revision - * hash of revision or branch - */ - public void showCompareWithLatest(final AlteredFiles alteredFiles, - @Nullable final String currentFile, - final String revision) { - this.alteredFiles = alteredFiles; - this.revision = revision; - - this.compareWithLatest = true; - - currentFileIndex = findFileIndexOrFirst(currentFile); - showCompareForCurrentFile(); - } + private final EventBus eventBus; + private final DialogFactory dialogFactory; + private final CompareView view; + private final GitServiceClient service; + private final GitLocalizationConstant locale; + private final NotificationManager notificationManager; + + private boolean compareWithLatest; + private AlteredFiles alteredFiles; + private int currentFileIndex; + + private File comparedFile; + private String revision; + private String localContent; + + private String revisionA; + private String revisionB; + + @Inject + public ComparePresenter( + EventBus eventBus, + DialogFactory dialogFactory, + CompareView view, + GitServiceClient service, + GitLocalizationConstant locale, + NotificationManager notificationManager) { + this.eventBus = eventBus; + this.dialogFactory = dialogFactory; + this.view = view; + this.service = service; + this.locale = locale; + this.notificationManager = notificationManager; + this.view.setDelegate(this); + } + + /** + * Show compare window for given set of files between given revision and HEAD. + * + * @param alteredFiles ordered changed files + * @param currentFile file which will be shown first, if null then the first from the list will be + * shown + * @param revision hash of revision or branch + */ + public void showCompareWithLatest( + final AlteredFiles alteredFiles, @Nullable final String currentFile, final String revision) { + this.alteredFiles = alteredFiles; + this.revision = revision; + + this.compareWithLatest = true; + + currentFileIndex = findFileIndexOrFirst(currentFile); + showCompareForCurrentFile(); + } + + /** + * Shows compare window for given set of files between specified revisions. + * + * @param alteredFiles ordered changed files + * @param currentFile file which will be shown first, if null then the first from the list will be + * shown + * @param revisionA hash of the first revision or branch. If it is set to {@code null}, compare + * with empty repository state will be performed + * @param revisionB hash of the second revision or branch. If it is set to {@code null}, compare + * with latest repository state will be performed + */ + public void showCompareBetweenRevisions( + final AlteredFiles alteredFiles, + @Nullable final String currentFile, + @Nullable final String revisionA, + @Nullable final String revisionB) { + this.alteredFiles = alteredFiles; + this.revisionA = revisionA; + this.revisionB = revisionB; + + this.compareWithLatest = false; + + currentFileIndex = findFileIndexOrFirst(currentFile); + showCompareForCurrentFile(); + } + + /** + * Shows comparison for selected file. Type of comparison to show depends on {@code + * compareWithLatest} field. + */ + private void showCompareForCurrentFile() { + view.setEnableNextDiffButton(currentFileIndex != (alteredFiles.getFilesQuantity() - 1)); + view.setEnablePreviousDiffButton(currentFileIndex != 0); + + alteredFiles + .getProject() + .getFile(alteredFiles.getFileByIndex(currentFileIndex)) + .then( + file -> { + if (file.isPresent()) { + this.comparedFile = file.get(); + view.setEnableSaveChangesButton(true); + } else { // file is deleted + this.comparedFile = null; + view.setEnableSaveChangesButton(false); + } + + // For now git repository supported only in project root folder + final Path gitDirLocation = alteredFiles.getProject().getLocation(); + final Path relPath = Path.valueOf(alteredFiles.getFileByIndex(currentFileIndex)); + + if (compareWithLatest) { + showCompareWithLatestForFile( + gitDirLocation, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); + } else { + showCompareBetweenRevisionsForFile( + gitDirLocation, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); + } + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } - /** - * Shows compare window for given set of files between specified revisions. - * - * @param alteredFiles - * ordered changed files - * @param currentFile - * file which will be shown first, if null then the first from the list will be shown - * @param revisionA - * hash of the first revision or branch. - * If it is set to {@code null}, compare with empty repository state will be performed - * @param revisionB - * hash of the second revision or branch. - * If it is set to {@code null}, compare with latest repository state will be performed - */ - public void showCompareBetweenRevisions(final AlteredFiles alteredFiles, - @Nullable final String currentFile, - @Nullable final String revisionA, - @Nullable final String revisionB) { - this.alteredFiles = alteredFiles; - this.revisionA = revisionA; - this.revisionB = revisionB; - - this.compareWithLatest = false; - - currentFileIndex = findFileIndexOrFirst(currentFile); - showCompareForCurrentFile(); + private void showCompareWithLatestForFile( + final Path gitDirLocation, final Path relPath, final Status status) { + if (status.equals(ADDED)) { + showCompare(""); + return; } - /** - * Shows comparison for selected file. - * Type of comparison to show depends on {@code compareWithLatest} field. - */ - private void showCompareForCurrentFile() { - view.setEnableNextDiffButton(currentFileIndex != (alteredFiles.getFilesQuantity() - 1)); - view.setEnablePreviousDiffButton(currentFileIndex != 0); - - alteredFiles.getProject() - .getFile(alteredFiles.getFileByIndex(currentFileIndex)) - .then(file -> { - if (file.isPresent()) { - this.comparedFile = file.get(); - view.setEnableSaveChangesButton(true); - } else { // file is deleted - this.comparedFile = null; - view.setEnableSaveChangesButton(false); - } - - // For now git repository supported only in project root folder - final Path gitDirLocation = alteredFiles.getProject().getLocation(); - final Path relPath = Path.valueOf(alteredFiles.getFileByIndex(currentFileIndex)); - - if (compareWithLatest) { - showCompareWithLatestForFile(gitDirLocation, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); - } else { - showCompareBetweenRevisionsForFile(gitDirLocation, relPath, alteredFiles.getStatusByIndex(currentFileIndex)); - } - }).catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); + if (status.equals(DELETED)) { + service + .showFileContent(gitDirLocation, relPath, revision) + .then( + content -> { + view.setTitle(relPath.toString()); + view.setColumnTitles( + locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); + view.show(content.getContent(), "", relPath.toString(), true); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } else { + service + .showFileContent(gitDirLocation, relPath, revision) + .then( + content -> { + showCompare(content.getContent()); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); } - - private void showCompareWithLatestForFile(final Path gitDirLocation, final Path relPath, final Status status) { - if (status.equals(ADDED)) { - showCompare(""); - return; - } - - if (status.equals(DELETED)) { - service.showFileContent(gitDirLocation, relPath, revision) - .then(content -> { - view.setTitle(relPath.toString()); - view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); - view.show(content.getContent(), "", relPath.toString(), true); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } else { - service.showFileContent(gitDirLocation, relPath, revision) - .then(content -> { - showCompare(content.getContent()); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } + } + + private void showCompareBetweenRevisionsForFile( + final Path gitDir, final Path relPath, final Status status) { + view.setTitle(relPath.toString()); + + if (status == Status.ADDED) { + service + .showFileContent(gitDir, relPath, revisionB) + .then( + response -> { + view.setColumnTitles( + revisionB + locale.compareReadOnlyTitle(), + revisionA == null ? "" : revisionA + locale.compareReadOnlyTitle()); + view.show("", response.getContent(), relPath.toString(), true); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } else if (status == Status.DELETED) { + service + .showFileContent(gitDir, relPath, revisionA) + .then( + response -> { + view.setColumnTitles( + revisionB + locale.compareReadOnlyTitle(), + revisionA + locale.compareReadOnlyTitle()); + view.show(response.getContent(), "", relPath.toString(), true); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } else { + service + .showFileContent(gitDir, relPath, revisionA) + .then( + contentAResponse -> { + service + .showFileContent(gitDir, relPath, revisionB) + .then( + contentBResponse -> { + view.setColumnTitles( + revisionB + locale.compareReadOnlyTitle(), + revisionA + locale.compareReadOnlyTitle()); + view.show( + contentAResponse.getContent(), + contentBResponse.getContent(), + relPath.toString(), + true); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + }); } + } - private void showCompareBetweenRevisionsForFile(final Path gitDir, final Path relPath, final Status status) { - view.setTitle(relPath.toString()); - - if (status == Status.ADDED) { - service.showFileContent(gitDir, relPath, revisionB) - .then(response -> { - view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), - revisionA == null ? "" : revisionA + locale.compareReadOnlyTitle()); - view.show("", response.getContent(), relPath.toString(), true); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } else if (status == Status.DELETED) { - service.showFileContent(gitDir, relPath, revisionA) - .then(response -> { - view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); - view.show(response.getContent(), "", relPath.toString(), true); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } else { - service.showFileContent(gitDir, relPath, revisionA) - .then(contentAResponse -> { - service.showFileContent(gitDir, relPath, revisionB) - .then(contentBResponse -> { - view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), - revisionA + locale.compareReadOnlyTitle()); - view.show(contentAResponse.getContent(), contentBResponse.getContent(), relPath.toString(), true); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - }); - } + @Override + public void onClose(final String newContent) { + if (!isSaveNeeded(newContent)) { + view.hide(); + return; } - @Override - public void onClose(final String newContent) { - if (!isSaveNeeded(newContent)) { - view.hide(); - return; - } - - ConfirmCallback confirmCallback = () -> { - saveContent(newContent); - view.hide(); + ConfirmCallback confirmCallback = + () -> { + saveContent(newContent); + view.hide(); }; - CancelCallback cancelCallback = view::hide; - - dialogFactory.createConfirmDialog(locale.compareSaveTitle(), locale.compareSaveQuestion(), locale.buttonYes(), locale.buttonNo(), - confirmCallback, cancelCallback).show(); - } - - @Override - public void onSaveChangesClicked() { - if (compareWithLatest) { - view.getEditableContent(content -> { - if (isSaveNeeded(content)) { - saveContent(content); - } - }); - } - } - - @Override - public void onNextDiffClicked() { - view.getEditableContent(content -> { + CancelCallback cancelCallback = view::hide; + + dialogFactory + .createConfirmDialog( + locale.compareSaveTitle(), + locale.compareSaveQuestion(), + locale.buttonYes(), + locale.buttonNo(), + confirmCallback, + cancelCallback) + .show(); + } + + @Override + public void onSaveChangesClicked() { + if (compareWithLatest) { + view.getEditableContent( + content -> { if (isSaveNeeded(content)) { - saveContent(content); + saveContent(content); } - - currentFileIndex++; - showCompareForCurrentFile(); - }); + }); } - - @Override - public void onPreviousDiffClicked() { - view.getEditableContent(content -> { - if (isSaveNeeded(content)) { - saveContent(content); - } - - currentFileIndex--; - showCompareForCurrentFile(); + } + + @Override + public void onNextDiffClicked() { + view.getEditableContent( + content -> { + if (isSaveNeeded(content)) { + saveContent(content); + } + + currentFileIndex++; + showCompareForCurrentFile(); }); - } - - private void showCompare(final String remoteContent) { - comparedFile.getContent().then(local -> { - localContent = local; - final String path = comparedFile.getLocation().removeFirstSegments(1).toString(); - view.setTitle(path); - view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); - view.show(remoteContent, localContent, path, false); + } + + @Override + public void onPreviousDiffClicked() { + view.getEditableContent( + content -> { + if (isSaveNeeded(content)) { + saveContent(content); + } + + currentFileIndex--; + showCompareForCurrentFile(); }); + } + + private void showCompare(final String remoteContent) { + comparedFile + .getContent() + .then( + local -> { + localContent = local; + final String path = comparedFile.getLocation().removeFirstSegments(1).toString(); + view.setTitle(path); + view.setColumnTitles( + locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); + view.show(remoteContent, localContent, path, false); + }); + } + + /** + * Searches for given file in the changes files list and save it sequential number to class field. + * + * @param currentFile name of file to set up as current; if null or invalid, the first one will be + * chosen. + * @return given file index or first index if specified file isn't found. + */ + private int findFileIndexOrFirst(@Nullable String currentFile) { + if (currentFile == null) { + return 0; } - /** - * Searches for given file in the changes files list and save it sequential number to class field. - * - * @param currentFile - * name of file to set up as current; if null or invalid, the first one will be chosen. - * @return given file index or first index if specified file isn't found. - */ - private int findFileIndexOrFirst(@Nullable String currentFile) { - if (currentFile == null) { - return 0; - } - - int fileIndex = alteredFiles.getAlteredFilesList().indexOf(currentFile); - if (fileIndex == -1) { - return 0; - } - return fileIndex; - } - - /** Returns true if is required to save new content. */ - private boolean isSaveNeeded(final String newContent) { - return compareWithLatest && comparedFile != null && this.localContent != null && !newContent.equals(localContent); - } - - /** Saves given contents into file under edit. */ - private void saveContent(final String content) { - localContent = content; - comparedFile.updateContent(content) - .then(ignored -> { - final Container parent = comparedFile.getParent(); - - if (parent != null) { - parent.synchronize(); - } - - eventBus.fireEvent(new FileContentUpdateEvent(comparedFile.getLocation() - .toString())); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); + int fileIndex = alteredFiles.getAlteredFilesList().indexOf(currentFile); + if (fileIndex == -1) { + return 0; } - + return fileIndex; + } + + /** Returns true if is required to save new content. */ + private boolean isSaveNeeded(final String newContent) { + return compareWithLatest + && comparedFile != null + && this.localContent != null + && !newContent.equals(localContent); + } + + /** Saves given contents into file under edit. */ + private void saveContent(final String content) { + localContent = content; + comparedFile + .updateContent(content) + .then( + ignored -> { + final Container parent = comparedFile.getParent(); + + if (parent != null) { + parent.synchronize(); + } + + eventBus.fireEvent(new FileContentUpdateEvent(comparedFile.getLocation().toString())); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java index 1d66490c57a..7849e6be49d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare; import com.google.inject.ImplementedBy; @@ -22,75 +22,64 @@ @ImplementedBy(CompareViewImpl.class) interface CompareView extends View { - interface ActionDelegate { - /** - * Performs some actions in response to user's closing the window. - * - * @param newContent - * new content of compare widget - */ - void onClose(String newContent); - - /** - * Performs save of editable panel in diff dialog. - * Does nothing if content isn't editable. - */ - void onSaveChangesClicked(); - - /** Shows next diff. */ - void onNextDiffClicked(); - - /** Shows previous diff. */ - void onPreviousDiffClicked(); - } - - interface ContentConsumer { - void processContent(String content); - } - - void getEditableContent(ContentConsumer contentConsumer); - + interface ActionDelegate { /** - * Set a title for the window. + * Performs some actions in response to user's closing the window. * - * @param title - * text that will be as a title in the window + * @param newContent new content of compare widget */ - void setTitle(String title); - - /** - * Set left and right column titles. - * - * @param leftTitle - * title for the left column - * @param rightTitle - * title for the right column - */ - void setColumnTitles(String leftTitle, String rightTitle); - - /** Hide compare window. */ - void hide(); - - /** - * Show compare window with specified contents. - * - * @param oldContent - * content from specified revision or branch - * @param newContent - * content of current file - * @param file - * changed file name with its full path - * @param readOnly - * read only state of the left column - */ - void show(String oldContent, String newContent, String file, boolean readOnly); - - /** Change the enable state of the Save Changes button */ - void setEnableSaveChangesButton(boolean enabled); - - /** Change the enable state of the Next Diff button */ - void setEnableNextDiffButton(boolean enabled); - - /** Change the enable state of the Previous Diff button */ - void setEnablePreviousDiffButton(boolean enabled); + void onClose(String newContent); + + /** Performs save of editable panel in diff dialog. Does nothing if content isn't editable. */ + void onSaveChangesClicked(); + + /** Shows next diff. */ + void onNextDiffClicked(); + + /** Shows previous diff. */ + void onPreviousDiffClicked(); + } + + interface ContentConsumer { + void processContent(String content); + } + + void getEditableContent(ContentConsumer contentConsumer); + + /** + * Set a title for the window. + * + * @param title text that will be as a title in the window + */ + void setTitle(String title); + + /** + * Set left and right column titles. + * + * @param leftTitle title for the left column + * @param rightTitle title for the right column + */ + void setColumnTitles(String leftTitle, String rightTitle); + + /** Hide compare window. */ + void hide(); + + /** + * Show compare window with specified contents. + * + * @param oldContent content from specified revision or branch + * @param newContent content of current file + * @param file changed file name with its full path + * @param readOnly read only state of the left column + */ + void show(String oldContent, String newContent, String file, boolean readOnly); + + /** Change the enable state of the Save Changes button */ + void setEnableSaveChangesButton(boolean enabled); + + /** Change the enable state of the Next Diff button */ + void setEnableNextDiffButton(boolean enabled); + + /** Change the enable state of the Previous Diff button */ + void setEnablePreviousDiffButton(boolean enabled); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index 2604fc02e94..cab58d59216 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare; import com.google.gwt.core.client.GWT; @@ -39,125 +39,136 @@ @Singleton final class CompareViewImpl extends Window implements CompareView { - interface PreviewViewImplUiBinder extends UiBinder { - } - - private static final PreviewViewImplUiBinder UI_BINDER = GWT.create(PreviewViewImplUiBinder.class); - - @UiField - DockLayoutPanel dockPanel; - @UiField - SimplePanel comparePanel; - @UiField - Label leftTitle; - @UiField - Label rightTitle; - - @UiField(provided = true) - final GitLocalizationConstant locale; - - private final Button btnSaveChanges; - private final Button btnNextDiff; - private final Button btnPrevDiff; - - private ActionDelegate delegate; - private ThemeAgent themeAgent; - private CompareWidget compare; - - private final CompareFactory compareFactory; - private final LoaderFactory loaderFactory; - - @Inject - public CompareViewImpl(CompareFactory compareFactory, - GitLocalizationConstant locale, - LoaderFactory loaderFactory, - ThemeAgent themeAgent) { - this.compareFactory = compareFactory; - this.locale = locale; - this.loaderFactory = loaderFactory; - this.themeAgent = themeAgent; - - setWidget(UI_BINDER.createAndBindUi(this)); - - Button closeButton = createButton(locale.buttonClose(), "git-compare-close-btn", event -> onClose()); - Button refreshButton = createButton(locale.buttonRefresh(), "git-compare-refresh-btn", event -> compare.refresh()); - - btnSaveChanges = createButton(locale.buttonSaveChanges(), "git-compare-save-changes-btn", event -> delegate.onSaveChangesClicked()); - btnNextDiff = createButton(locale.buttonNextDiff(), "git-compare-next-diff-btn", event -> delegate.onNextDiffClicked()); - btnPrevDiff = createButton(locale.buttonPreviousDiff(), "git-compare-prev-diff-btn", event -> delegate.onPreviousDiffClicked()); - - addButtonToFooter(closeButton); - addButtonToFooter(refreshButton); - addButtonToFooter(btnSaveChanges); - addButtonToFooter(btnNextDiff); - addButtonToFooter(btnPrevDiff); - - comparePanel.getElement().setId(Document.get().createUniqueId()); - } - - @Override - public void setDelegate(ActionDelegate delegate) { - this.delegate = delegate; - } - - @Override - protected void onClose() { - compare.getContent(content -> delegate.onClose(content)); - } - - @Override - public void getEditableContent(ContentConsumer contentConsumer) { - compare.getContent(contentConsumer::processContent); - } - - @Override - public void setColumnTitles(String leftTitle, String rightTitle) { - this.leftTitle.setText(leftTitle); - this.rightTitle.setText(rightTitle); - } - - @Override - public void show(String oldContent, String newContent, String fileName, boolean readOnly) { - dockPanel.setSize(String.valueOf((com.google.gwt.user.client.Window.getClientWidth() / 100) * 95) + "px", - String.valueOf((com.google.gwt.user.client.Window.getClientHeight() / 100) * 90) + "px"); - - super.show(); - - FileOptions newFile = compareFactory.createFieOptions(); - newFile.setReadOnly(readOnly); - - FileOptions oldFile = compareFactory.createFieOptions(); - oldFile.setReadOnly(true); - - newFile.setContent(newContent); - newFile.setName(fileName); - oldFile.setContent(oldContent); - oldFile.setName(fileName); - - CompareConfig compareConfig = compareFactory.createCompareConfig(); - compareConfig.setNewFile(newFile); - compareConfig.setOldFile(oldFile); - compareConfig.setShowTitle(false); - compareConfig.setShowLineStatus(false); - - compare = new CompareWidget(compareConfig, themeAgent.getCurrentThemeId(), loaderFactory); - comparePanel.clear(); - comparePanel.add(compare); - } - - @Override - public void setEnableSaveChangesButton(boolean enabled) { - btnSaveChanges.setEnabled(enabled); - } - - @Override - public void setEnableNextDiffButton(boolean enabled) { - btnNextDiff.setEnabled(enabled); - } - - @Override - public void setEnablePreviousDiffButton(boolean enabled) { - btnPrevDiff.setEnabled(enabled); - } - + interface PreviewViewImplUiBinder extends UiBinder {} + + private static final PreviewViewImplUiBinder UI_BINDER = + GWT.create(PreviewViewImplUiBinder.class); + + @UiField DockLayoutPanel dockPanel; + @UiField SimplePanel comparePanel; + @UiField Label leftTitle; + @UiField Label rightTitle; + + @UiField(provided = true) + final GitLocalizationConstant locale; + + private final Button btnSaveChanges; + private final Button btnNextDiff; + private final Button btnPrevDiff; + + private ActionDelegate delegate; + private ThemeAgent themeAgent; + private CompareWidget compare; + + private final CompareFactory compareFactory; + private final LoaderFactory loaderFactory; + + @Inject + public CompareViewImpl( + CompareFactory compareFactory, + GitLocalizationConstant locale, + LoaderFactory loaderFactory, + ThemeAgent themeAgent) { + this.compareFactory = compareFactory; + this.locale = locale; + this.loaderFactory = loaderFactory; + this.themeAgent = themeAgent; + + setWidget(UI_BINDER.createAndBindUi(this)); + + Button closeButton = + createButton(locale.buttonClose(), "git-compare-close-btn", event -> onClose()); + Button refreshButton = + createButton(locale.buttonRefresh(), "git-compare-refresh-btn", event -> compare.refresh()); + + btnSaveChanges = + createButton( + locale.buttonSaveChanges(), + "git-compare-save-changes-btn", + event -> delegate.onSaveChangesClicked()); + btnNextDiff = + createButton( + locale.buttonNextDiff(), + "git-compare-next-diff-btn", + event -> delegate.onNextDiffClicked()); + btnPrevDiff = + createButton( + locale.buttonPreviousDiff(), + "git-compare-prev-diff-btn", + event -> delegate.onPreviousDiffClicked()); + + addButtonToFooter(closeButton); + addButtonToFooter(refreshButton); + addButtonToFooter(btnSaveChanges); + addButtonToFooter(btnNextDiff); + addButtonToFooter(btnPrevDiff); + + comparePanel.getElement().setId(Document.get().createUniqueId()); + } + + @Override + public void setDelegate(ActionDelegate delegate) { + this.delegate = delegate; + } + + @Override + protected void onClose() { + compare.getContent(content -> delegate.onClose(content)); + } + + @Override + public void getEditableContent(ContentConsumer contentConsumer) { + compare.getContent(contentConsumer::processContent); + } + + @Override + public void setColumnTitles(String leftTitle, String rightTitle) { + this.leftTitle.setText(leftTitle); + this.rightTitle.setText(rightTitle); + } + + @Override + public void show(String oldContent, String newContent, String fileName, boolean readOnly) { + dockPanel.setSize( + String.valueOf((com.google.gwt.user.client.Window.getClientWidth() / 100) * 95) + "px", + String.valueOf((com.google.gwt.user.client.Window.getClientHeight() / 100) * 90) + "px"); + + super.show(); + + FileOptions newFile = compareFactory.createFieOptions(); + newFile.setReadOnly(readOnly); + + FileOptions oldFile = compareFactory.createFieOptions(); + oldFile.setReadOnly(true); + + newFile.setContent(newContent); + newFile.setName(fileName); + oldFile.setContent(oldContent); + oldFile.setName(fileName); + + CompareConfig compareConfig = compareFactory.createCompareConfig(); + compareConfig.setNewFile(newFile); + compareConfig.setOldFile(oldFile); + compareConfig.setShowTitle(false); + compareConfig.setShowLineStatus(false); + + compare = new CompareWidget(compareConfig, themeAgent.getCurrentThemeId(), loaderFactory); + comparePanel.clear(); + comparePanel.add(compare); + } + + @Override + public void setEnableSaveChangesButton(boolean enabled) { + btnSaveChanges.setEnabled(enabled); + } + + @Override + public void setEnableNextDiffButton(boolean enabled) { + btnNextDiff.setEnabled(enabled); + } + + @Override + public void setEnablePreviousDiffButton(boolean enabled) { + btnPrevDiff.setEnabled(enabled); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java index d4c02486665..8c1aff61301 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/branchlist/BranchListPresenter.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare.branchlist; import com.google.inject.Inject; @@ -44,124 +44,142 @@ */ @Singleton public class BranchListPresenter implements BranchListView.ActionDelegate { - public static final String BRANCH_LIST_COMMAND_NAME = "Git list of branches"; - - private final ComparePresenter comparePresenter; - private final ChangesListPresenter changesListPresenter; - private final GitOutputConsoleFactory gitOutputConsoleFactory; - private final ProcessesPanelPresenter consolesPanelPresenter; - private final BranchListView view; - private final DialogFactory dialogFactory; - private final GitServiceClient service; - private final GitLocalizationConstant locale; - private final AppContext appContext; - private final NotificationManager notificationManager; - - private Branch selectedBranch; - private Project project; - private Resource selectedItem; - - @Inject - public BranchListPresenter(BranchListView view, - ComparePresenter comparePresenter, - ChangesListPresenter changesListPresenter, - GitServiceClient service, - GitLocalizationConstant locale, - AppContext appContext, - NotificationManager notificationManager, - DialogFactory dialogFactory, - GitOutputConsoleFactory gitOutputConsoleFactory, - ProcessesPanelPresenter processesPanelPresenter) { - this.view = view; - this.comparePresenter = comparePresenter; - this.changesListPresenter = changesListPresenter; - this.dialogFactory = dialogFactory; - this.service = service; - this.locale = locale; - this.appContext = appContext; - this.notificationManager = notificationManager; - this.gitOutputConsoleFactory = gitOutputConsoleFactory; - this.consolesPanelPresenter = processesPanelPresenter; - - this.view.setDelegate(this); - } - - /** Open dialog and shows branches to compare. */ - public void showBranches(Project project, Resource selectedItem) { - checkState(project.getLocation().isPrefixOf(selectedItem.getLocation()), "Given selected item is not descendant of given project"); - - this.project = project; - this.selectedItem = selectedItem; - - getBranches(); - } - - @Override - public void onCloseClicked() { - view.close(); - } - - @Override - public void onCompareClicked() { - - final String selectedItemPath = selectedItem.getLocation() - .removeFirstSegments(project.getLocation().segmentCount()) - .removeTrailingSeparator() - .toString(); - - service.diff(project.getLocation(), - selectedItemPath.isEmpty() ? null : singletonList(selectedItemPath), - NAME_STATUS, - false, - 0, - selectedBranch.getName(), - false) - .then(diff -> { - if (diff.isEmpty()) { - dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), - locale.compareMessageIdenticalContentText(), null).show(); - } else { - AlteredFiles alteredFiles = new AlteredFiles(project, diff); - if (alteredFiles.getFilesQuantity() == 1) { - comparePresenter.showCompareWithLatest(alteredFiles, null, selectedBranch.getName()); - } else { - changesListPresenter.show(alteredFiles, selectedBranch.getName(), null); - } - } - }) - .catchError(error -> { - notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); - }); - - view.close(); - } - - @Override - public void onBranchUnselected() { - selectedBranch = null; - view.setEnableCompareButton(false); - } - - @Override - public void onBranchSelected(@NotNull Branch branch) { - selectedBranch = branch; - - view.setEnableCompareButton(true); - } - - /** Get list of branches from selected project. */ - private void getBranches() { - service.branchList(project.getLocation(), LIST_ALL) - .then(branches -> { - view.setBranches(branches); - view.showDialog(); - }) - .catchError(error -> { - final String errorMessage = (error.getMessage() != null) ? error.getMessage() : locale.branchesListFailed(); - GitOutputConsole console = gitOutputConsoleFactory.create(BRANCH_LIST_COMMAND_NAME); - console.printError(errorMessage); - consolesPanelPresenter.addCommandOutput(appContext.getDevMachine().getId(), console); - notificationManager.notify(locale.branchesListFailed(), FAIL, NOT_EMERGE_MODE); - }); - } + public static final String BRANCH_LIST_COMMAND_NAME = "Git list of branches"; + + private final ComparePresenter comparePresenter; + private final ChangesListPresenter changesListPresenter; + private final GitOutputConsoleFactory gitOutputConsoleFactory; + private final ProcessesPanelPresenter consolesPanelPresenter; + private final BranchListView view; + private final DialogFactory dialogFactory; + private final GitServiceClient service; + private final GitLocalizationConstant locale; + private final AppContext appContext; + private final NotificationManager notificationManager; + + private Branch selectedBranch; + private Project project; + private Resource selectedItem; + + @Inject + public BranchListPresenter( + BranchListView view, + ComparePresenter comparePresenter, + ChangesListPresenter changesListPresenter, + GitServiceClient service, + GitLocalizationConstant locale, + AppContext appContext, + NotificationManager notificationManager, + DialogFactory dialogFactory, + GitOutputConsoleFactory gitOutputConsoleFactory, + ProcessesPanelPresenter processesPanelPresenter) { + this.view = view; + this.comparePresenter = comparePresenter; + this.changesListPresenter = changesListPresenter; + this.dialogFactory = dialogFactory; + this.service = service; + this.locale = locale; + this.appContext = appContext; + this.notificationManager = notificationManager; + this.gitOutputConsoleFactory = gitOutputConsoleFactory; + this.consolesPanelPresenter = processesPanelPresenter; + + this.view.setDelegate(this); + } + + /** Open dialog and shows branches to compare. */ + public void showBranches(Project project, Resource selectedItem) { + checkState( + project.getLocation().isPrefixOf(selectedItem.getLocation()), + "Given selected item is not descendant of given project"); + + this.project = project; + this.selectedItem = selectedItem; + + getBranches(); + } + + @Override + public void onCloseClicked() { + view.close(); + } + + @Override + public void onCompareClicked() { + + final String selectedItemPath = + selectedItem + .getLocation() + .removeFirstSegments(project.getLocation().segmentCount()) + .removeTrailingSeparator() + .toString(); + + service + .diff( + project.getLocation(), + selectedItemPath.isEmpty() ? null : singletonList(selectedItemPath), + NAME_STATUS, + false, + 0, + selectedBranch.getName(), + false) + .then( + diff -> { + if (diff.isEmpty()) { + dialogFactory + .createMessageDialog( + locale.compareMessageIdenticalContentTitle(), + locale.compareMessageIdenticalContentText(), + null) + .show(); + } else { + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + if (alteredFiles.getFilesQuantity() == 1) { + comparePresenter.showCompareWithLatest( + alteredFiles, null, selectedBranch.getName()); + } else { + changesListPresenter.show(alteredFiles, selectedBranch.getName(), null); + } + } + }) + .catchError( + error -> { + notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); + }); + + view.close(); + } + + @Override + public void onBranchUnselected() { + selectedBranch = null; + view.setEnableCompareButton(false); + } + + @Override + public void onBranchSelected(@NotNull Branch branch) { + selectedBranch = branch; + + view.setEnableCompareButton(true); + } + + /** Get list of branches from selected project. */ + private void getBranches() { + service + .branchList(project.getLocation(), LIST_ALL) + .then( + branches -> { + view.setBranches(branches); + view.showDialog(); + }) + .catchError( + error -> { + final String errorMessage = + (error.getMessage() != null) ? error.getMessage() : locale.branchesListFailed(); + GitOutputConsole console = gitOutputConsoleFactory.create(BRANCH_LIST_COMMAND_NAME); + console.printError(errorMessage); + consolesPanelPresenter.addCommandOutput(appContext.getDevMachine().getId(), console); + notificationManager.notify(locale.branchesListFailed(), FAIL, NOT_EMERGE_MODE); + }); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java index 0ba7c7632da..35b0b278f3b 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare.changeslist; import com.google.inject.Inject; @@ -33,77 +33,78 @@ */ @Singleton public class ChangesListPresenter implements ChangesListView.ActionDelegate { - private final ChangesListView view; - private final ChangesPanelPresenter changesPanelPresenter; - private final ComparePresenter comparePresenter; + private final ChangesListView view; + private final ChangesPanelPresenter changesPanelPresenter; + private final ComparePresenter comparePresenter; - private AlteredFiles alteredFiles; - private String file; - private String revisionA; - private String revisionB; + private AlteredFiles alteredFiles; + private String file; + private String revisionA; + private String revisionB; - @Inject - public ChangesListPresenter(ChangesListView view, - ComparePresenter comparePresenter, - ChangesPanelPresenter changesPanelPresenter) { - this.comparePresenter = comparePresenter; - this.view = view; - this.changesPanelPresenter = changesPanelPresenter; - this.changesPanelPresenter.setFileNodeDoubleClickHandler((path, status) -> this.onCompareClicked()); - this.view.setDelegate(this); + @Inject + public ChangesListPresenter( + ChangesListView view, + ComparePresenter comparePresenter, + ChangesPanelPresenter changesPanelPresenter) { + this.comparePresenter = comparePresenter; + this.view = view; + this.changesPanelPresenter = changesPanelPresenter; + this.changesPanelPresenter.setFileNodeDoubleClickHandler( + (path, status) -> this.onCompareClicked()); + this.view.setDelegate(this); - SelectionChangedHandler handler = event -> { - Node node = getFirst(event.getSelection(), null); - if (node == null) { - return; - } - if (node instanceof ChangedFolderNode) { - ChangesListPresenter.this.view.setEnableCompareButton(false); - return; - } - ChangesListPresenter.this.view.setEnableCompareButton(true); - ChangesListPresenter.this.file = node.getName(); + SelectionChangedHandler handler = + event -> { + Node node = getFirst(event.getSelection(), null); + if (node == null) { + return; + } + if (node instanceof ChangedFolderNode) { + ChangesListPresenter.this.view.setEnableCompareButton(false); + return; + } + ChangesListPresenter.this.view.setEnableCompareButton(true); + ChangesListPresenter.this.file = node.getName(); }; - ChangesPanelView changesPanelView = changesPanelPresenter.getView(); - changesPanelView.addSelectionHandler(handler); - this.view.setChangesPanelView(changesPanelView); - } + ChangesPanelView changesPanelView = changesPanelPresenter.getView(); + changesPanelView.addSelectionHandler(handler); + this.view.setChangesPanelView(changesPanelView); + } - /** - * Shows window with changed files. - * - * @param alteredFiles - * files and their status - * @param revisionA - * hash of the first revision or branch. - * If it is set to {@code null}, compare with empty repository state will be performed - * @param revisionB - * hash of the second revision or branch. - * If it is set to {@code null}, compare with latest repository state will be performed - */ - public void show(AlteredFiles alteredFiles, @Nullable String revisionA, @Nullable String revisionB) { - this.alteredFiles = alteredFiles; - this.revisionA = revisionA; - this.revisionB = revisionB; + /** + * Shows window with changed files. + * + * @param alteredFiles files and their status + * @param revisionA hash of the first revision or branch. If it is set to {@code null}, compare + * with empty repository state will be performed + * @param revisionB hash of the second revision or branch. If it is set to {@code null}, compare + * with latest repository state will be performed + */ + public void show( + AlteredFiles alteredFiles, @Nullable String revisionA, @Nullable String revisionB) { + this.alteredFiles = alteredFiles; + this.revisionA = revisionA; + this.revisionB = revisionB; - view.setEnableCompareButton(false); - view.showDialog(); + view.setEnableCompareButton(false); + view.showDialog(); - changesPanelPresenter.show(alteredFiles); - } + changesPanelPresenter.show(alteredFiles); + } - @Override - public void onCloseClicked() { - view.close(); - } + @Override + public void onCloseClicked() { + view.close(); + } - @Override - public void onCompareClicked() { - if (revisionB == null) { - comparePresenter.showCompareWithLatest(alteredFiles, file, revisionA); - } else { - comparePresenter.showCompareBetweenRevisions(alteredFiles, file, revisionA, revisionB); - } + @Override + public void onCompareClicked() { + if (revisionB == null) { + comparePresenter.showCompareWithLatest(alteredFiles, file, revisionA); + } else { + comparePresenter.showCompareBetweenRevisions(alteredFiles, file, revisionA, revisionB); } + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java index 452ea573766..97e588a7292 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare.changespanel; import com.google.inject.Inject; @@ -28,89 +28,88 @@ */ public class ChangesPanelPresenter implements ChangesPanelView.ActionDelegate { - private static final String REVISION = "HEAD"; - - private final ChangesPanelView view; - private final GitLocalizationConstant locale; - - private AlteredFiles changedFiles; - private ViewMode viewMode; - - private FileNodeDoubleClickHandler fileNodeDoubleClickHandler; - - @Inject - public ChangesPanelPresenter(GitLocalizationConstant locale, - ChangesPanelView view, - ComparePresenter comparePresenter) { - this.locale = locale; - this.view = view; - this.view.setDelegate(this); - this.viewMode = TREE; - - this.fileNodeDoubleClickHandler = (path, status) -> comparePresenter.showCompareWithLatest(changedFiles, path, REVISION); + private static final String REVISION = "HEAD"; + + private final ChangesPanelView view; + private final GitLocalizationConstant locale; + + private AlteredFiles changedFiles; + private ViewMode viewMode; + + private FileNodeDoubleClickHandler fileNodeDoubleClickHandler; + + @Inject + public ChangesPanelPresenter( + GitLocalizationConstant locale, ChangesPanelView view, ComparePresenter comparePresenter) { + this.locale = locale; + this.view = view; + this.view.setDelegate(this); + this.viewMode = TREE; + + this.fileNodeDoubleClickHandler = + (path, status) -> comparePresenter.showCompareWithLatest(changedFiles, path, REVISION); + } + + /** + * Show panel with changed files. If empty map with changed files is received, all buttons would + * be disabled. + * + * @param changedFiles Map with files and their status + */ + public void show(AlteredFiles changedFiles) { + this.changedFiles = changedFiles; + if (changedFiles.isEmpty()) { + view.setTextToChangeViewModeButton(locale.changeListRowListViewButtonText()); + view.setEnabledChangeViewModeButton(false); + view.setEnableExpandCollapseButtons(false); + view.resetPanelState(); + } else { + view.setEnabledChangeViewModeButton(true); + view.setEnableExpandCollapseButtons(viewMode == TREE); + viewChangedFiles(); } - - /** - * Show panel with changed files. If empty map with changed files is received, all buttons would be disabled. - * - * @param changedFiles - * Map with files and their status - */ - public void show(AlteredFiles changedFiles) { - this.changedFiles = changedFiles; - if (changedFiles.isEmpty()) { - view.setTextToChangeViewModeButton(locale.changeListRowListViewButtonText()); - view.setEnabledChangeViewModeButton(false); - view.setEnableExpandCollapseButtons(false); - view.resetPanelState(); - } else { - view.setEnabledChangeViewModeButton(true); - view.setEnableExpandCollapseButtons(viewMode == TREE); - viewChangedFiles(); - } - } - - public ChangesPanelView getView() { - return view; - } - - @Override - public void onFileNodeDoubleClicked(String path, final Status status) { - fileNodeDoubleClickHandler.onFileNodeDoubleClicked(path, status); - } - - @Override - public void onChangeViewModeButtonClicked() { - viewMode = viewMode == TREE ? LIST : TREE; - view.setEnableExpandCollapseButtons(viewMode == TREE); - viewChangedFiles(); - } - - @Override - public void onExpandButtonClicked() { - view.expandAllDirectories(); - } - - @Override - public void onCollapseButtonClicked() { - view.collapseAllDirectories(); - } - - private void viewChangedFiles() { - view.viewChangedFiles(changedFiles, viewMode); - view.setTextToChangeViewModeButton(viewMode == TREE ? locale.changeListRowListViewButtonText() - : locale.changeListGroupByDirectoryButtonText()); - } - - public void setFileNodeDoubleClickHandler(FileNodeDoubleClickHandler fileNodeDoubleClickHandler) { - this.fileNodeDoubleClickHandler = fileNodeDoubleClickHandler; - } - - /** - * Describes behaviour on double click action on a selected path. - */ - public interface FileNodeDoubleClickHandler { - void onFileNodeDoubleClicked(String path, final Status status); - } - + } + + public ChangesPanelView getView() { + return view; + } + + @Override + public void onFileNodeDoubleClicked(String path, final Status status) { + fileNodeDoubleClickHandler.onFileNodeDoubleClicked(path, status); + } + + @Override + public void onChangeViewModeButtonClicked() { + viewMode = viewMode == TREE ? LIST : TREE; + view.setEnableExpandCollapseButtons(viewMode == TREE); + viewChangedFiles(); + } + + @Override + public void onExpandButtonClicked() { + view.expandAllDirectories(); + } + + @Override + public void onCollapseButtonClicked() { + view.collapseAllDirectories(); + } + + private void viewChangedFiles() { + view.viewChangedFiles(changedFiles, viewMode); + view.setTextToChangeViewModeButton( + viewMode == TREE + ? locale.changeListRowListViewButtonText() + : locale.changeListGroupByDirectoryButtonText()); + } + + public void setFileNodeDoubleClickHandler(FileNodeDoubleClickHandler fileNodeDoubleClickHandler) { + this.fileNodeDoubleClickHandler = fileNodeDoubleClickHandler; + } + + /** Describes behaviour on double click action on a selected path. */ + public interface FileNodeDoubleClickHandler { + void onFileNodeDoubleClicked(String path, final Status status); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java index 8b99034dfef..571a333997c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare.changespanel; import org.eclipse.che.ide.api.mvp.View; @@ -28,83 +28,75 @@ */ public interface ChangesPanelView extends View { - /** Needs for delegate some function into Changes list view. */ - interface ActionDelegate { - - /** - * Performs any actions appropriate in response to the user having pressed the button that changes view mode of changed files. - */ - void onChangeViewModeButtonClicked(); - - /** Performs any actions appropriate in response to the user having pressed the 'Expand all directories' button. */ - void onExpandButtonClicked(); - - /** Performs any actions appropriate in response to the user having pressed the 'Collapse all directories' button. */ - void onCollapseButtonClicked(); - - /** Performs any actions appropriate in response to the user double clicked on the file node. */ - void onFileNodeDoubleClicked(String file, Status status); - } + /** Needs for delegate some function into Changes list view. */ + interface ActionDelegate { /** - * Add selection changed handler. + * Performs any actions appropriate in response to the user having pressed the button that + * changes view mode of changed files. */ - void addSelectionHandler(SelectionChangedHandler handler); + void onChangeViewModeButtonClicked(); - void viewChangedFiles(AlteredFiles files, ViewMode viewMode); + /** + * Performs any actions appropriate in response to the user having pressed the 'Expand all + * directories' button. + */ + void onExpandButtonClicked(); /** - * Clear panel from old nodes. + * Performs any actions appropriate in response to the user having pressed the 'Collapse all + * directories' button. */ - void resetPanelState(); + void onCollapseButtonClicked(); - /** Expand all directories. */ - void expandAllDirectories(); + /** Performs any actions appropriate in response to the user double clicked on the file node. */ + void onFileNodeDoubleClicked(String file, Status status); + } - /** Collapse all directories. */ - void collapseAllDirectories(); + /** Add selection changed handler. */ + void addSelectionHandler(SelectionChangedHandler handler); - /** - * Change the enable state of the 'Expand/Collapse all directories' buttons. - * - * @param enabled - * true to enable the buttons, false to disable them - */ - void setEnableExpandCollapseButtons(boolean enabled); + void viewChangedFiles(AlteredFiles files, ViewMode viewMode); - /** - * Change the enable state of the button that changes view mode of changed files. - * - * @param enabled - * true to enable the button, false to disable it - */ - void setEnabledChangeViewModeButton(boolean enabled); + /** Clear panel from old nodes. */ + void resetPanelState(); - /** - * Set displayed text to button that changes view mode of changed files. - * - * @param text - * text that will be displayed in the button - */ - void setTextToChangeViewModeButton(String text); + /** Expand all directories. */ + void expandAllDirectories(); - /** - * Set custom presentation render for nodes in the panel. - */ - void setTreeRender(PresentationRenderer render); + /** Collapse all directories. */ + void collapseAllDirectories(); - /** - * Returns style of the {@link Tree} widget in the panel. - */ - TreeStyles getTreeStyles(); + /** + * Change the enable state of the 'Expand/Collapse all directories' buttons. + * + * @param enabled true to enable the buttons, false to disable them + */ + void setEnableExpandCollapseButtons(boolean enabled); - /** - * Refresh all nodes in the panel. - */ - void refreshNodes(); + /** + * Change the enable state of the button that changes view mode of changed files. + * + * @param enabled true to enable the button, false to disable it + */ + void setEnabledChangeViewModeButton(boolean enabled); - /** - * Returns paths of all shown nodes e.g. paths of the files and their parent folders. - */ - Set getNodePaths(); + /** + * Set displayed text to button that changes view mode of changed files. + * + * @param text text that will be displayed in the button + */ + void setTextToChangeViewModeButton(String text); + + /** Set custom presentation render for nodes in the panel. */ + void setTreeRender(PresentationRenderer render); + + /** Returns style of the {@link Tree} widget in the panel. */ + TreeStyles getTreeStyles(); + + /** Refresh all nodes in the panel. */ + void refreshNodes(); + + /** Returns paths of all shown nodes e.g. paths of the files and their parent folders. */ + Set getNodePaths(); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java index 79a88191625..9f9d8ad0c18 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare.changespanel; import com.google.gwt.core.client.GWT; @@ -52,261 +52,265 @@ * @author Igor Vinokur */ public class ChangesPanelViewImpl extends Composite implements ChangesPanelView { - interface TreeViewImplUiBinder extends UiBinder { + interface TreeViewImplUiBinder extends UiBinder {} + + private static TreeViewImplUiBinder uiBinder = GWT.create(TreeViewImplUiBinder.class); + + @UiField LayoutPanel changesPanel; + @UiField Button changeViewModeButton; + @UiField Button expandButton; + @UiField Button collapseButton; + + @UiField(provided = true) + final GitLocalizationConstant locale; + + @UiField(provided = true) + final GitResources res; + + private ActionDelegate delegate; + private Tree tree; + private Set nodePaths; + + private final NodesResources nodesResources; + + @Inject + public ChangesPanelViewImpl( + GitResources resources, GitLocalizationConstant locale, NodesResources nodesResources) { + this.res = resources; + this.locale = locale; + this.nodesResources = nodesResources; + this.nodePaths = new HashSet<>(); + + initWidget(uiBinder.createAndBindUi(this)); + + NodeStorage nodeStorage = new NodeStorage(); + NodeLoader nodeLoader = new NodeLoader(); + tree = new Tree(nodeStorage, nodeLoader); + SelectionModel selectionModel = tree.getSelectionModel(); + selectionModel.setSelectionMode(SelectionModel.Mode.SINGLE); + changesPanel.add(tree); + + createButtons(); + } + + @Override + public void setDelegate(ActionDelegate delegate) { + this.delegate = delegate; + } + + @Override + public void addSelectionHandler(SelectionChangedHandler handler) { + tree.getSelectionModel().addSelectionChangedHandler(handler); + } + + @Override + public void viewChangedFiles(AlteredFiles files, ViewMode viewMode) { + NodeStorage nodeStorage = tree.getNodeStorage(); + nodeStorage.clear(); + if (viewMode == TREE) { + getGroupedNodes(files.getChangedFilesMap()).forEach(nodeStorage::add); + tree.expandAll(); + } else { + files + .getAlteredFilesList() + .forEach( + file -> + nodeStorage.add( + new ChangedFileNode( + file, files.getStatusByFilePath(file), nodesResources, delegate, false))); } - - private static TreeViewImplUiBinder uiBinder = GWT.create(TreeViewImplUiBinder.class); - - @UiField - LayoutPanel changesPanel; - @UiField - Button changeViewModeButton; - @UiField - Button expandButton; - @UiField - Button collapseButton; - @UiField(provided = true) - final GitLocalizationConstant locale; - @UiField(provided = true) - final GitResources res; - - private ActionDelegate delegate; - private Tree tree; - private Set nodePaths; - - private final NodesResources nodesResources; - - @Inject - public ChangesPanelViewImpl(GitResources resources, - GitLocalizationConstant locale, - NodesResources nodesResources) { - this.res = resources; - this.locale = locale; - this.nodesResources = nodesResources; - this.nodePaths = new HashSet<>(); - - initWidget(uiBinder.createAndBindUi(this)); - - NodeStorage nodeStorage = new NodeStorage(); - NodeLoader nodeLoader = new NodeLoader(); - tree = new Tree(nodeStorage, nodeLoader); - SelectionModel selectionModel = tree.getSelectionModel(); - selectionModel.setSelectionMode(SelectionModel.Mode.SINGLE); - changesPanel.add(tree); - - createButtons(); + } + + @Override + public void resetPanelState() { + tree.getNodeStorage().clear(); + } + + @Override + public void collapseAllDirectories() { + tree.collapseAll(); + } + + @Override + public void expandAllDirectories() { + tree.expandAll(); + } + + @Override + public void setEnableExpandCollapseButtons(boolean enabled) { + expandButton.setEnabled(enabled); + collapseButton.setEnabled(enabled); + } + + @Override + public void setEnabledChangeViewModeButton(boolean enabled) { + changeViewModeButton.setEnabled(enabled); + } + + @Override + public void setTextToChangeViewModeButton(String text) { + changeViewModeButton.setText(text); + } + + @Override + public void setTreeRender(PresentationRenderer render) { + tree.setPresentationRenderer(render); + } + + @Override + public TreeStyles getTreeStyles() { + return tree.getTreeStyles(); + } + + @Override + public void refreshNodes() { + tree.getAllChildNodes(tree.getRootNodes(), false).forEach(node -> tree.refresh(node)); + } + + @Override + public Set getNodePaths() { + return nodePaths; + } + + private void createButtons() { + changeViewModeButton.addClickHandler(clickEvent -> delegate.onChangeViewModeButtonClicked()); + + expandButton.setTitle(locale.changeListExpandCollapseAllButtonTitle()); + expandButton.getElement().setInnerHTML(FontAwesome.EXPAND); + expandButton.addClickHandler(clickEvent -> delegate.onExpandButtonClicked()); + + collapseButton.setTitle(locale.changeListCollapseAllButtonTitle()); + collapseButton.getElement().setInnerHTML(FontAwesome.COMPRESS); + collapseButton.addClickHandler(clickEvent -> delegate.onCollapseButtonClicked()); + } + + private List getGroupedNodes(Map items) { + List allFiles = new ArrayList<>(items.keySet()); + List allFolders = new ArrayList<>(); + for (String file : allFiles) { + nodePaths.add(Path.valueOf(file)); + String path = file.substring(0, file.lastIndexOf("/")); + if (!allFolders.contains(path)) { + allFolders.add(path); + } } - - @Override - public void setDelegate(ActionDelegate delegate) { - this.delegate = delegate; + List commonPaths = getCommonPaths(allFolders); + for (String commonPath : commonPaths) { + if (!allFolders.contains(commonPath)) { + allFolders.add(commonPath); + } } - @Override - public void addSelectionHandler(SelectionChangedHandler handler) { - tree.getSelectionModel().addSelectionChangedHandler(handler); - } + Map preparedNodes = new HashMap<>(); + for (int i = getMaxNestedLevel(allFiles); i > 0; i--) { - @Override - public void viewChangedFiles(AlteredFiles files, ViewMode viewMode) { - NodeStorage nodeStorage = tree.getNodeStorage(); - nodeStorage.clear(); - if (viewMode == TREE) { - getGroupedNodes(files.getChangedFilesMap()).forEach(nodeStorage::add); - tree.expandAll(); + //Collect child files of all folders of current nesting level + Map> currentChildNodes = new HashMap<>(); + for (String file : allFiles) { + Path pathName = Path.valueOf(file); + if (pathName.segmentCount() != i) { + continue; + } + Node fileNode = new ChangedFileNode(file, items.get(file), nodesResources, delegate, true); + String filePath = pathName.removeLastSegments(1).toString(); + if (currentChildNodes.keySet().contains(filePath)) { + currentChildNodes.get(filePath).add(fileNode); } else { - files.getAlteredFilesList().forEach( - file -> nodeStorage.add(new ChangedFileNode(file, files.getStatusByFilePath(file), nodesResources, delegate, false))); + List listFiles = new ArrayList<>(); + listFiles.add(fileNode); + currentChildNodes.put(filePath, listFiles); } - } - - @Override - public void resetPanelState() { - tree.getNodeStorage().clear(); - } - - @Override - public void collapseAllDirectories() { - tree.collapseAll(); - } - - @Override - public void expandAllDirectories() { - tree.expandAll(); - } - - @Override - public void setEnableExpandCollapseButtons(boolean enabled) { - expandButton.setEnabled(enabled); - collapseButton.setEnabled(enabled); - } - - @Override - public void setEnabledChangeViewModeButton(boolean enabled) { - changeViewModeButton.setEnabled(enabled); - } - - @Override - public void setTextToChangeViewModeButton(String text) { - changeViewModeButton.setText(text); - } - - @Override - public void setTreeRender(PresentationRenderer render) { - tree.setPresentationRenderer(render); - } - - @Override - public TreeStyles getTreeStyles() { - return tree.getTreeStyles(); - } + } - @Override - public void refreshNodes() { - tree.getAllChildNodes(tree.getRootNodes(), false).forEach(node -> tree.refresh(node)); - } - - @Override - public Set getNodePaths() { - return nodePaths; - } - - private void createButtons() { - changeViewModeButton.addClickHandler(clickEvent -> delegate.onChangeViewModeButtonClicked()); - - expandButton.setTitle(locale.changeListExpandCollapseAllButtonTitle()); - expandButton.getElement().setInnerHTML(FontAwesome.EXPAND); - expandButton.addClickHandler(clickEvent -> delegate.onExpandButtonClicked()); - - collapseButton.setTitle(locale.changeListCollapseAllButtonTitle()); - collapseButton.getElement().setInnerHTML(FontAwesome.COMPRESS); - collapseButton.addClickHandler(clickEvent -> delegate.onCollapseButtonClicked()); - } - - private List getGroupedNodes(Map items) { - List allFiles = new ArrayList<>(items.keySet()); - List allFolders = new ArrayList<>(); - for (String file : allFiles) { - nodePaths.add(Path.valueOf(file)); - String path = file.substring(0, file.lastIndexOf("/")); - if (!allFolders.contains(path)) { - allFolders.add(path); - } + //Map child files to related folders of current nesting level or just create a common folder + for (String path : allFolders) { + nodePaths.add(Path.valueOf(path)); + if (!(Path.valueOf(path).segmentCount() == i - 1)) { + continue; } - List commonPaths = getCommonPaths(allFolders); - for (String commonPath : commonPaths) { - if (!allFolders.contains(commonPath)) { - allFolders.add(commonPath); - } + Node folder = + new ChangedFolderNode( + getTransitFolderName(allFolders, path), Path.valueOf(path), nodesResources); + if (currentChildNodes.keySet().contains(path)) { + folder.setChildren(currentChildNodes.get(path)); } - - Map preparedNodes = new HashMap<>(); - for (int i = getMaxNestedLevel(allFiles); i > 0; i--) { - - //Collect child files of all folders of current nesting level - Map> currentChildNodes = new HashMap<>(); - for (String file : allFiles) { - Path pathName = Path.valueOf(file); - if (pathName.segmentCount() != i) { - continue; - } - Node fileNode = new ChangedFileNode(file, items.get(file), nodesResources, delegate, true); - String filePath = pathName.removeLastSegments(1).toString(); - if (currentChildNodes.keySet().contains(filePath)) { - currentChildNodes.get(filePath).add(fileNode); - } else { - List listFiles = new ArrayList<>(); - listFiles.add(fileNode); - currentChildNodes.put(filePath, listFiles); - } - } - - //Map child files to related folders of current nesting level or just create a common folder - for (String path : allFolders) { - nodePaths.add(Path.valueOf(path)); - if (!(Path.valueOf(path).segmentCount() == i - 1)) { - continue; - } - Node folder = new ChangedFolderNode(getTransitFolderName(allFolders, path), Path.valueOf(path), nodesResources); - if (currentChildNodes.keySet().contains(path)) { - folder.setChildren(currentChildNodes.get(path)); - } - preparedNodes.put(path, folder); - } - - //Take all child folders and nest them to related parent folders of current nesting level - List currentPaths = new ArrayList<>(preparedNodes.keySet()); - for (String parentPath : currentPaths) { - List nodesToNest = new ArrayList<>(); - for (String nestedItem : currentPaths) { - if (!parentPath.equals(nestedItem) && (nestedItem.startsWith(parentPath + "/") || parentPath.isEmpty())) { - nodesToNest.add(preparedNodes.remove(nestedItem)); - } - } - if (nodesToNest.isEmpty() && !parentPath.isEmpty()) { - continue; - } - nodesToNest.sort(new NameComparator()); - if (currentChildNodes.keySet().contains(parentPath)) { - nodesToNest.addAll(currentChildNodes.get(parentPath)); - } - if (parentPath.isEmpty()) { - return nodesToNest; - } else { - preparedNodes.get(parentPath).setChildren(nodesToNest); - } - } + preparedNodes.put(path, folder); + } + + //Take all child folders and nest them to related parent folders of current nesting level + List currentPaths = new ArrayList<>(preparedNodes.keySet()); + for (String parentPath : currentPaths) { + List nodesToNest = new ArrayList<>(); + for (String nestedItem : currentPaths) { + if (!parentPath.equals(nestedItem) + && (nestedItem.startsWith(parentPath + "/") || parentPath.isEmpty())) { + nodesToNest.add(preparedNodes.remove(nestedItem)); + } } - ArrayList nodes = new ArrayList<>(preparedNodes.values()); - nodes.sort(new NameComparator()); - return new ArrayList<>(nodes); - } - - private String getTransitFolderName(List allPaths, String comparedPath) { - Path path = Path.valueOf(comparedPath); - int segmentCount = path.segmentCount(); - for (int i = segmentCount; i > 0; i--) { - if (allPaths.contains(path.removeLastSegments(segmentCount - i + 1).toString())) { - return path.removeFirstSegments(i - 1).toString(); - } + if (nodesToNest.isEmpty() && !parentPath.isEmpty()) { + continue; } - return comparedPath; - } - - private int getMaxNestedLevel(List items) { - int level = 0; - for (String item : items) { - int currentLevel = Path.valueOf(item).segmentCount(); - level = currentLevel > level ? currentLevel : level; + nodesToNest.sort(new NameComparator()); + if (currentChildNodes.keySet().contains(parentPath)) { + nodesToNest.addAll(currentChildNodes.get(parentPath)); } - return level; - } - - private List getCommonPaths(List allPaths) { - List commonPaths = new ArrayList<>(); - allPaths.sort(naturalOrder()); - for (String path : allPaths) { - int pathIndex = allPaths.indexOf(path); - if (pathIndex + 1 == allPaths.size()) { - continue; - } - String commonPath = getCommonPath(allPaths.get(pathIndex), allPaths.get(pathIndex + 1)); - if (!commonPath.isEmpty() && !commonPaths.contains(commonPath)) { - commonPaths.add(commonPath); - } + if (parentPath.isEmpty()) { + return nodesToNest; + } else { + preparedNodes.get(parentPath).setChildren(nodesToNest); } - return commonPaths; + } } - - private String getCommonPath(String firstPath, String secondPath) { - Path commonPath = Path.valueOf(firstPath); - int segmentCount = commonPath.segmentCount(); - for (int i = 1; i < segmentCount; i++) { - String path = commonPath.removeLastSegments(segmentCount - i).toString(); - if (!secondPath.startsWith(path)) { - return Path.valueOf(path).removeLastSegments(1).toString(); - } - } - return commonPath.toString(); + ArrayList nodes = new ArrayList<>(preparedNodes.values()); + nodes.sort(new NameComparator()); + return new ArrayList<>(nodes); + } + + private String getTransitFolderName(List allPaths, String comparedPath) { + Path path = Path.valueOf(comparedPath); + int segmentCount = path.segmentCount(); + for (int i = segmentCount; i > 0; i--) { + if (allPaths.contains(path.removeLastSegments(segmentCount - i + 1).toString())) { + return path.removeFirstSegments(i - 1).toString(); + } + } + return comparedPath; + } + + private int getMaxNestedLevel(List items) { + int level = 0; + for (String item : items) { + int currentLevel = Path.valueOf(item).segmentCount(); + level = currentLevel > level ? currentLevel : level; + } + return level; + } + + private List getCommonPaths(List allPaths) { + List commonPaths = new ArrayList<>(); + allPaths.sort(naturalOrder()); + for (String path : allPaths) { + int pathIndex = allPaths.indexOf(path); + if (pathIndex + 1 == allPaths.size()) { + continue; + } + String commonPath = getCommonPath(allPaths.get(pathIndex), allPaths.get(pathIndex + 1)); + if (!commonPath.isEmpty() && !commonPaths.contains(commonPath)) { + commonPaths.add(commonPath); + } + } + return commonPaths; + } + + private String getCommonPath(String firstPath, String secondPath) { + Path commonPath = Path.valueOf(firstPath); + int segmentCount = commonPath.segmentCount(); + for (int i = 1; i < segmentCount; i++) { + String path = commonPath.removeLastSegments(segmentCount - i).toString(); + if (!secondPath.startsWith(path)) { + return Path.valueOf(path).removeLastSegments(1).toString(); + } } + return commonPath.toString(); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java index 56b5bda60ff..90591132780 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare.revisionslist; import com.google.inject.Inject; @@ -42,116 +42,135 @@ */ @Singleton public class RevisionListPresenter implements RevisionListView.ActionDelegate { - private final ComparePresenter comparePresenter; - private final DialogFactory dialogFactory; - private final RevisionListView view; - private final GitServiceClient service; - private final GitLocalizationConstant locale; - private final NotificationManager notificationManager; - - private Revision selectedRevision; - private Project project; - private Path selectedFilePath; - - @Inject - public RevisionListPresenter(RevisionListView view, - ComparePresenter comparePresenter, - GitServiceClient service, - GitLocalizationConstant locale, - NotificationManager notificationManager, - DialogFactory dialogFactory) { - this.view = view; - this.comparePresenter = comparePresenter; - this.dialogFactory = dialogFactory; - this.service = service; - this.locale = locale; - this.notificationManager = notificationManager; - - this.view.setDelegate(this); - } - - /** Open dialog and shows revisions to compare. */ - public void showRevisions(Project project, File selectedFile) { - this.project = project; - - checkState(project.getLocation().isPrefixOf(selectedFile.getLocation()), "Given selected file is not descendant of given project"); - - selectedFilePath = selectedFile.getLocation() - .removeFirstSegments(project.getLocation().segmentCount()) - .removeTrailingSeparator(); - getRevisions(); - } - - /** {@inheritDoc} */ - @Override - public void onCloseClicked() { - view.close(); - } - - /** {@inheritDoc} */ - @Override - public void onCompareClicked() { - compare(); - } - - /** {@inheritDoc} */ - @Override - public void onRevisionUnselected() { - selectedRevision = null; - view.setEnableCompareButton(false); - view.setDescription(locale.viewCompareRevisionFullDescriptionEmptyMessage()); - } - - /** {@inheritDoc} */ - @Override - public void onRevisionSelected(@NotNull Revision revision) { - selectedRevision = revision; - - view.setEnableCompareButton(true); - } - - /** {@inheritDoc} */ - @Override - public void onRevisionDoubleClicked() { - compare(); - } - - /** Get list of revisions. */ - private void getRevisions() { - service.log(project.getLocation(), new Path[]{selectedFilePath}, -1, -1, false) - .then(log -> { - view.setRevisions(log.getCommits()); - view.showDialog(); - }).catchError(error -> { - if (getErrorCode(error.getCause()) == ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED) { - dialogFactory.createMessageDialog(locale.compareWithRevisionTitle(), - locale.initCommitWasNotPerformed(), - null).show(); - } else { - notificationManager.notify(locale.logFailed(), FAIL, NOT_EMERGE_MODE); - } - }); - } - - private void compare() { - service.diff(project.getLocation(), - singletonList(selectedFilePath.toString()), - NAME_STATUS, - false, - 0, - selectedRevision.getId(), - false) - .then(diff -> { - if (diff.isEmpty()) { - dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), - locale.compareMessageIdenticalContentText(), null).show(); - } else { - AlteredFiles alteredFiles = new AlteredFiles(project, diff); - comparePresenter.showCompareWithLatest(alteredFiles, null, selectedRevision.getId()); - } - }) - .catchError(arg -> { - notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); - }); - } + private final ComparePresenter comparePresenter; + private final DialogFactory dialogFactory; + private final RevisionListView view; + private final GitServiceClient service; + private final GitLocalizationConstant locale; + private final NotificationManager notificationManager; + + private Revision selectedRevision; + private Project project; + private Path selectedFilePath; + + @Inject + public RevisionListPresenter( + RevisionListView view, + ComparePresenter comparePresenter, + GitServiceClient service, + GitLocalizationConstant locale, + NotificationManager notificationManager, + DialogFactory dialogFactory) { + this.view = view; + this.comparePresenter = comparePresenter; + this.dialogFactory = dialogFactory; + this.service = service; + this.locale = locale; + this.notificationManager = notificationManager; + + this.view.setDelegate(this); + } + + /** Open dialog and shows revisions to compare. */ + public void showRevisions(Project project, File selectedFile) { + this.project = project; + + checkState( + project.getLocation().isPrefixOf(selectedFile.getLocation()), + "Given selected file is not descendant of given project"); + + selectedFilePath = + selectedFile + .getLocation() + .removeFirstSegments(project.getLocation().segmentCount()) + .removeTrailingSeparator(); + getRevisions(); + } + + /** {@inheritDoc} */ + @Override + public void onCloseClicked() { + view.close(); + } + + /** {@inheritDoc} */ + @Override + public void onCompareClicked() { + compare(); + } + + /** {@inheritDoc} */ + @Override + public void onRevisionUnselected() { + selectedRevision = null; + view.setEnableCompareButton(false); + view.setDescription(locale.viewCompareRevisionFullDescriptionEmptyMessage()); + } + + /** {@inheritDoc} */ + @Override + public void onRevisionSelected(@NotNull Revision revision) { + selectedRevision = revision; + + view.setEnableCompareButton(true); + } + + /** {@inheritDoc} */ + @Override + public void onRevisionDoubleClicked() { + compare(); + } + + /** Get list of revisions. */ + private void getRevisions() { + service + .log(project.getLocation(), new Path[] {selectedFilePath}, -1, -1, false) + .then( + log -> { + view.setRevisions(log.getCommits()); + view.showDialog(); + }) + .catchError( + error -> { + if (getErrorCode(error.getCause()) == ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED) { + dialogFactory + .createMessageDialog( + locale.compareWithRevisionTitle(), locale.initCommitWasNotPerformed(), null) + .show(); + } else { + notificationManager.notify(locale.logFailed(), FAIL, NOT_EMERGE_MODE); + } + }); + } + + private void compare() { + service + .diff( + project.getLocation(), + singletonList(selectedFilePath.toString()), + NAME_STATUS, + false, + 0, + selectedRevision.getId(), + false) + .then( + diff -> { + if (diff.isEmpty()) { + dialogFactory + .createMessageDialog( + locale.compareMessageIdenticalContentTitle(), + locale.compareMessageIdenticalContentText(), + null) + .show(); + } else { + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + comparePresenter.showCompareWithLatest( + alteredFiles, null, selectedRevision.getId()); + } + }) + .catchError( + arg -> { + notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); + }); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java index 60b6ef1e27b..b326df2d12f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.history; import com.google.inject.Inject; @@ -46,138 +46,158 @@ @Singleton public class HistoryPresenter implements HistoryView.ActionDelegate { - private final ComparePresenter comparePresenter; - private final ChangesListPresenter changesListPresenter; - private final DialogFactory dialogFactory; - private final HistoryView view; - private final GitServiceClient service; - private final GitLocalizationConstant locale; - private final AppContext appContext; - private final NotificationManager notificationManager; - - private Revision selectedRevision; - private Project project; - private Path selectedPath; - private List revisions; - private int skip; - - @Inject - public HistoryPresenter(HistoryView view, - ComparePresenter comparePresenter, - ChangesListPresenter changesListPresenter, - GitServiceClient service, - GitLocalizationConstant locale, - NotificationManager notificationManager, - DialogFactory dialogFactory, - AppContext appContext) { - this.view = view; - this.comparePresenter = comparePresenter; - this.changesListPresenter = changesListPresenter; - this.dialogFactory = dialogFactory; - this.service = service; - this.locale = locale; - this.appContext = appContext; - this.notificationManager = notificationManager; - - this.view.setDelegate(this); - } - - /** Open dialog and shows revisions to compare. */ - public void show() { - this.skip = 0; - this.revisions = new ArrayList<>(); - this.project = appContext.getRootProject(); - this.selectedPath = appContext.getResource() - .getLocation() - .removeFirstSegments(project.getLocation().segmentCount()) - .removeTrailingSeparator(); - fetchRevisions(); - } - - @Override - public void onCloseClicked() { - view.close(); - } - - @Override - public void onCompareClicked() { - compare(); - } - - @Override - public void onRevisionUnselected() { - selectedRevision = null; - view.setEnableCompareButton(false); - view.setDescription(locale.viewCompareRevisionFullDescriptionEmptyMessage()); - } - - @Override - public void onScrolledToButton() { - fetchRevisions(); - } - - @Override - public void onRevisionSelected(@NotNull Revision revision) { - selectedRevision = revision; - - view.setEnableCompareButton(true); - } - - @Override - public void onRevisionDoubleClicked() { - compare(); - } - - private void fetchRevisions() { - service.log(project.getLocation(), selectedPath.isEmpty() ? null : new Path[]{selectedPath}, - skip, - DEFAULT_PAGE_SIZE, - false) - .then(log -> { - List commits = log.getCommits(); - if (!commits.isEmpty()) { - skip += commits.size(); - revisions.addAll(commits); - view.setRevisions(revisions); - view.showDialog(); - } - }) - .catchError(error -> { - if (getErrorCode(error.getCause()) == ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED) { - dialogFactory.createMessageDialog(locale.historyTitle(), - locale.initCommitWasNotPerformed(), - null).show(); - } else { - notificationManager.notify(locale.logFailed(), FAIL, EMERGE_MODE); - } - }); - } - - private void compare() { - final String revisionA = revisions.indexOf(selectedRevision) + 1 == revisions.size() ? null : - revisions.get(revisions.indexOf(selectedRevision) + 1).getId(); - final String revisionB = selectedRevision.getId(); - service.diff(project.getLocation(), singletonList(selectedPath.toString()), - NAME_STATUS, - true, - 0, - revisionA, - revisionB) - .then(diff -> { - if (diff.isEmpty()) { - dialogFactory.createMessageDialog(locale.historyTitle(), locale.historyNothingToDisplay(), null).show(); - return; - } - - AlteredFiles alteredFiles = new AlteredFiles(project, diff); - if (alteredFiles.getFilesQuantity() == 1) { - comparePresenter.showCompareBetweenRevisions(alteredFiles, null, revisionA, revisionB); - } else { - changesListPresenter.show(alteredFiles, revisionA, revisionB); - } - }) - .catchError(error -> { - notificationManager.notify(locale.diffFailed(), FAIL, EMERGE_MODE); - }); - } + private final ComparePresenter comparePresenter; + private final ChangesListPresenter changesListPresenter; + private final DialogFactory dialogFactory; + private final HistoryView view; + private final GitServiceClient service; + private final GitLocalizationConstant locale; + private final AppContext appContext; + private final NotificationManager notificationManager; + + private Revision selectedRevision; + private Project project; + private Path selectedPath; + private List revisions; + private int skip; + + @Inject + public HistoryPresenter( + HistoryView view, + ComparePresenter comparePresenter, + ChangesListPresenter changesListPresenter, + GitServiceClient service, + GitLocalizationConstant locale, + NotificationManager notificationManager, + DialogFactory dialogFactory, + AppContext appContext) { + this.view = view; + this.comparePresenter = comparePresenter; + this.changesListPresenter = changesListPresenter; + this.dialogFactory = dialogFactory; + this.service = service; + this.locale = locale; + this.appContext = appContext; + this.notificationManager = notificationManager; + + this.view.setDelegate(this); + } + + /** Open dialog and shows revisions to compare. */ + public void show() { + this.skip = 0; + this.revisions = new ArrayList<>(); + this.project = appContext.getRootProject(); + this.selectedPath = + appContext + .getResource() + .getLocation() + .removeFirstSegments(project.getLocation().segmentCount()) + .removeTrailingSeparator(); + fetchRevisions(); + } + + @Override + public void onCloseClicked() { + view.close(); + } + + @Override + public void onCompareClicked() { + compare(); + } + + @Override + public void onRevisionUnselected() { + selectedRevision = null; + view.setEnableCompareButton(false); + view.setDescription(locale.viewCompareRevisionFullDescriptionEmptyMessage()); + } + + @Override + public void onScrolledToButton() { + fetchRevisions(); + } + + @Override + public void onRevisionSelected(@NotNull Revision revision) { + selectedRevision = revision; + + view.setEnableCompareButton(true); + } + + @Override + public void onRevisionDoubleClicked() { + compare(); + } + + private void fetchRevisions() { + service + .log( + project.getLocation(), + selectedPath.isEmpty() ? null : new Path[] {selectedPath}, + skip, + DEFAULT_PAGE_SIZE, + false) + .then( + log -> { + List commits = log.getCommits(); + if (!commits.isEmpty()) { + skip += commits.size(); + revisions.addAll(commits); + view.setRevisions(revisions); + view.showDialog(); + } + }) + .catchError( + error -> { + if (getErrorCode(error.getCause()) == ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED) { + dialogFactory + .createMessageDialog( + locale.historyTitle(), locale.initCommitWasNotPerformed(), null) + .show(); + } else { + notificationManager.notify(locale.logFailed(), FAIL, EMERGE_MODE); + } + }); + } + + private void compare() { + final String revisionA = + revisions.indexOf(selectedRevision) + 1 == revisions.size() + ? null + : revisions.get(revisions.indexOf(selectedRevision) + 1).getId(); + final String revisionB = selectedRevision.getId(); + service + .diff( + project.getLocation(), + singletonList(selectedPath.toString()), + NAME_STATUS, + true, + 0, + revisionA, + revisionB) + .then( + diff -> { + if (diff.isEmpty()) { + dialogFactory + .createMessageDialog( + locale.historyTitle(), locale.historyNothingToDisplay(), null) + .show(); + return; + } + + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + if (alteredFiles.getFilesQuantity() == 1) { + comparePresenter.showCompareBetweenRevisions( + alteredFiles, null, revisionA, revisionB); + } else { + changesListPresenter.show(alteredFiles, revisionA, revisionB); + } + }) + .catchError( + error -> { + notificationManager.notify(locale.diffFailed(), FAIL, EMERGE_MODE); + }); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties index c9e6f996a17..fd3eb4cf571 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/client/GitLocalizationConstant.properties @@ -34,7 +34,6 @@ button.next_diff=Next button.previous_diff=Previous ############MESSAGES################ -messages.file_is_not_under_git=File {0} is not under git. messages.unableGetSshKey = Failed to get private ssh key. \ You can create a new SSH key pair in Profile->Preferences->SSH->VCS. messages.warningTitle = Warning diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java index 72c434401c4..16a3d98b21a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.commit; import org.eclipse.che.api.core.ErrorCodes; @@ -57,268 +57,277 @@ */ public class CommitPresenterTest extends BaseTest { - private static final String COMMIT_TEXT = "commit text"; - - @Mock - private CommitView view; - @Mock - private DateTimeFormatter dateTimeFormatter; - @Mock - private ChangesPanelPresenter changesPanelPresenter; - - private CommitPresenter presenter; - - @Override - public void disarm() { - super.disarm(); - - presenter = spy(new CommitPresenter(view, - service, - changesPanelPresenter, - constant, - notificationManager, - dialogFactory, - appContext, - dateTimeFormatter, - gitOutputConsoleFactory, - processesPanelPresenter)); - - when(view.getMessage()).thenReturn(EMPTY_TEXT); - - Resource resource = mock(Resource.class); - when(appContext.getResources()).thenReturn(new Resource[]{}); - when(appContext.getResource()).thenReturn(resource); - when(resource.getLocation()).thenReturn(Path.valueOf("test/location")); - when(appContext.getDevMachine()).thenReturn(mock(DevMachine.class)); - when(appContext.getRootProject()).thenReturn(mock(Project.class)); - - when(voidPromise.then(any(Operation.class))).thenReturn(voidPromise); - when(voidPromise.catchError(any(Operation.class))).thenReturn(voidPromise); - when(revisionPromise.then(any(Operation.class))).thenReturn(revisionPromise); - when(revisionPromise.catchError(any(Operation.class))).thenReturn(revisionPromise); - when(stringPromise.then(any(Operation.class))).thenReturn(stringPromise); - when(stringPromise.catchError(any(Operation.class))).thenReturn(stringPromise); - when(branchListPromise.then(any(Operation.class))).thenReturn(branchListPromise); - when(branchListPromise.catchError(any(Operation.class))).thenReturn(branchListPromise); - when(pushPromise.then(any(Operation.class))).thenReturn(pushPromise); - when(logPromise.then(any(Operation.class))).thenReturn(logPromise); - when(logPromise.catchError(any(Operation.class))).thenReturn(logPromise); - when(statusPromise.then(any(Operation.class))).thenReturn(statusPromise); - when(service.add(any(Path.class), anyBoolean(), any(Path[].class))).thenReturn(voidPromise); - when(service.commit(any(Path.class), anyString(), anyBoolean(), any(Path[].class))) - .thenReturn(revisionPromise); - when(service.diff(any(Path.class), - eq(null), - any(DiffType.class), - anyBoolean(), - anyInt(), - anyString(), - anyBoolean())).thenReturn(stringPromise); - when(service.branchList(any(Path.class), any(BranchListMode.class))).thenReturn(branchListPromise); - when(service.push(any(Path.class), anyList(), anyString(), anyBoolean())).thenReturn(pushPromise); - when(service.log(any(Path.class), eq(null), anyInt(), anyInt(), anyBoolean())).thenReturn(logPromise); - when(service.getStatus(any(Path.class))).thenReturn(statusPromise); - } - - @Test - public void shouldShowMessageWhenNothingToCommit() throws Exception { - ConfirmDialog dialog = mock(ConfirmDialog.class); - when(dialogFactory.createConfirmDialog(anyString(), - anyString(), - anyString(), - anyString(), - any(ConfirmCallback.class), - eq(null))).thenReturn(dialog); - - presenter.showDialog(project); - verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply(""); - verify(logPromise).then(logCaptor.capture()); - logCaptor.getValue().apply(null); - - verify(dialog).show(); - } - - @Test - public void shouldShowDialog() throws Exception { - final String diff = "M\tfile"; - final AlteredFiles alteredFiles = new AlteredFiles(project, diff); - - ConfirmDialog dialog = mock(ConfirmDialog.class); - when(dialogFactory.createConfirmDialog(anyString(), - anyString(), - anyString(), - anyString(), - any(ConfirmCallback.class), - eq(null))).thenReturn(dialog); - - presenter.showDialog(project); - verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply("M\tfile"); - verify(logPromise).then(logCaptor.capture()); - logCaptor.getValue().apply(null); - - verify(view).setEnableAmendCheckBox(true); - verify(view).setEnablePushAfterCommitCheckBox(true); - verify(changesPanelPresenter).show(eq(alteredFiles)); - verify(view).focusInMessageField(); - verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); - verify(view).getMessage(); - verify(view).showDialog(); - verify(view).setMarkedCheckBoxes(anySet()); - } - - @Test - public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { - final String diff = "A\tfile"; - final AlteredFiles alteredFiles = new AlteredFiles(project, diff); - - PromiseError error = mock(PromiseError.class); - ServerException exception = mock(ServerException.class); - when(exception.getErrorCode()).thenReturn(ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED); - when(error.getCause()).thenReturn(exception); - Status status = mock(Status.class); - when(status.getUntracked()).thenReturn(singletonList("file")); - - presenter.showDialog(project); - verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply(null); - verify(logPromise).catchError(promiseErrorCaptor.capture()); - promiseErrorCaptor.getValue().apply(error); - verify(statusPromise).then(statusPromiseCaptor.capture()); - statusPromiseCaptor.getValue().apply(status); - - verify(view).setEnableAmendCheckBox(false); - verify(view).setEnablePushAfterCommitCheckBox(false); - verify(changesPanelPresenter).show(eq(alteredFiles)); - verify(view).focusInMessageField(); - verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); - verify(view).getMessage(); - verify(view).showDialog(); - verify(view).setMarkedCheckBoxes(anySet()); - } - - @Test - public void shouldEnableCommitButton() throws Exception { - when(view.getMessage()).thenReturn("foo"); - - presenter.showDialog(project); - verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply("M\tfile"); - verify(logPromise).then(logCaptor.capture()); - logCaptor.getValue().apply(null); - - verify(view).setEnableCommitButton(eq(ENABLE_BUTTON)); - } - - @Test - public void shouldCloseWhenCancelButtonClicked() throws Exception { - presenter.onCancelClicked(); - - verify(view).close(); - } - - @Test - public void shouldDisableCommitButtonOnEmptyMessage() throws Exception { - when(view.getMessage()).thenReturn(EMPTY_TEXT); - - presenter.onValueChanged(); - - verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); - } - - @Test - public void shouldEnableCommitButtonOnAmendAndNoFilesChecked() throws Exception { - when(view.getMessage()).thenReturn(COMMIT_TEXT); - when(view.isAmend()).thenReturn(true); - - presenter.onValueChanged(); - - verify(view).setEnableCommitButton(eq(ENABLE_BUTTON)); - } - - @Test - public void shouldPrintSuccessMessageOnAddToIndexAndCommitSuccess() throws Exception { - Revision revision = mock(Revision.class); - GitUser gitUser = mock(GitUser.class); - when(gitUser.getName()).thenReturn("commiterName"); - when(revision.getId()).thenReturn("commitId"); - when(revision.getCommitter()).thenReturn(gitUser); - when(constant.commitMessage(eq("commitId"), anyString())).thenReturn("commitMessage"); - when(constant.commitUser(anyString())).thenReturn("commitUser"); - - presenter.showDialog(project); - presenter.onCommitClicked(); - verify(voidPromise).then(voidPromiseCaptor.capture()); - voidPromiseCaptor.getValue().apply(null); - verify(revisionPromise).then(revisionCaptor.capture()); - revisionCaptor.getValue().apply(revision); - - verify(console).print("commitMessage commitUser"); - verify(notificationManager).notify("commitMessage commitUser"); - verify(view).close(); - } - - @Test - public void shouldPrintFailMessageOnOnAddToIndexSuccessButCommitFailed() throws Exception { - when(constant.commitFailed()).thenReturn("commitFailed"); - - presenter.showDialog(project); - presenter.onCommitClicked(); - verify(voidPromise).then(voidPromiseCaptor.capture()); - voidPromiseCaptor.getValue().apply(null); - verify(revisionPromise).catchError(promiseErrorCaptor.capture()); - promiseErrorCaptor.getValue().apply(promiseError); - - verify(console).printError("error"); - verify(notificationManager).notify(eq("commitFailed"), eq("error"), eq(FAIL), eq(FLOAT_MODE)); - } - - @Test - public void shouldShowErrorNotificationOnAddToIndexFailed() throws Exception { - when(constant.addFailed()).thenReturn("addFailed"); - - presenter.showDialog(project); - presenter.onCommitClicked(); - verify(voidPromise).catchError(promiseErrorCaptor.capture()); - promiseErrorCaptor.getValue().apply(promiseError); - - verify(notificationManager).notify(eq("addFailed"), eq(FAIL), eq(FLOAT_MODE)); - } - - @Test - public void shouldShowPushSuccessNotificationIfPushAfterCommitChecked() throws Exception { - when(constant.pushSuccess(anyString())).thenReturn("pushSuccess"); - when(view.isPushAfterCommit()).thenReturn(true); - when(view.getRemoteBranch()).thenReturn("origin/master"); - - presenter.showDialog(project); - presenter.onCommitClicked(); - verify(voidPromise).then(voidPromiseCaptor.capture()); - voidPromiseCaptor.getValue().apply(null); - verify(revisionPromise).then(revisionCaptor.capture()); - revisionCaptor.getValue().apply(mock(Revision.class)); - verify(pushPromise).then(pushPromiseCaptor.capture()); - pushPromiseCaptor.getValue().apply(null); - - verify(notificationManager).notify(eq("pushSuccess"), eq(SUCCESS), eq(FLOAT_MODE)); - } - - @Test - public void shouldShowPushFailedNotification() throws Exception { - when(constant.pushFail()).thenReturn("pushFail"); - when(view.isPushAfterCommit()).thenReturn(true); - when(view.getRemoteBranch()).thenReturn("origin/master"); - - presenter.showDialog(project); - presenter.onCommitClicked(); - verify(voidPromise).then(voidPromiseCaptor.capture()); - voidPromiseCaptor.getValue().apply(null); - verify(revisionPromise).then(revisionCaptor.capture()); - revisionCaptor.getValue().apply(mock(Revision.class)); - verify(pushPromise).catchError(promiseErrorCaptor.capture()); - promiseErrorCaptor.getValue().apply(promiseError); - - verify(notificationManager).notify(eq("pushFail"), eq(FAIL), eq(FLOAT_MODE)); - } + private static final String COMMIT_TEXT = "commit text"; + + @Mock private CommitView view; + @Mock private DateTimeFormatter dateTimeFormatter; + @Mock private ChangesPanelPresenter changesPanelPresenter; + + private CommitPresenter presenter; + + @Override + public void disarm() { + super.disarm(); + + presenter = + spy( + new CommitPresenter( + view, + service, + changesPanelPresenter, + constant, + notificationManager, + dialogFactory, + appContext, + dateTimeFormatter, + gitOutputConsoleFactory, + processesPanelPresenter)); + + when(view.getMessage()).thenReturn(EMPTY_TEXT); + + Resource resource = mock(Resource.class); + when(appContext.getResources()).thenReturn(new Resource[] {}); + when(appContext.getResource()).thenReturn(resource); + when(resource.getLocation()).thenReturn(Path.valueOf("test/location")); + when(appContext.getDevMachine()).thenReturn(mock(DevMachine.class)); + when(appContext.getRootProject()).thenReturn(mock(Project.class)); + + when(voidPromise.then(any(Operation.class))).thenReturn(voidPromise); + when(voidPromise.catchError(any(Operation.class))).thenReturn(voidPromise); + when(revisionPromise.then(any(Operation.class))).thenReturn(revisionPromise); + when(revisionPromise.catchError(any(Operation.class))).thenReturn(revisionPromise); + when(stringPromise.then(any(Operation.class))).thenReturn(stringPromise); + when(stringPromise.catchError(any(Operation.class))).thenReturn(stringPromise); + when(branchListPromise.then(any(Operation.class))).thenReturn(branchListPromise); + when(branchListPromise.catchError(any(Operation.class))).thenReturn(branchListPromise); + when(pushPromise.then(any(Operation.class))).thenReturn(pushPromise); + when(logPromise.then(any(Operation.class))).thenReturn(logPromise); + when(logPromise.catchError(any(Operation.class))).thenReturn(logPromise); + when(statusPromise.then(any(Operation.class))).thenReturn(statusPromise); + when(service.add(any(Path.class), anyBoolean(), any(Path[].class))).thenReturn(voidPromise); + when(service.commit(any(Path.class), anyString(), anyBoolean(), any(Path[].class))) + .thenReturn(revisionPromise); + when(service.diff( + any(Path.class), + eq(null), + any(DiffType.class), + anyBoolean(), + anyInt(), + anyString(), + anyBoolean())) + .thenReturn(stringPromise); + when(service.branchList(any(Path.class), any(BranchListMode.class))) + .thenReturn(branchListPromise); + when(service.push(any(Path.class), anyList(), anyString(), anyBoolean())) + .thenReturn(pushPromise); + when(service.log(any(Path.class), eq(null), anyInt(), anyInt(), anyBoolean())) + .thenReturn(logPromise); + when(service.getStatus(any(Path.class))).thenReturn(statusPromise); + } + + @Test + public void shouldShowMessageWhenNothingToCommit() throws Exception { + ConfirmDialog dialog = mock(ConfirmDialog.class); + when(dialogFactory.createConfirmDialog( + anyString(), + anyString(), + anyString(), + anyString(), + any(ConfirmCallback.class), + eq(null))) + .thenReturn(dialog); + + presenter.showDialog(project); + verify(stringPromise).then(stringCaptor.capture()); + stringCaptor.getValue().apply(""); + verify(logPromise).then(logCaptor.capture()); + logCaptor.getValue().apply(null); + + verify(dialog).show(); + } + + @Test + public void shouldShowDialog() throws Exception { + final String diff = "M\tfile"; + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); + + ConfirmDialog dialog = mock(ConfirmDialog.class); + when(dialogFactory.createConfirmDialog( + anyString(), + anyString(), + anyString(), + anyString(), + any(ConfirmCallback.class), + eq(null))) + .thenReturn(dialog); + + presenter.showDialog(project); + verify(stringPromise).then(stringCaptor.capture()); + stringCaptor.getValue().apply("M\tfile"); + verify(logPromise).then(logCaptor.capture()); + logCaptor.getValue().apply(null); + + verify(view).setEnableAmendCheckBox(true); + verify(view).setEnablePushAfterCommitCheckBox(true); + verify(changesPanelPresenter).show(eq(alteredFiles)); + verify(view).focusInMessageField(); + verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); + verify(view).getMessage(); + verify(view).showDialog(); + verify(view).setMarkedCheckBoxes(anySet()); + } + + @Test + public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { + final String diff = "A\tfile"; + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); + + PromiseError error = mock(PromiseError.class); + ServerException exception = mock(ServerException.class); + when(exception.getErrorCode()).thenReturn(ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED); + when(error.getCause()).thenReturn(exception); + Status status = mock(Status.class); + when(status.getUntracked()).thenReturn(singletonList("file")); + + presenter.showDialog(project); + verify(stringPromise).then(stringCaptor.capture()); + stringCaptor.getValue().apply(null); + verify(logPromise).catchError(promiseErrorCaptor.capture()); + promiseErrorCaptor.getValue().apply(error); + verify(statusPromise).then(statusPromiseCaptor.capture()); + statusPromiseCaptor.getValue().apply(status); + + verify(view).setEnableAmendCheckBox(false); + verify(view).setEnablePushAfterCommitCheckBox(false); + verify(changesPanelPresenter).show(eq(alteredFiles)); + verify(view).focusInMessageField(); + verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); + verify(view).getMessage(); + verify(view).showDialog(); + verify(view).setMarkedCheckBoxes(anySet()); + } + + @Test + public void shouldEnableCommitButton() throws Exception { + when(view.getMessage()).thenReturn("foo"); + + presenter.showDialog(project); + verify(stringPromise).then(stringCaptor.capture()); + stringCaptor.getValue().apply("M\tfile"); + verify(logPromise).then(logCaptor.capture()); + logCaptor.getValue().apply(null); + + verify(view).setEnableCommitButton(eq(ENABLE_BUTTON)); + } + + @Test + public void shouldCloseWhenCancelButtonClicked() throws Exception { + presenter.onCancelClicked(); + + verify(view).close(); + } + + @Test + public void shouldDisableCommitButtonOnEmptyMessage() throws Exception { + when(view.getMessage()).thenReturn(EMPTY_TEXT); + + presenter.onValueChanged(); + + verify(view).setEnableCommitButton(eq(DISABLE_BUTTON)); + } + + @Test + public void shouldEnableCommitButtonOnAmendAndNoFilesChecked() throws Exception { + when(view.getMessage()).thenReturn(COMMIT_TEXT); + when(view.isAmend()).thenReturn(true); + + presenter.onValueChanged(); + + verify(view).setEnableCommitButton(eq(ENABLE_BUTTON)); + } + + @Test + public void shouldPrintSuccessMessageOnAddToIndexAndCommitSuccess() throws Exception { + Revision revision = mock(Revision.class); + GitUser gitUser = mock(GitUser.class); + when(gitUser.getName()).thenReturn("commiterName"); + when(revision.getId()).thenReturn("commitId"); + when(revision.getCommitter()).thenReturn(gitUser); + when(constant.commitMessage(eq("commitId"), anyString())).thenReturn("commitMessage"); + when(constant.commitUser(anyString())).thenReturn("commitUser"); + + presenter.showDialog(project); + presenter.onCommitClicked(); + verify(voidPromise).then(voidPromiseCaptor.capture()); + voidPromiseCaptor.getValue().apply(null); + verify(revisionPromise).then(revisionCaptor.capture()); + revisionCaptor.getValue().apply(revision); + + verify(console).print("commitMessage commitUser"); + verify(notificationManager).notify("commitMessage commitUser"); + verify(view).close(); + } + + @Test + public void shouldPrintFailMessageOnOnAddToIndexSuccessButCommitFailed() throws Exception { + when(constant.commitFailed()).thenReturn("commitFailed"); + + presenter.showDialog(project); + presenter.onCommitClicked(); + verify(voidPromise).then(voidPromiseCaptor.capture()); + voidPromiseCaptor.getValue().apply(null); + verify(revisionPromise).catchError(promiseErrorCaptor.capture()); + promiseErrorCaptor.getValue().apply(promiseError); + + verify(console).printError("error"); + verify(notificationManager).notify(eq("commitFailed"), eq("error"), eq(FAIL), eq(FLOAT_MODE)); + } + + @Test + public void shouldShowErrorNotificationOnAddToIndexFailed() throws Exception { + when(constant.addFailed()).thenReturn("addFailed"); + + presenter.showDialog(project); + presenter.onCommitClicked(); + verify(voidPromise).catchError(promiseErrorCaptor.capture()); + promiseErrorCaptor.getValue().apply(promiseError); + + verify(notificationManager).notify(eq("addFailed"), eq(FAIL), eq(FLOAT_MODE)); + } + + @Test + public void shouldShowPushSuccessNotificationIfPushAfterCommitChecked() throws Exception { + when(constant.pushSuccess(anyString())).thenReturn("pushSuccess"); + when(view.isPushAfterCommit()).thenReturn(true); + when(view.getRemoteBranch()).thenReturn("origin/master"); + + presenter.showDialog(project); + presenter.onCommitClicked(); + verify(voidPromise).then(voidPromiseCaptor.capture()); + voidPromiseCaptor.getValue().apply(null); + verify(revisionPromise).then(revisionCaptor.capture()); + revisionCaptor.getValue().apply(mock(Revision.class)); + verify(pushPromise).then(pushPromiseCaptor.capture()); + pushPromiseCaptor.getValue().apply(null); + + verify(notificationManager).notify(eq("pushSuccess"), eq(SUCCESS), eq(FLOAT_MODE)); + } + + @Test + public void shouldShowPushFailedNotification() throws Exception { + when(constant.pushFail()).thenReturn("pushFail"); + when(view.isPushAfterCommit()).thenReturn(true); + when(view.getRemoteBranch()).thenReturn("origin/master"); + + presenter.showDialog(project); + presenter.onCommitClicked(); + verify(voidPromise).then(voidPromiseCaptor.capture()); + voidPromiseCaptor.getValue().apply(null); + verify(revisionPromise).then(revisionCaptor.capture()); + revisionCaptor.getValue().apply(mock(Revision.class)); + verify(pushPromise).catchError(promiseErrorCaptor.capture()); + promiseErrorCaptor.getValue().apply(promiseError); + + verify(notificationManager).notify(eq("pushFail"), eq(FAIL), eq(FLOAT_MODE)); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java index 05d2431ada6..7796274a014 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,7 +7,7 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.history; import org.eclipse.che.api.core.ErrorCodes; @@ -48,178 +48,174 @@ public class HistoryPresenterTest extends BaseTest { - @Mock - private HistoryView view; - @Mock - private ComparePresenter comparePresenter; - @Mock - private ChangesListPresenter changesListPresenter; - @InjectMocks - private HistoryPresenter presenter; - - @Override - public void disarm() { - super.disarm(); - - Resource resource = mock(Resource.class); - when(resource.getLocation()).thenReturn(EMPTY); - when(appContext.getResource()).thenReturn(resource); - when(appContext.getRootProject()).thenReturn(project); - - when(service.log(any(Path.class), - any(Path[].class), - anyInt(), - anyInt(), - anyBoolean())) - .thenReturn(logPromise); - when(service.diff(any(Path.class), - anyList(), - any(DiffType.class), - anyBoolean(), - anyInt(), - anyString(), - anyString())) - .thenReturn(stringPromise); - when(service.showFileContent(any(Path.class), - any(Path.class), - anyString())) - .thenReturn(showPromise); - when(stringPromise.then(any(Operation.class))).thenReturn(stringPromise); - when(stringPromise.catchError(any(Operation.class))).thenReturn(stringPromise); - when(logPromise.then(any(Operation.class))).thenReturn(logPromise); - when(logPromise.catchError(any(Operation.class))).thenReturn(logPromise); - when(constant.historyTitle()).thenReturn("title"); - when(constant.historyNothingToDisplay()).thenReturn("error message"); - when(constant.compareReadOnlyTitle()).thenReturn("(Read only)"); - } - - @Test - public void shouldGetCommitsAndShowDialog() throws Exception { - LogResponse response = mock(LogResponse.class); - List revisions = singletonList(mock(Revision.class)); - when(response.getCommits()).thenReturn(revisions); - - presenter.show(); - verify(logPromise).then(logCaptor.capture()); - logCaptor.getValue().apply(response); - - verify(view).setRevisions(revisions); - verify(view).showDialog(); - } - - @Test - public void shouldShowDialogOnInitCommitError() throws Exception { - PromiseError error = mock(PromiseError.class); - ServerException exception = mock(ServerException.class); - when(exception.getErrorCode()).thenReturn(ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED); - when(error.getCause()).thenReturn(exception); - when(constant.initCommitWasNotPerformed()).thenReturn("error message"); - MessageDialog dialog = mock(MessageDialog.class); - when(dialogFactory.createMessageDialog(eq("title"), eq("error message"), any(ConfirmCallback.class))).thenReturn(dialog); - - presenter.show(); - verify(logPromise).catchError(promiseErrorCaptor.capture()); - promiseErrorCaptor.getValue().apply(error); - - verify(dialog).show(); - } - - @Test - public void shouldShowNotificationOnGetLogError() throws Exception { - when(constant.logFailed()).thenReturn("error"); - - presenter.show(); - verify(logPromise).catchError(promiseErrorCaptor.capture()); - promiseErrorCaptor.getValue().apply(mock(PromiseError.class)); - - verify(notificationManager).notify(eq("error"), eq(FAIL), eq(EMERGE_MODE)); - } - - @Test - public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Exception { - final String diff = "M\tfile"; - final AlteredFiles alteredFiles = new AlteredFiles(project, diff); - - Revision parentRevision = mock(Revision.class); - Revision selectedRevision = mock(Revision.class); - when(parentRevision.getId()).thenReturn("commitA"); - when(selectedRevision.getId()).thenReturn("commitB"); - LogResponse logResponse = mock(LogResponse.class); - List revisions = new ArrayList<>(); - revisions.add(selectedRevision); - revisions.add(parentRevision); - when(logResponse.getCommits()).thenReturn(revisions); - - presenter.show(); - presenter.onRevisionSelected(selectedRevision); - verify(logPromise).then(logCaptor.capture()); - logCaptor.getValue().apply(logResponse); - presenter.onCompareClicked(); - verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply(diff); - - verify(comparePresenter).showCompareBetweenRevisions(eq(alteredFiles), anyString(), eq("commitA"), eq("commitB")); - } - - @Test - public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() throws Exception { - final String diff = "M\tfile1\nM\tfile2"; - final AlteredFiles alteredFiles = new AlteredFiles(project, diff); - - Revision revisionA = mock(Revision.class); - Revision revisionB = mock(Revision.class); - when(revisionA.getId()).thenReturn("commitA"); - when(revisionB.getId()).thenReturn("commitB"); - LogResponse logResponse = mock(LogResponse.class); - List revisions = new ArrayList<>(); - revisions.add(revisionA); - revisions.add(revisionB); - when(logResponse.getCommits()).thenReturn(revisions); - - presenter.show(); - presenter.onRevisionSelected(revisionA); - verify(logPromise).then(logCaptor.capture()); - logCaptor.getValue().apply(logResponse); - presenter.onCompareClicked(); - verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply(diff); - - verify(changesListPresenter).show(eq(alteredFiles), eq("commitB"), eq("commitA")); - } - - @Test - public void shouldShowNotificationOnGetDiffError() throws Exception { - Revision revisionA = mock(Revision.class); - Revision revisionB = mock(Revision.class); - LogResponse logResponse = mock(LogResponse.class); - List revisions = new ArrayList<>(); - revisions.add(revisionA); - revisions.add(revisionB); - when(logResponse.getCommits()).thenReturn(revisions); - when(constant.diffFailed()).thenReturn("error"); - - presenter.show(); - presenter.onRevisionSelected(revisionA); - verify(logPromise).then(logCaptor.capture()); - logCaptor.getValue().apply(logResponse); - presenter.onCompareClicked(); - verify(stringPromise).catchError(promiseErrorCaptor.capture()); - promiseErrorCaptor.getValue().apply(null); - - verify(notificationManager).notify(eq("error"), eq(FAIL), eq(EMERGE_MODE)); - } - - @Test - public void shouldShowDialogIfNothingToCompare() throws Exception { - MessageDialog dialog = mock(MessageDialog.class); - when(dialogFactory.createMessageDialog(eq("title"), eq("error message"), any(ConfirmCallback.class))).thenReturn(dialog); - - presenter.show(); - presenter.onRevisionSelected(mock(Revision.class)); - presenter.onCompareClicked(); - verify(stringPromise).then(stringCaptor.capture()); - stringCaptor.getValue().apply(""); - - verify(dialog).show(); - } + @Mock private HistoryView view; + @Mock private ComparePresenter comparePresenter; + @Mock private ChangesListPresenter changesListPresenter; + @InjectMocks private HistoryPresenter presenter; + + @Override + public void disarm() { + super.disarm(); + + Resource resource = mock(Resource.class); + when(resource.getLocation()).thenReturn(EMPTY); + when(appContext.getResource()).thenReturn(resource); + when(appContext.getRootProject()).thenReturn(project); + + when(service.log(any(Path.class), any(Path[].class), anyInt(), anyInt(), anyBoolean())) + .thenReturn(logPromise); + when(service.diff( + any(Path.class), + anyList(), + any(DiffType.class), + anyBoolean(), + anyInt(), + anyString(), + anyString())) + .thenReturn(stringPromise); + when(service.showFileContent(any(Path.class), any(Path.class), anyString())) + .thenReturn(showPromise); + when(stringPromise.then(any(Operation.class))).thenReturn(stringPromise); + when(stringPromise.catchError(any(Operation.class))).thenReturn(stringPromise); + when(logPromise.then(any(Operation.class))).thenReturn(logPromise); + when(logPromise.catchError(any(Operation.class))).thenReturn(logPromise); + when(constant.historyTitle()).thenReturn("title"); + when(constant.historyNothingToDisplay()).thenReturn("error message"); + when(constant.compareReadOnlyTitle()).thenReturn("(Read only)"); + } + + @Test + public void shouldGetCommitsAndShowDialog() throws Exception { + LogResponse response = mock(LogResponse.class); + List revisions = singletonList(mock(Revision.class)); + when(response.getCommits()).thenReturn(revisions); + + presenter.show(); + verify(logPromise).then(logCaptor.capture()); + logCaptor.getValue().apply(response); + + verify(view).setRevisions(revisions); + verify(view).showDialog(); + } + + @Test + public void shouldShowDialogOnInitCommitError() throws Exception { + PromiseError error = mock(PromiseError.class); + ServerException exception = mock(ServerException.class); + when(exception.getErrorCode()).thenReturn(ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED); + when(error.getCause()).thenReturn(exception); + when(constant.initCommitWasNotPerformed()).thenReturn("error message"); + MessageDialog dialog = mock(MessageDialog.class); + when(dialogFactory.createMessageDialog( + eq("title"), eq("error message"), any(ConfirmCallback.class))) + .thenReturn(dialog); + + presenter.show(); + verify(logPromise).catchError(promiseErrorCaptor.capture()); + promiseErrorCaptor.getValue().apply(error); + + verify(dialog).show(); + } + + @Test + public void shouldShowNotificationOnGetLogError() throws Exception { + when(constant.logFailed()).thenReturn("error"); + + presenter.show(); + verify(logPromise).catchError(promiseErrorCaptor.capture()); + promiseErrorCaptor.getValue().apply(mock(PromiseError.class)); + + verify(notificationManager).notify(eq("error"), eq(FAIL), eq(EMERGE_MODE)); + } + + @Test + public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Exception { + final String diff = "M\tfile"; + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); + + Revision parentRevision = mock(Revision.class); + Revision selectedRevision = mock(Revision.class); + when(parentRevision.getId()).thenReturn("commitA"); + when(selectedRevision.getId()).thenReturn("commitB"); + LogResponse logResponse = mock(LogResponse.class); + List revisions = new ArrayList<>(); + revisions.add(selectedRevision); + revisions.add(parentRevision); + when(logResponse.getCommits()).thenReturn(revisions); + + presenter.show(); + presenter.onRevisionSelected(selectedRevision); + verify(logPromise).then(logCaptor.capture()); + logCaptor.getValue().apply(logResponse); + presenter.onCompareClicked(); + verify(stringPromise).then(stringCaptor.capture()); + stringCaptor.getValue().apply(diff); + + verify(comparePresenter) + .showCompareBetweenRevisions(eq(alteredFiles), anyString(), eq("commitA"), eq("commitB")); + } + + @Test + public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() throws Exception { + final String diff = "M\tfile1\nM\tfile2"; + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); + + Revision revisionA = mock(Revision.class); + Revision revisionB = mock(Revision.class); + when(revisionA.getId()).thenReturn("commitA"); + when(revisionB.getId()).thenReturn("commitB"); + LogResponse logResponse = mock(LogResponse.class); + List revisions = new ArrayList<>(); + revisions.add(revisionA); + revisions.add(revisionB); + when(logResponse.getCommits()).thenReturn(revisions); + + presenter.show(); + presenter.onRevisionSelected(revisionA); + verify(logPromise).then(logCaptor.capture()); + logCaptor.getValue().apply(logResponse); + presenter.onCompareClicked(); + verify(stringPromise).then(stringCaptor.capture()); + stringCaptor.getValue().apply(diff); + + verify(changesListPresenter).show(eq(alteredFiles), eq("commitB"), eq("commitA")); + } + + @Test + public void shouldShowNotificationOnGetDiffError() throws Exception { + Revision revisionA = mock(Revision.class); + Revision revisionB = mock(Revision.class); + LogResponse logResponse = mock(LogResponse.class); + List revisions = new ArrayList<>(); + revisions.add(revisionA); + revisions.add(revisionB); + when(logResponse.getCommits()).thenReturn(revisions); + when(constant.diffFailed()).thenReturn("error"); + + presenter.show(); + presenter.onRevisionSelected(revisionA); + verify(logPromise).then(logCaptor.capture()); + logCaptor.getValue().apply(logResponse); + presenter.onCompareClicked(); + verify(stringPromise).catchError(promiseErrorCaptor.capture()); + promiseErrorCaptor.getValue().apply(null); + + verify(notificationManager).notify(eq("error"), eq(FAIL), eq(EMERGE_MODE)); + } + + @Test + public void shouldShowDialogIfNothingToCompare() throws Exception { + MessageDialog dialog = mock(MessageDialog.class); + when(dialogFactory.createMessageDialog( + eq("title"), eq("error message"), any(ConfirmCallback.class))) + .thenReturn(dialog); + + presenter.show(); + presenter.onRevisionSelected(mock(Revision.class)); + presenter.onCompareClicked(); + verify(stringPromise).then(stringCaptor.capture()); + stringCaptor.getValue().apply(""); + + verify(dialog).show(); + } } From d121a3df24c29c093b552ce851a8389c7fc1b108 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Tue, 22 Aug 2017 17:16:04 +0300 Subject: [PATCH 24/33] Fix build --- .../action/CompareWithLatestAction.java | 63 ++--- .../git/client/commit/CommitPresenter.java | 40 +--- .../ide/ext/git/client/commit/CommitView.java | 6 +- .../ext/git/client/compare/AlteredFiles.java | 172 +++++++------- .../git/client/compare/ComparePresenter.java | 215 ++++++++++-------- .../ext/git/client/compare/CompareView.java | 16 +- .../git/client/compare/CompareViewImpl.java | 51 +++-- .../changeslist/ChangesListPresenter.java | 88 ++++--- .../changespanel/ChangesPanelPresenter.java | 36 ++- .../changespanel/ChangesPanelView.java | 3 - .../changespanel/ChangesPanelViewImpl.java | 26 ++- .../revisionslist/RevisionListPresenter.java | 104 ++++----- .../git/client/history/HistoryPresenter.java | 82 ++++--- .../client/commit/CommitPresenterTest.java | 61 ++--- .../git/client/compare/AlteredFilesTest.java | 149 ++++++------ .../client/history/HistoryPresenterTest.java | 72 +++--- 16 files changed, 556 insertions(+), 628 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java index a439e2f8844..3691c5860b8 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/CompareWithLatestAction.java @@ -15,12 +15,9 @@ import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; import com.google.inject.Inject; import com.google.inject.Singleton; -import java.util.HashMap; -import java.util.Map; import org.eclipse.che.ide.api.action.ActionEvent; import org.eclipse.che.ide.api.app.AppContext; import org.eclipse.che.ide.api.dialogs.DialogFactory; @@ -32,13 +29,6 @@ import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; -import org.eclipse.che.ide.api.dialogs.DialogFactory; - -import static com.google.common.base.Preconditions.checkState; -import static java.util.Collections.singletonList; -import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; /** * Action for comparing with latest repository version @@ -94,27 +84,38 @@ public void actionPerformed(ActionEvent e) { .removeTrailingSeparator() .toString(); - service.diff(project.getLocation(), - selectedItemPath.isEmpty() ? null : singletonList(selectedItemPath), NAME_STATUS, false, 0, REVISION, false) - .then(diff -> { - if (diff.isEmpty()) { - dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), - locale.compareMessageIdenticalContentText(), null).show(); - } else { - AlteredFiles alteredFiles = new AlteredFiles(project, diff); - if (alteredFiles.getFilesQuantity() == 1) { + service + .diff( + project.getLocation(), + selectedItemPath.isEmpty() ? null : singletonList(selectedItemPath), + NAME_STATUS, + false, + 0, + REVISION, + false) + .then( + diff -> { + if (diff.isEmpty()) { + dialogFactory + .createMessageDialog( + locale.compareMessageIdenticalContentTitle(), + locale.compareMessageIdenticalContentText(), + null) + .show(); + } else { + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + if (alteredFiles.getFilesQuantity() == 1) { - comparePresenter.showCompareWithLatest(alteredFiles, null, - REVISION); - } - else { + comparePresenter.showCompareWithLatest(alteredFiles, null, REVISION); + } else { - changesListPresenter.show(alteredFiles, REVISION, null); - } - } - }) - .catchError(arg -> { - notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); - }); - } + changesListPresenter.show(alteredFiles, REVISION, null); + } + } + }) + .catchError( + arg -> { + notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); + }); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java index 200076f5296..5e979765825 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenter.java @@ -10,7 +10,6 @@ */ package org.eclipse.che.ide.ext.git.client.commit; -import static com.google.common.base.Strings.isNullOrEmpty; import static com.google.common.collect.Iterables.getFirst; import static java.util.Arrays.stream; import static java.util.Collections.singletonList; @@ -21,16 +20,12 @@ import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.SUCCESS; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; import com.google.inject.Inject; import com.google.inject.Singleton; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; -import java.util.Map; -import java.util.Set; import java.util.stream.Collectors; import javax.validation.constraints.NotNull; import org.eclipse.che.api.core.ErrorCodes; @@ -51,23 +46,6 @@ import org.eclipse.che.ide.processes.panel.ProcessesPanelPresenter; import org.eclipse.che.ide.resource.Path; -import javax.validation.constraints.NotNull; -import java.util.ArrayList; -import java.util.List; -import java.util.stream.Collectors; - -import static com.google.common.collect.Iterables.getFirst; -import static java.util.Arrays.stream; -import static java.util.Collections.singletonList; -import static java.util.stream.Collectors.joining; -import static org.eclipse.che.api.git.shared.BranchListMode.LIST_REMOTE; -import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.FLOAT_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.SUCCESS; -import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; - /** * Presenter for commit changes on git. * @@ -193,10 +171,10 @@ private void showAskForAmendDialog() { .show(); } - private void show(@Nullable String diff) { - AlteredFiles alteredFiles = new AlteredFiles(project,diff); - filesToCommit.clear(); - allFiles = alteredFiles.getAlteredFilesList(); + private void show(@Nullable String diff) { + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + filesToCommit.clear(); + allFiles = alteredFiles.getAlteredFilesList(); view.setEnableCommitButton(!view.getMessage().isEmpty()); view.focusInMessageField(); @@ -208,12 +186,10 @@ private void show(@Nullable String diff) { .collect(Collectors.toSet())); } - - - @Override - public void onCommitClicked() { - Path location = project.getLocation(); - Path[] filesToCommitArray = getFilesToCommitArray(); + @Override + public void onCommitClicked() { + Path location = project.getLocation(); + Path[] filesToCommitArray = getFilesToCommitArray(); service .add(location, false, filesToCommitArray) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java index caada58cc48..6c141175e26 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/commit/CommitView.java @@ -48,9 +48,9 @@ interface ActionDelegate { /** Set the commit message for an amend commit. */ void setAmendCommitMessage(); - /** Get list of changed files paths. */ - List getChangedFiles(); - } + /** Get list of changed files paths. */ + List getChangedFiles(); + } /** @return entered message */ @NotNull diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java index 8fc240937ca..8c0176ec97a 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFiles.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,21 +7,19 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare; -import org.eclipse.che.ide.api.resources.Project; -import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; -import org.eclipse.che.ide.util.loging.Log; +import static com.google.common.base.Strings.isNullOrEmpty; +import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Objects; - -import static com.google.common.base.Strings.isNullOrEmpty; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; +import org.eclipse.che.ide.api.resources.Project; +import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; /** * Describes changed in any way files in git comparison process. @@ -30,91 +28,81 @@ */ public class AlteredFiles { - private final Project project; - private final LinkedHashMap alteredFilesStatuses; - private final List alteredFilesList; - - /** - * Parses raw git diff string and creates advanced representation. - * - * @param project - * the project under diff operation - * @param diff - * plain result of git diff operation - */ - public AlteredFiles(Project project, String diff) { - this.project = project; - - alteredFilesStatuses = new LinkedHashMap<>(); - if (!isNullOrEmpty(diff)) { - for (String item : diff.split("\n")) { - if (item.length() < 3 || item.charAt(1) != '\t') { - throw new IllegalArgumentException("Invalid git diff format. Invalid record: " + item); - } - alteredFilesStatuses.put(item.substring(2, item.length()), defineStatus(item.substring(0, 1))); - } + private final Project project; + private final LinkedHashMap alteredFilesStatuses; + private final List alteredFilesList; + + /** + * Parses raw git diff string and creates advanced representation. + * + * @param project the project under diff operation + * @param diff plain result of git diff operation + */ + public AlteredFiles(Project project, String diff) { + this.project = project; + + alteredFilesStatuses = new LinkedHashMap<>(); + if (!isNullOrEmpty(diff)) { + for (String item : diff.split("\n")) { + if (item.length() < 3 || item.charAt(1) != '\t') { + throw new IllegalArgumentException("Invalid git diff format. Invalid record: " + item); } - - alteredFilesList = new ArrayList<>(alteredFilesStatuses.keySet()); - } - - /** - * Returns project in which git repository is located. - */ - public Project getProject() { - return project; - } - - /** - * Returns number of files in the diff. - */ - public int getFilesQuantity() { - return alteredFilesList.size(); - } - - public boolean isEmpty() { - return 0 == alteredFilesList.size(); - } - - /** - * Returns this diff in map representation: altered file to its git status. - */ - public Map getChangedFilesMap() { - return alteredFilesStatuses; - } - - /** - * Returns list of altered files in this git diff. - */ - public List getAlteredFilesList() { - return alteredFilesList; - } - - public Status getStatusByFilePath(String relativePathToChangedFile) { - return alteredFilesStatuses.get(relativePathToChangedFile); - } - - public Status getStatusByIndex(int index) { - return alteredFilesStatuses.get(alteredFilesList.get(index)); - } - - public String getFileByIndex(int index) { - return alteredFilesList.get(index); - } - - @Override - public boolean equals(Object o) { - if (this == o) return true; - if (o == null || getClass() != o.getClass()) return false; - AlteredFiles that = (AlteredFiles)o; - return Objects.equals(project, that.project) && - Objects.equals(alteredFilesStatuses, that.alteredFilesStatuses) && - Objects.equals(alteredFilesList, that.alteredFilesList); - } - - @Override - public int hashCode() { - return Objects.hash(project, alteredFilesStatuses, alteredFilesList); + alteredFilesStatuses.put( + item.substring(2, item.length()), defineStatus(item.substring(0, 1))); + } } + alteredFilesList = new ArrayList<>(alteredFilesStatuses.keySet()); + } + + /** Returns project in which git repository is located. */ + public Project getProject() { + return project; + } + + /** Returns number of files in the diff. */ + public int getFilesQuantity() { + return alteredFilesList.size(); + } + + public boolean isEmpty() { + return 0 == alteredFilesList.size(); + } + + /** Returns this diff in map representation: altered file to its git status. */ + public Map getChangedFilesMap() { + return alteredFilesStatuses; + } + + /** Returns list of altered files in this git diff. */ + public List getAlteredFilesList() { + return alteredFilesList; + } + + public Status getStatusByFilePath(String relativePathToChangedFile) { + return alteredFilesStatuses.get(relativePathToChangedFile); + } + + public Status getStatusByIndex(int index) { + return alteredFilesStatuses.get(alteredFilesList.get(index)); + } + + public String getFileByIndex(int index) { + return alteredFilesList.get(index); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + AlteredFiles that = (AlteredFiles) o; + return Objects.equals(project, that.project) + && Objects.equals(alteredFilesStatuses, that.alteredFilesStatuses) + && Objects.equals(alteredFilesList, that.alteredFilesList); + } + + @Override + public int hashCode() { + return Objects.hash(project, alteredFilesStatuses, alteredFilesList); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index b7d27817a17..586f48f6a1c 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -19,7 +19,6 @@ import com.google.inject.Singleton; import com.google.web.bindery.event.shared.EventBus; import org.eclipse.che.commons.annotation.Nullable; -import org.eclipse.che.ide.api.app.AppContext; import org.eclipse.che.ide.api.dialogs.CancelCallback; import org.eclipse.che.ide.api.dialogs.ConfirmCallback; import org.eclipse.che.ide.api.dialogs.DialogFactory; @@ -42,39 +41,39 @@ @Singleton public class ComparePresenter implements CompareView.ActionDelegate { + private final EventBus eventBus; + private final DialogFactory dialogFactory; + private final CompareView view; + private final GitServiceClient service; + private final GitLocalizationConstant locale; + private final NotificationManager notificationManager; - private final EventBus eventBus; - private final DialogFactory dialogFactory; - private final CompareView view; - private final GitServiceClient service; - private final GitLocalizationConstant locale; - private final NotificationManager notificationManager; - - private boolean compareWithLatest; + private boolean compareWithLatest; private AlteredFiles alteredFiles; - private int currentFileIndex;private File comparedFile; - private String revision; - private String localContent; - private String revisionA; + private int currentFileIndex; + private File comparedFile; + private String revision; + private String localContent; + private String revisionA; private String revisionB; - @Inject - public ComparePresenter( - EventBus eventBus, - DialogFactory dialogFactory, - CompareView view, - GitServiceClient service, - GitLocalizationConstant locale, - NotificationManager notificationManager) { - - this.eventBus = eventBus; - this.dialogFactory = dialogFactory; - this.view = view; - this.service = service; - this.locale = locale; - this.notificationManager = notificationManager; - this.view.setDelegate(this); - } + @Inject + public ComparePresenter( + EventBus eventBus, + DialogFactory dialogFactory, + CompareView view, + GitServiceClient service, + GitLocalizationConstant locale, + NotificationManager notificationManager) { + + this.eventBus = eventBus; + this.dialogFactory = dialogFactory; + this.view = view; + this.service = service; + this.locale = locale; + this.notificationManager = notificationManager; + this.view.setDelegate(this); + } /** * Show compare window for given set of files between given revision and HEAD. @@ -91,7 +90,7 @@ public void showCompareWithLatest( this.compareWithLatest = true; - currentFileIndex = findFileIndexOrFirst(currentFile); + currentFileIndex = findFileIndexOrFirst(currentFile); showCompareForCurrentFile(); } @@ -161,73 +160,97 @@ private void showCompareForCurrentFile() { } private void showCompareWithLatestForFile( - final Path gitDirLocation, final Path relPath, final Status status) {if (status.equals(ADDED)) { - showCompare(""); - return; - } - - - - if (status.equals(DELETED)) { - service.showFileContent(gitDirLocation, relPath, revision) - .then(content -> { - view.setTitle(relPath.toString()); - view.setColumnTitles(locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); - view.show(content.getContent(), "", relPath.toString(), true); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } else { - service.showFileContent(gitDirLocation, relPath, revision) - .then(content -> { - showCompare(content.getContent()); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } + final Path gitDirLocation, final Path relPath, final Status status) { + if (status.equals(ADDED)) { + showCompare(""); + return; } + if (status.equals(DELETED)) { + service + .showFileContent(gitDirLocation, relPath, revision) + .then( + content -> { + view.setTitle(relPath.toString()); + view.setColumnTitles( + locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); + view.show(content.getContent(), "", relPath.toString(), true); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } else { + service + .showFileContent(gitDirLocation, relPath, revision) + .then( + content -> { + showCompare(content.getContent()); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } + } + private void showCompareBetweenRevisionsForFile( final Path gitDir, final Path relPath, final Status status) { view.setTitle(relPath.toString()); - - if (status == Status.ADDED) { - service.showFileContent(gitDir, relPath, revisionB) - .then(response -> { - view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), - revisionA == null ? "" : revisionA + locale.compareReadOnlyTitle()); - view.show("", response.getContent(), relPath.toString(), true); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } else if (status == Status.DELETED) { - service.showFileContent(gitDir, relPath, revisionA) - .then(response -> { - view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), revisionA + locale.compareReadOnlyTitle()); - view.show(response.getContent(), "", relPath.toString(), true); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - } else { - service.showFileContent(gitDir, relPath, revisionA) - .then(contentAResponse -> { - service.showFileContent(gitDir, relPath, revisionB) - .then(contentBResponse -> { - view.setColumnTitles(revisionB + locale.compareReadOnlyTitle(), - revisionA + locale.compareReadOnlyTitle()); - view.show(contentAResponse.getContent(), contentBResponse.getContent(), relPath.toString(), true); - }) - .catchError(error -> { - notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); - }); - }); - } + if (status == Status.ADDED) { + service + .showFileContent(gitDir, relPath, revisionB) + .then( + response -> { + view.setColumnTitles( + revisionB + locale.compareReadOnlyTitle(), + revisionA == null ? "" : revisionA + locale.compareReadOnlyTitle()); + view.show("", response.getContent(), relPath.toString(), true); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } else if (status == Status.DELETED) { + service + .showFileContent(gitDir, relPath, revisionA) + .then( + response -> { + view.setColumnTitles( + revisionB + locale.compareReadOnlyTitle(), + revisionA + locale.compareReadOnlyTitle()); + view.show(response.getContent(), "", relPath.toString(), true); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + } else { + service + .showFileContent(gitDir, relPath, revisionA) + .then( + contentAResponse -> { + service + .showFileContent(gitDir, relPath, revisionB) + .then( + contentBResponse -> { + view.setColumnTitles( + revisionB + locale.compareReadOnlyTitle(), + revisionA + locale.compareReadOnlyTitle()); + view.show( + contentAResponse.getContent(), + contentBResponse.getContent(), + relPath.toString(), + true); + }) + .catchError( + error -> { + notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); + }); + }); } + } @Override public void onClose(final String newContent) { @@ -236,11 +259,11 @@ public void onClose(final String newContent) { return; } - ConfirmCallback confirmCallback = - () -> { - saveContent(newContent); - view.hide(); - }; + ConfirmCallback confirmCallback = + () -> { + saveContent(newContent); + view.hide(); + }; CancelCallback cancelCallback = view::hide; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java index 2d0d1ea17b7..0b71a202c50 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java @@ -21,7 +21,7 @@ @ImplementedBy(CompareViewImpl.class) interface CompareView extends View { - interface ActionDelegate { + interface ActionDelegate { /** * Performs some actions in response to user's closing the window. * @@ -43,13 +43,13 @@ interface ContentConsumer { void processContent(String content); } - void getEditableContent(ContentConsumer contentConsumer);/** - * Set a title for the window. - * - * @param title - text that will be as a title in the window - */ - void setTitle(String title); + void getEditableContent(ContentConsumer contentConsumer); + /** + * Set a title for the window. + * + * @param title text that will be as a title in the window + */ + void setTitle(String title); /** * Set left and right column titles. diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index 977421bed81..c4721082709 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -51,11 +51,12 @@ interface PreviewViewImplUiBinder extends UiBinder {} @UiField(provided = true) final GitLocalizationConstant locale; - private final Button btnSaveChanges; + private final Button btnSaveChanges; private final Button btnNextDiff; - private final Button btnPrevDiff;private ActionDelegate delegate; - private ThemeAgent themeAgent; - private CompareWidget compare; + private final Button btnPrevDiff; + private ActionDelegate delegate; + private ThemeAgent themeAgent; + private CompareWidget compare; private final CompareFactory compareFactory; private final LoaderFactory loaderFactory; @@ -73,19 +74,22 @@ public CompareViewImpl( setWidget(UI_BINDER.createAndBindUi(this)); - Button closeButton = createButton(locale.buttonClose(), "git-compare-close-btn", event-> - onClose()); - Button refreshButton = + Button closeButton = + createButton(locale.buttonClose(), "git-compare-close-btn", event -> onClose()); + Button refreshButton = createButton(locale.buttonRefresh(), "git-compare-refresh-btn", event -> compare.refresh()); - btnSaveChanges = createButton(locale.buttonSaveChanges(), "git-compare-save-changes-btn", - event-> delegate.onSaveChangesClicked() ); - btnNextDiff = + btnSaveChanges = + createButton( + locale.buttonSaveChanges(), + "git-compare-save-changes-btn", + event -> delegate.onSaveChangesClicked()); + btnNextDiff = createButton( locale.buttonNextDiff(), "git-compare-next-diff-btn", event -> delegate.onNextDiffClicked()); - btnPrevDiff = + btnPrevDiff = createButton( locale.buttonPreviousDiff(), "git-compare-prev-diff-btn", @@ -105,15 +109,15 @@ public void setDelegate(ActionDelegate delegate) { this.delegate = delegate; } - @Override - protected void onClose() { - compare.getContent( content-> - delegate.onClose(content)); - } + @Override + protected void onClose() { + compare.getContent(content -> delegate.onClose(content)); + } - @Override + @Override public void getEditableContent(ContentConsumer contentConsumer) { - compare.getContent(contentConsumer::processContent);} + compare.getContent(contentConsumer::processContent); + } @Override public void setColumnTitles(String leftTitle, String rightTitle) { @@ -146,11 +150,12 @@ public void show(String oldContent, String newContent, String fileName, boolean compareConfig.setShowTitle(false); compareConfig.setShowLineStatus(false); - compare = new CompareWidget(compareConfig, themeAgent.getCurrentThemeId(), loaderFactory); - comparePanel.clear(); - comparePanel.add(compare); - } -@Override + compare = new CompareWidget(compareConfig, themeAgent.getCurrentThemeId(), loaderFactory); + comparePanel.clear(); + comparePanel.add(compare); + } + + @Override public void setEnableSaveChangesButton(boolean enabled) { btnSaveChanges.setEnabled(enabled); } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java index e7f41bce3a8..3f43bdd3283 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changeslist/ChangesListPresenter.java @@ -11,12 +11,9 @@ package org.eclipse.che.ide.ext.git.client.compare.changeslist; import static com.google.common.collect.Iterables.getFirst; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import com.google.inject.Inject; import com.google.inject.Singleton; -import java.util.Map; import org.eclipse.che.commons.annotation.Nullable; import org.eclipse.che.ide.api.data.tree.Node; import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; @@ -26,8 +23,6 @@ import org.eclipse.che.ide.ext.git.client.compare.changespanel.ChangesPanelView; import org.eclipse.che.ide.ui.smartTree.event.SelectionChangedEvent.SelectionChangedHandler; -import static com.google.common.collect.Iterables.getFirst; - /** * Presenter for displaying window with list of changed files. * @@ -37,40 +32,40 @@ */ @Singleton public class ChangesListPresenter implements ChangesListView.ActionDelegate { - private final ChangesListView view; - private final ChangesPanelPresenter changesPanelPresenter; - private final ComparePresenter comparePresenter; - - private AlteredFiles alteredFiles; - private String file; - private String revisionA; - private String revisionB; - - - @Inject - public ChangesListPresenter(ChangesListView view, - ComparePresenter comparePresenter, - - ChangesPanelPresenter changesPanelPresenter) { - this.comparePresenter = comparePresenter; - this.view = view; - - this.changesPanelPresenter = changesPanelPresenter; - this.changesPanelPresenter.setFileNodeDoubleClickHandler((path, status) -> this.onCompareClicked()); - this.view.setDelegate(this); - - SelectionChangedHandler handler = event -> { - Node node = getFirst(event.getSelection(), null); - if (node == null) { - return; - } - if (node instanceof ChangedFolderNode) { - ChangesListPresenter.this.view.setEnableCompareButton(false); - return; - } - ChangesListPresenter.this.view.setEnableCompareButton(true); - ChangesListPresenter.this.file = node.getName(); - + private final ChangesListView view; + private final ChangesPanelPresenter changesPanelPresenter; + private final ComparePresenter comparePresenter; + + private AlteredFiles alteredFiles; + private String file; + private String revisionA; + private String revisionB; + + @Inject + public ChangesListPresenter( + ChangesListView view, + ComparePresenter comparePresenter, + ChangesPanelPresenter changesPanelPresenter) { + this.comparePresenter = comparePresenter; + this.view = view; + + this.changesPanelPresenter = changesPanelPresenter; + this.changesPanelPresenter.setFileNodeDoubleClickHandler( + (path, status) -> this.onCompareClicked()); + this.view.setDelegate(this); + + SelectionChangedHandler handler = + event -> { + Node node = getFirst(event.getSelection(), null); + if (node == null) { + return; + } + if (node instanceof ChangedFolderNode) { + ChangesListPresenter.this.view.setEnableCompareButton(false); + return; + } + ChangesListPresenter.this.view.setEnableCompareButton(true); + ChangesListPresenter.this.file = node.getName(); }; ChangesPanelView changesPanelView = changesPanelPresenter.getView(); @@ -104,14 +99,13 @@ public void onCloseClicked() { view.close(); } - @Override - public void onCompareClicked() { - if (revisionB == null) { + @Override + public void onCompareClicked() { + if (revisionB == null) { - comparePresenter.showCompareWithLatest(alteredFiles,file, revisionA); - } - else { - comparePresenter.showCompareBetweenRevisions(alteredFiles,file, revisionA, revisionB); - } + comparePresenter.showCompareWithLatest(alteredFiles, file, revisionA); + } else { + comparePresenter.showCompareBetweenRevisions(alteredFiles, file, revisionA, revisionB); } + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java index 5df9ae0cd78..7409b373960 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelPresenter.java @@ -10,24 +10,15 @@ */ package org.eclipse.che.ide.ext.git.client.compare.changespanel; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import static org.eclipse.che.ide.ext.git.client.compare.changespanel.ViewMode.LIST; import static org.eclipse.che.ide.ext.git.client.compare.changespanel.ViewMode.TREE; import com.google.inject.Inject; - -import java.util.Map; -import org.eclipse.che.ide.api.app.AppContext; -import org.eclipse.che.ide.api.notification.NotificationManager; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; -import static org.eclipse.che.ide.ext.git.client.compare.changespanel.ViewMode.LIST; -import static org.eclipse.che.ide.ext.git.client.compare.changespanel.ViewMode.TREE; - /** * Presenter for displaying list of changed files. * @@ -36,28 +27,27 @@ */ public class ChangesPanelPresenter implements ChangesPanelView.ActionDelegate { - private static final String REVISION = "HEAD";private final ChangesPanelView view; - private final GitLocalizationConstant locale; + private static final String REVISION = "HEAD"; + private final ChangesPanelView view; + private final GitLocalizationConstant locale; private AlteredFiles changedFiles; private ViewMode viewMode; private FileNodeDoubleClickHandler fileNodeDoubleClickHandler; - @Inject - public ChangesPanelPresenter(GitLocalizationConstant locale, - ChangesPanelView view, + @Inject + public ChangesPanelPresenter( + GitLocalizationConstant locale, ChangesPanelView view, ComparePresenter comparePresenter) { - ComparePresenter comparePresenter) { - this.locale = locale; - this.view = view; - this.view.setDelegate(this); - this.viewMode = TREE; + this.locale = locale; + this.view = view; + this.view.setDelegate(this); + this.viewMode = TREE; - this.fileNodeDoubleClickHandler = - (path, status) -> - comparePresenter.showCompareWithLatest(changedFiles, path, REVISION); - } + this.fileNodeDoubleClickHandler = + (path, status) -> comparePresenter.showCompareWithLatest(changedFiles, path, REVISION); + } /** * Show panel with changed files. If empty map with changed files is received, all buttons would diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java index 56e4cd61468..54e42ab9432 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelView.java @@ -10,7 +10,6 @@ */ package org.eclipse.che.ide.ext.git.client.compare.changespanel; -import java.util.Map; import java.util.Set; import org.eclipse.che.ide.api.mvp.View; import org.eclipse.che.ide.ext.git.client.compare.AlteredFiles; @@ -21,8 +20,6 @@ import org.eclipse.che.ide.ui.smartTree.event.SelectionChangedEvent.SelectionChangedHandler; import org.eclipse.che.ide.ui.smartTree.presentation.PresentationRenderer; -import java.util.Set; - /** * The view of {@link ChangesPanelPresenter}. * diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java index d081c3561aa..97f0af42d9d 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/changespanel/ChangesPanelViewImpl.java @@ -101,17 +101,23 @@ public void addSelectionHandler(SelectionChangedHandler handler) { tree.getSelectionModel().addSelectionChangedHandler(handler); } - @Override - public void viewChangedFiles(AlteredFiles files, ViewMode viewMode) { - NodeStorage nodeStorage = tree.getNodeStorage(); - nodeStorage.clear(); - if (viewMode == TREE) { - getGroupedNodes(files.getChangedFilesMap()).forEach(nodeStorage::add); - tree.expandAll(); - } else { - files.getAlteredFilesList().forEach(file -> nodeStorage.add(new ChangedFileNode(file, files.getStatusByFilePath(file), nodesResources, delegate, false))); - } + @Override + public void viewChangedFiles(AlteredFiles files, ViewMode viewMode) { + NodeStorage nodeStorage = tree.getNodeStorage(); + nodeStorage.clear(); + if (viewMode == TREE) { + getGroupedNodes(files.getChangedFilesMap()).forEach(nodeStorage::add); + tree.expandAll(); + } else { + files + .getAlteredFilesList() + .forEach( + file -> + nodeStorage.add( + new ChangedFileNode( + file, files.getStatusByFilePath(file), nodesResources, delegate, false))); } + } @Override public void resetPanelState() { diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java index 3234b1ffafd..6ae7761fca2 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/revisionslist/RevisionListPresenter.java @@ -15,7 +15,6 @@ import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; import com.google.inject.Inject; @@ -23,7 +22,6 @@ import javax.validation.constraints.NotNull; import org.eclipse.che.api.core.ErrorCodes; import org.eclipse.che.api.git.shared.Revision; -import org.eclipse.che.ide.api.app.AppContext; import org.eclipse.che.ide.api.dialogs.DialogFactory; import org.eclipse.che.ide.api.git.GitServiceClient; import org.eclipse.che.ide.api.notification.NotificationManager; @@ -34,15 +32,6 @@ import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; import org.eclipse.che.ide.resource.Path; -import javax.validation.constraints.NotNull; - -import static com.google.common.base.Preconditions.checkState; -import static java.util.Collections.singletonList; -import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.NOT_EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; - /** * Presenter for displaying list of revisions for comparing selected with local changes. * @@ -51,32 +40,33 @@ */ @Singleton public class RevisionListPresenter implements RevisionListView.ActionDelegate { - private final ComparePresenter comparePresenter; - private final DialogFactory dialogFactory; - private final RevisionListView view; - private final GitServiceClient service; - private final GitLocalizationConstant locale; - private final NotificationManager notificationManager; + private final ComparePresenter comparePresenter; + private final DialogFactory dialogFactory; + private final RevisionListView view; + private final GitServiceClient service; + private final GitLocalizationConstant locale; + private final NotificationManager notificationManager; private Revision selectedRevision; private Project project; private Path selectedFilePath; - @Inject - public RevisionListPresenter(RevisionListView view, - ComparePresenter comparePresenter, - GitServiceClient service, - GitLocalizationConstant locale, - NotificationManager notificationManager, - DialogFactory dialogFactory) { + @Inject + public RevisionListPresenter( + RevisionListView view, + ComparePresenter comparePresenter, + GitServiceClient service, + GitLocalizationConstant locale, + NotificationManager notificationManager, + DialogFactory dialogFactory) { - this.view = view; - this.comparePresenter = comparePresenter; - this.dialogFactory = dialogFactory; - this.service = service; - this.locale = locale; + this.view = view; + this.comparePresenter = comparePresenter; + this.dialogFactory = dialogFactory; + this.service = service; + this.locale = locale; - this.notificationManager = notificationManager; + this.notificationManager = notificationManager; this.view.setDelegate(this); } @@ -153,28 +143,34 @@ private void getRevisions() { }); } - private void compare() { - service.diff(project.getLocation(), - singletonList(selectedFilePath.toString()), - NAME_STATUS, - false, - 0, - selectedRevision.getId(), - false) - .then(diff -> { - if (diff.isEmpty()) { - dialogFactory.createMessageDialog(locale.compareMessageIdenticalContentTitle(), - locale.compareMessageIdenticalContentText(), null).show(); - } else { - AlteredFiles alteredFiles = new AlteredFiles(project,diff); - comparePresenter.showCompareWithLatest( - alteredFiles, null, selectedRevision.getId()); - } - }) - - - .catchError(arg -> { - notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); - }); - } + private void compare() { + service + .diff( + project.getLocation(), + singletonList(selectedFilePath.toString()), + NAME_STATUS, + false, + 0, + selectedRevision.getId(), + false) + .then( + diff -> { + if (diff.isEmpty()) { + dialogFactory + .createMessageDialog( + locale.compareMessageIdenticalContentTitle(), + locale.compareMessageIdenticalContentText(), + null) + .show(); + } else { + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + comparePresenter.showCompareWithLatest( + alteredFiles, null, selectedRevision.getId()); + } + }) + .catchError( + arg -> { + notificationManager.notify(locale.diffFailed(), FAIL, NOT_EMERGE_MODE); + }); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java index 6e6909604fc..f3403066a04 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenter.java @@ -15,15 +15,12 @@ import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.defineStatus; import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; import com.google.inject.Inject; import com.google.inject.Singleton; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; -import java.util.Map; import javax.validation.constraints.NotNull; import org.eclipse.che.api.core.ErrorCodes; import org.eclipse.che.api.git.shared.Revision; @@ -38,17 +35,6 @@ import org.eclipse.che.ide.ext.git.client.compare.changeslist.ChangesListPresenter; import org.eclipse.che.ide.resource.Path; -import javax.validation.constraints.NotNull; -import java.util.ArrayList; -import java.util.List; - -import static java.util.Collections.singletonList; -import static org.eclipse.che.api.git.shared.Constants.DEFAULT_PAGE_SIZE; -import static org.eclipse.che.api.git.shared.DiffType.NAME_STATUS; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.util.ExceptionUtils.getErrorCode; - /** * Presenter for displaying list of revisions for comparing selected with local changes. * @@ -174,34 +160,42 @@ private void fetchRevisions() { }); } - private void compare() { - final String revisionA = revisions.indexOf(selectedRevision) + 1 == revisions.size() ? null - : revisions.get(revisions.indexOf(selectedRevision) + 1).getId(); - final String revisionB = selectedRevision.getId(); - service.diff(project.getLocation(), singletonList(selectedPath.toString()), - NAME_STATUS, - true, - 0, - revisionA, - revisionB) - .then(diff -> { - if (diff.isEmpty()) { - dialogFactory.createMessageDialog(locale.historyTitle(), locale.historyNothingToDisplay(), null).show(); - return; - } - AlteredFiles alteredFiles = new AlteredFiles(project, diff); - if (alteredFiles.getFilesQuantity() == 1) { - comparePresenter.showCompareBetweenRevisions( - alteredFiles, null, - revisionA, - revisionB); - } else { - - changesListPresenter.show(alteredFiles, revisionA, revisionB); - } - }) - .catchError(error -> { - notificationManager.notify(locale.diffFailed(), FAIL, EMERGE_MODE); - }); - } + private void compare() { + final String revisionA = + revisions.indexOf(selectedRevision) + 1 == revisions.size() + ? null + : revisions.get(revisions.indexOf(selectedRevision) + 1).getId(); + final String revisionB = selectedRevision.getId(); + service + .diff( + project.getLocation(), + singletonList(selectedPath.toString()), + NAME_STATUS, + true, + 0, + revisionA, + revisionB) + .then( + diff -> { + if (diff.isEmpty()) { + dialogFactory + .createMessageDialog( + locale.historyTitle(), locale.historyNothingToDisplay(), null) + .show(); + return; + } + AlteredFiles alteredFiles = new AlteredFiles(project, diff); + if (alteredFiles.getFilesQuantity() == 1) { + comparePresenter.showCompareBetweenRevisions( + alteredFiles, null, revisionA, revisionB); + } else { + + changesListPresenter.show(alteredFiles, revisionA, revisionB); + } + }) + .catchError( + error -> { + notificationManager.notify(locale.diffFailed(), FAIL, EMERGE_MODE); + }); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java index f4707fb2be9..ae37d6d2745 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/commit/CommitPresenterTest.java @@ -11,12 +11,9 @@ package org.eclipse.che.ide.ext.git.client.commit; import static java.util.Collections.singletonList; -import static java.util.Collections.singletonMap; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.FLOAT_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.SUCCESS; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.ADDED; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.MODIFIED; import static org.mockito.Matchers.any; import static org.mockito.Matchers.anyBoolean; import static org.mockito.Matchers.anyInt; @@ -51,22 +48,6 @@ import org.junit.Test; import org.mockito.Mock; -import static java.util.Collections.singletonList; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.FLOAT_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.SUCCESS; -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyBoolean; -import static org.mockito.Matchers.anyInt; -import static org.mockito.Matchers.anyList; -import static org.mockito.Matchers.anySet; -import static org.mockito.Matchers.anyString; -import static org.mockito.Matchers.eq; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.spy; -import static org.mockito.Mockito.verify; -import static org.mockito.Mockito.when; - /** * Testing {@link CommitPresenter} functionality. * @@ -165,16 +146,19 @@ public void shouldShowMessageWhenNothingToCommit() throws Exception { verify(dialog).show(); } - @Test - public void shouldShowDialog() throws Exception { - final String diff = "M\tfile"; - final AlteredFiles alteredFiles = new AlteredFiles(project, diff);ConfirmDialog dialog = mock(ConfirmDialog.class); - when(dialogFactory.createConfirmDialog(anyString(), - anyString(), - anyString(), - anyString(), - any(ConfirmCallback.class), - eq(null))).thenReturn(dialog); + @Test + public void shouldShowDialog() throws Exception { + final String diff = "M\tfile"; + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); + ConfirmDialog dialog = mock(ConfirmDialog.class); + when(dialogFactory.createConfirmDialog( + anyString(), + anyString(), + anyString(), + anyString(), + any(ConfirmCallback.class), + eq(null))) + .thenReturn(dialog); presenter.showDialog(project); verify(stringPromise).then(stringCaptor.capture()); @@ -192,15 +176,16 @@ public void shouldShowDialog() throws Exception { verify(view).setMarkedCheckBoxes(anySet()); } - @Test - public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { - final String diff = "A\tfile"; - final AlteredFiles alteredFiles = new AlteredFiles(project, diff);PromiseError error = mock(PromiseError.class); - ServerException exception = mock(ServerException.class); - when(exception.getErrorCode()).thenReturn(ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED); - when(error.getCause()).thenReturn(exception); - Status status = mock(Status.class); - when(status.getUntracked()).thenReturn(singletonList("file")); + @Test + public void shouldShowUntrackedFilesOnInitialCommit() throws Exception { + final String diff = "A\tfile"; + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); + PromiseError error = mock(PromiseError.class); + ServerException exception = mock(ServerException.class); + when(exception.getErrorCode()).thenReturn(ErrorCodes.INIT_COMMIT_WAS_NOT_PERFORMED); + when(error.getCause()).thenReturn(exception); + Status status = mock(Status.class); + when(status.getUntracked()).thenReturn(singletonList("file")); presenter.showDialog(project); verify(stringPromise).then(stringCaptor.capture()); diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java index f2516a7e2dc..1e9b96a01af 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/compare/AlteredFilesTest.java @@ -1,4 +1,4 @@ -/******************************************************************************* +/* * Copyright (c) 2012-2017 Red Hat, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -7,115 +7,106 @@ * * Contributors: * Red Hat, Inc. - initial API and implementation - *******************************************************************************/ + */ package org.eclipse.che.ide.ext.git.client.compare; +import static org.testng.Assert.assertEquals; +import static org.testng.Assert.assertTrue; + +import java.util.Arrays; import org.eclipse.che.ide.api.resources.Project; import org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status; -import org.junit.rules.ExpectedException; import org.mockito.Mock; import org.testng.annotations.BeforeClass; import org.testng.annotations.BeforeMethod; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; -import java.util.Arrays; - -import static org.testng.Assert.assertEquals; -import static org.testng.Assert.assertTrue; - -/** - * @author Mykola Morhun - */ +/** @author Mykola Morhun */ public class AlteredFilesTest { - private static final String[] FILES = {"Test1.java", "Test2.java", "Test3.java", "/dir/Test4.java"}; - private static final String[] STATUSES_STRINGS = {"A", "M", "D", "M"}; - private static final Status[] STATUSES = Arrays.stream(STATUSES_STRINGS).map(FileStatus::defineStatus).toArray(Status[]::new); - private static final int FILES_LEN = FILES.length; - - private static String diff; + private static final String[] FILES = { + "Test1.java", "Test2.java", "Test3.java", "/dir/Test4.java" + }; + private static final String[] STATUSES_STRINGS = {"A", "M", "D", "M"}; + private static final Status[] STATUSES = + Arrays.stream(STATUSES_STRINGS).map(FileStatus::defineStatus).toArray(Status[]::new); + private static final int FILES_LEN = FILES.length; - @Mock - private Project project; + private static String diff; - private AlteredFiles alteredFiles; + @Mock private Project project; - @BeforeClass - public void setupClass() { - StringBuilder diffBuilder = new StringBuilder(); + private AlteredFiles alteredFiles; - for (int i = 0; i < FILES_LEN; i++) { - diffBuilder.append(STATUSES_STRINGS[i]) - .append("\t") - .append(FILES[i]) - .append("\n"); - } - diffBuilder.setLength(diffBuilder.length() - 1); + @BeforeClass + public void setupClass() { + StringBuilder diffBuilder = new StringBuilder(); - diff = diffBuilder.toString(); + for (int i = 0; i < FILES_LEN; i++) { + diffBuilder.append(STATUSES_STRINGS[i]).append("\t").append(FILES[i]).append("\n"); } + diffBuilder.setLength(diffBuilder.length() - 1); - @BeforeMethod - public void setup() { - alteredFiles = null; - } + diff = diffBuilder.toString(); + } - @Test - public void shouldBeAbleToCreateAlteredFilesList() { - alteredFiles = new AlteredFiles(project, diff); + @BeforeMethod + public void setup() { + alteredFiles = null; + } - assertEquals(alteredFiles.getFilesQuantity(), FILES_LEN); - assertEquals(alteredFiles.getProject(), project); - } + @Test + public void shouldBeAbleToCreateAlteredFilesList() { + alteredFiles = new AlteredFiles(project, diff); - @Test - public void shouldBeAbleToCreateEmptyFilesList() { - alteredFiles = new AlteredFiles(project, ""); + assertEquals(alteredFiles.getFilesQuantity(), FILES_LEN); + assertEquals(alteredFiles.getProject(), project); + } - assertTrue(alteredFiles.isEmpty()); - assertEquals(alteredFiles.getFilesQuantity(), 0); - } - - @Test - public void shouldBeAbleToGetFileByIndex() { - alteredFiles = new AlteredFiles(project, diff); + @Test + public void shouldBeAbleToCreateEmptyFilesList() { + alteredFiles = new AlteredFiles(project, ""); - for (int i = 0; i < FILES_LEN; i++) { - assertEquals(alteredFiles.getFileByIndex(i), FILES[i]); - } - } + assertTrue(alteredFiles.isEmpty()); + assertEquals(alteredFiles.getFilesQuantity(), 0); + } - @Test - public void shouldBeAbleToGetStatusByIndex() { - alteredFiles = new AlteredFiles(project, diff); + @Test + public void shouldBeAbleToGetFileByIndex() { + alteredFiles = new AlteredFiles(project, diff); - for (int i = 0; i < FILES_LEN; i++) { - assertEquals(alteredFiles.getStatusByIndex(i), STATUSES[i]); - } + for (int i = 0; i < FILES_LEN; i++) { + assertEquals(alteredFiles.getFileByIndex(i), FILES[i]); } + } - @Test - public void shouldBeAbleToGetStatusByFile() { - alteredFiles = new AlteredFiles(project, diff); + @Test + public void shouldBeAbleToGetStatusByIndex() { + alteredFiles = new AlteredFiles(project, diff); - for (int i = 0; i < FILES_LEN; i++) { - assertEquals(alteredFiles.getStatusByFilePath(FILES[i]), STATUSES[i]); - } + for (int i = 0; i < FILES_LEN; i++) { + assertEquals(alteredFiles.getStatusByIndex(i), STATUSES[i]); } + } - @Test(expectedExceptions = IllegalArgumentException.class, dataProvider = "invalidDiffFileData") - public void shouldThrowIllegalArgumentExceptionIfDiffFileDescriptionIsInvalid(String invalidDiffFileData) { - alteredFiles = new AlteredFiles(project, diff + '\n' + invalidDiffFileData); - } + @Test + public void shouldBeAbleToGetStatusByFile() { + alteredFiles = new AlteredFiles(project, diff); - @DataProvider(name = "invalidDiffFileData") - private Object[][] getInvalidDiffFileData() { - return new Object[][] { - {"M "}, - {"M_Test.java"}, - {"Test.java"}, - {" "} - }; + for (int i = 0; i < FILES_LEN; i++) { + assertEquals(alteredFiles.getStatusByFilePath(FILES[i]), STATUSES[i]); } + } + + @Test(expectedExceptions = IllegalArgumentException.class, dataProvider = "invalidDiffFileData") + public void shouldThrowIllegalArgumentExceptionIfDiffFileDescriptionIsInvalid( + String invalidDiffFileData) { + alteredFiles = new AlteredFiles(project, diff + '\n' + invalidDiffFileData); + } + + @DataProvider(name = "invalidDiffFileData") + private Object[][] getInvalidDiffFileData() { + return new Object[][] {{"M "}, {"M_Test.java"}, {"Test.java"}, {" "}}; + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java index 34d2a2dc165..ee865813692 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/test/java/org/eclipse/che/ide/ext/git/client/history/HistoryPresenterTest.java @@ -13,13 +13,11 @@ import static java.util.Collections.singletonList; import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.EMERGE_MODE; import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.ext.git.client.compare.FileStatus.Status.MODIFIED; import static org.eclipse.che.ide.resource.Path.EMPTY; import static org.mockito.Matchers.any; import static org.mockito.Matchers.anyBoolean; import static org.mockito.Matchers.anyInt; import static org.mockito.Matchers.anyList; -import static org.mockito.Matchers.anyMap; import static org.mockito.Matchers.anyString; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.mock; @@ -47,23 +45,6 @@ import org.mockito.InjectMocks; import org.mockito.Mock; -import java.util.ArrayList; -import java.util.List; - -import static java.util.Collections.singletonList; -import static org.eclipse.che.ide.api.notification.StatusNotification.DisplayMode.EMERGE_MODE; -import static org.eclipse.che.ide.api.notification.StatusNotification.Status.FAIL; -import static org.eclipse.che.ide.resource.Path.EMPTY; -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyBoolean; -import static org.mockito.Matchers.anyInt; -import static org.mockito.Matchers.anyList; -import static org.mockito.Matchers.anyString; -import static org.mockito.Matchers.eq; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.verify; -import static org.mockito.Mockito.when; - public class HistoryPresenterTest extends BaseTest { @Mock private HistoryView view; @@ -146,18 +127,19 @@ public void shouldShowNotificationOnGetLogError() throws Exception { verify(notificationManager).notify(eq("error"), eq(FAIL), eq(EMERGE_MODE)); } - @Test - public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Exception { - final String diff = "M\tfile"; - final AlteredFiles alteredFiles = new AlteredFiles(project, diff);Revision parentRevision = mock(Revision.class); - Revision selectedRevision = mock(Revision.class); - when(parentRevision.getId()).thenReturn("commitA"); - when(selectedRevision.getId()).thenReturn("commitB"); - LogResponse logResponse = mock(LogResponse.class); - List revisions = new ArrayList<>(); - revisions.add(selectedRevision); - revisions.add(parentRevision); - when(logResponse.getCommits()).thenReturn(revisions); + @Test + public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Exception { + final String diff = "M\tfile"; + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); + Revision parentRevision = mock(Revision.class); + Revision selectedRevision = mock(Revision.class); + when(parentRevision.getId()).thenReturn("commitA"); + when(selectedRevision.getId()).thenReturn("commitB"); + LogResponse logResponse = mock(LogResponse.class); + List revisions = new ArrayList<>(); + revisions.add(selectedRevision); + revisions.add(parentRevision); + when(logResponse.getCommits()).thenReturn(revisions); presenter.show(); presenter.onRevisionSelected(selectedRevision); @@ -168,22 +150,22 @@ public void shouldShowCompareWhenOneFileChangedInCurrentRevision() throws Except stringCaptor.getValue().apply(diff); verify(comparePresenter) - .showCompareBetweenRevisions( - eq(alteredFiles), anyString(), eq("commitA"), eq("commitB")); + .showCompareBetweenRevisions(eq(alteredFiles), anyString(), eq("commitA"), eq("commitB")); } - @Test - public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() throws Exception { - final String diff = "M\tfile1\nM\tfile2"; - final AlteredFiles alteredFiles = new AlteredFiles(project, diff);Revision revisionA = mock(Revision.class); - Revision revisionB = mock(Revision.class); - when(revisionA.getId()).thenReturn("commitA"); - when(revisionB.getId()).thenReturn("commitB"); - LogResponse logResponse = mock(LogResponse.class); - List revisions = new ArrayList<>(); - revisions.add(revisionA); - revisions.add(revisionB); - when(logResponse.getCommits()).thenReturn(revisions); + @Test + public void shouldShowChangedListWhenSeveralFilesChangedInSelectedRevision() throws Exception { + final String diff = "M\tfile1\nM\tfile2"; + final AlteredFiles alteredFiles = new AlteredFiles(project, diff); + Revision revisionA = mock(Revision.class); + Revision revisionB = mock(Revision.class); + when(revisionA.getId()).thenReturn("commitA"); + when(revisionB.getId()).thenReturn("commitB"); + LogResponse logResponse = mock(LogResponse.class); + List revisions = new ArrayList<>(); + revisions.add(revisionA); + revisions.add(revisionB); + when(logResponse.getCommits()).thenReturn(revisions); presenter.show(); presenter.onRevisionSelected(revisionA); From cd6f922c1ad5fabf4181462deebd94c6b734511a Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 23 Aug 2017 10:53:16 +0300 Subject: [PATCH 25/33] Add ability to align a button left --- .../org/eclipse/che/ide/api/ui/style.css | 2 +- .../che/ide/ui/button/ButtonAlignment.java | 21 +++++++++++++++ .../org/eclipse/che/ide/ui/window/Window.java | 26 +++++++++++++++++++ .../org/eclipse/che/ide/ui/window/Window.css | 13 +++++++--- .../git/client/compare/CompareViewImpl.java | 10 ++++--- 5 files changed, 65 insertions(+), 7 deletions(-) create mode 100644 ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ButtonAlignment.java diff --git a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/ui/style.css b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/ui/style.css index eacd84f4b86..a240ef23a58 100644 --- a/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/ui/style.css +++ b/ide/che-core-ide-api/src/main/resources/org/eclipse/che/ide/api/ui/style.css @@ -167,7 +167,7 @@ @def dividerThickness 1px; @def popupPadding 24px; @def titlePaddingBottom 16px; -@def buttonSpacing 18px; +@def buttonSideSpacing 9px; @def labelPaddingBottom 6px; @def examplePaddingTop 4px; @def formButtonPaddingTop 18px; diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ButtonAlignment.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ButtonAlignment.java new file mode 100644 index 00000000000..381482b8640 --- /dev/null +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/button/ButtonAlignment.java @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + */ +package org.eclipse.che.ide.ui.button; + +/** + * Describes button alignment in a horizontal container. + * + * @author Mykola Morhun + */ +public enum ButtonAlignment { + LEFT, + RIGHT +} diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java index 0d39c08ad49..408a4b48be7 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java @@ -28,6 +28,7 @@ import com.google.gwt.user.client.ui.Widget; import elemental.js.dom.JsElement; import org.eclipse.che.commons.annotation.Nullable; +import org.eclipse.che.ide.ui.button.ButtonAlignment; import org.vectomatic.dom.svg.ui.SVGResource; /** @@ -154,11 +155,16 @@ public void setHideOnEscapeEnabled(boolean isEnabled) { } protected Button createButton(String title, String debugId, ClickHandler clickHandler) { + return createButton(title, debugId, clickHandler, ButtonAlignment.RIGHT); + } + + protected Button createButton(String title, String debugId, ClickHandler clickHandler, ButtonAlignment alignment) { Button button = new Button(); button.setText(title); button.ensureDebugId(debugId); button.getElement().setId(debugId); button.addStyleName(resources.windowCss().button()); + addButtonAlignment(button, alignment); button.addClickHandler(clickHandler); //set default tab index button.setTabIndex(0); @@ -166,8 +172,13 @@ protected Button createButton(String title, String debugId, ClickHandler clickHa } protected Button createPrimaryButton(String title, String debugId, ClickHandler clickHandler) { + return createPrimaryButton(title, debugId, clickHandler, ButtonAlignment.RIGHT); + } + + protected Button createPrimaryButton(String title, String debugId, ClickHandler clickHandler, ButtonAlignment alignment) { Button button = createButton(title, debugId, clickHandler); button.addStyleName(resources.windowCss().primaryButton()); + addButtonAlignment(button, alignment); //set default tab index button.setTabIndex(0); return button; @@ -243,6 +254,17 @@ public void execute() { } } + private void addButtonAlignment(Button button, ButtonAlignment alignment) { + switch (alignment) { + case LEFT: + button.addStyleName(resources.windowCss().buttonAlignLeft()); + break; + case RIGHT: + button.addStyleName(resources.windowCss().buttonAlignRight()); + break; + } + } + /** * Sets focus on the given element. If {@code elementToFocus} is {@code null}, no element will be * given focus @@ -343,6 +365,10 @@ public interface Css extends CssResource { String button(); + String buttonAlignLeft(); + + String buttonAlignRight(); + String image(); } diff --git a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/Window.css b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/Window.css index d2d4b75aeff..fcf8476a12e 100644 --- a/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/Window.css +++ b/ide/che-core-ide-ui/src/main/resources/org/eclipse/che/ide/ui/window/Window.css @@ -113,8 +113,8 @@ } .alignBtn { - float: right; - margin-left: buttonSpacing; + margin-left: buttonSideSpacing; + margin-right: buttonSideSpacing; } .headerTitleWrapper { @@ -151,7 +151,6 @@ } .button, .primaryButton { - float: right; height: buttonHeight; line-height: buttonLineHeight; min-width: buttonMinWidth; @@ -194,6 +193,14 @@ opacity: 0.5; } +.buttonAlignLeft { + float: left; +} + +.buttonAlignRight { + float: right; +} + /* Blue button styles */ .primaryButton { background: primaryButtonBackground; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index c4721082709..339c5fc2474 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -27,6 +27,7 @@ import org.eclipse.che.ide.orion.compare.CompareFactory; import org.eclipse.che.ide.orion.compare.CompareWidget; import org.eclipse.che.ide.orion.compare.FileOptions; +import org.eclipse.che.ide.ui.button.ButtonAlignment; import org.eclipse.che.ide.ui.loaders.request.LoaderFactory; import org.eclipse.che.ide.ui.window.Window; @@ -88,18 +89,21 @@ public CompareViewImpl( createButton( locale.buttonNextDiff(), "git-compare-next-diff-btn", - event -> delegate.onNextDiffClicked()); + event -> delegate.onNextDiffClicked(), + ButtonAlignment.LEFT); btnPrevDiff = createButton( locale.buttonPreviousDiff(), "git-compare-prev-diff-btn", - event -> delegate.onPreviousDiffClicked()); + event -> delegate.onPreviousDiffClicked(), + ButtonAlignment.LEFT); addButtonToFooter(closeButton); addButtonToFooter(refreshButton); addButtonToFooter(btnSaveChanges); - addButtonToFooter(btnNextDiff); + addButtonToFooter(btnPrevDiff); + addButtonToFooter(btnNextDiff); comparePanel.getElement().setId(Document.get().createUniqueId()); } From 89ad74e80742f9819f174e49a40a75f243f0edea Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 23 Aug 2017 11:20:11 +0300 Subject: [PATCH 26/33] CHE-5892: Add current diff number in the widget title --- .../ext/git/client/compare/ComparePresenter.java | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 586f48f6a1c..8b41fa0e86f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -171,7 +171,7 @@ private void showCompareWithLatestForFile( .showFileContent(gitDirLocation, relPath, revision) .then( content -> { - view.setTitle(relPath.toString()); + view.setTitle(getTitleForFile(relPath.toString())); view.setColumnTitles( locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); view.show(content.getContent(), "", relPath.toString(), true); @@ -196,7 +196,7 @@ private void showCompareWithLatestForFile( private void showCompareBetweenRevisionsForFile( final Path gitDir, final Path relPath, final Status status) { - view.setTitle(relPath.toString()); + view.setTitle(getTitleForFile(relPath.toString())); if (status == Status.ADDED) { service @@ -323,7 +323,7 @@ private void showCompare(final String remoteContent) { local -> { localContent = local; final String path = comparedFile.getLocation().removeFirstSegments(1).toString(); - view.setTitle(path); + view.setTitle(getTitleForFile(path)); view.setColumnTitles( locale.compareYourVersionTitle(), revision + locale.compareReadOnlyTitle()); view.show(remoteContent, localContent, path, false); @@ -377,4 +377,14 @@ private void saveContent(final String content) { notificationManager.notify(error.getMessage(), FAIL, NOT_EMERGE_MODE); }); } + + private String getTitleForFile(String file) { + return "Review diff in: " + + file + + " (" + + (currentFileIndex + 1) + + '/' + + alteredFiles.getFilesQuantity() + + ')'; + } } From 65204e095bcdb2e11c0a788126b07bf403ac76d7 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 23 Aug 2017 11:24:39 +0300 Subject: [PATCH 27/33] CHE-5892: Fix formatting --- .../src/main/java/org/eclipse/che/ide/ui/window/Window.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java index 408a4b48be7..dddbc7ff2aa 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java @@ -158,7 +158,8 @@ protected Button createButton(String title, String debugId, ClickHandler clickHa return createButton(title, debugId, clickHandler, ButtonAlignment.RIGHT); } - protected Button createButton(String title, String debugId, ClickHandler clickHandler, ButtonAlignment alignment) { + protected Button createButton( + String title, String debugId, ClickHandler clickHandler, ButtonAlignment alignment) { Button button = new Button(); button.setText(title); button.ensureDebugId(debugId); @@ -175,7 +176,8 @@ protected Button createPrimaryButton(String title, String debugId, ClickHandler return createPrimaryButton(title, debugId, clickHandler, ButtonAlignment.RIGHT); } - protected Button createPrimaryButton(String title, String debugId, ClickHandler clickHandler, ButtonAlignment alignment) { + protected Button createPrimaryButton( + String title, String debugId, ClickHandler clickHandler, ButtonAlignment alignment) { Button button = createButton(title, debugId, clickHandler); button.addStyleName(resources.windowCss().primaryButton()); addButtonAlignment(button, alignment); From bea914d7aec893d51f337be3a89b01487b51ccf5 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 6 Sep 2017 13:28:05 +0300 Subject: [PATCH 28/33] Draft. Move git diff widget from iframe to IDE Signed-off-by: Mykola Morhun --- .../che/ide/ext/git/client/GitExtension.java | 17 +++ .../ext/git/client/action/NextDiffAction.java | 36 ++++++ .../git/client/action/PreviousDiffAction.java | 37 ++++++ .../client/compare/CompareInitializer.java | 45 +++++++ .../git/client/compare/ComparePresenter.java | 44 +++---- .../ext/git/client/compare/CompareView.java | 17 ++- .../git/client/compare/CompareViewImpl.java | 111 +++++++++++++----- .../git/client/compare/CompareViewImpl.ui.xml | 13 +- .../git/client/compare/GitCompareOverlay.java | 42 +++++++ .../org/eclipse/che/ide/ext/git/Git.gwt.xml | 3 +- .../che/ide/orion/compare/CompareWidget.java | 2 + 11 files changed, 301 insertions(+), 66 deletions(-) create mode 100644 plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/NextDiffAction.java create mode 100644 plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PreviousDiffAction.java create mode 100644 plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java create mode 100644 plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitExtension.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitExtension.java index 2fdb7c92591..ad28491898e 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitExtension.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/GitExtension.java @@ -33,6 +33,8 @@ import org.eclipse.che.ide.ext.git.client.action.FetchAction; import org.eclipse.che.ide.ext.git.client.action.HistoryAction; import org.eclipse.che.ide.ext.git.client.action.InitRepositoryAction; +import org.eclipse.che.ide.ext.git.client.action.NextDiffAction; +import org.eclipse.che.ide.ext.git.client.action.PreviousDiffAction; import org.eclipse.che.ide.ext.git.client.action.PullAction; import org.eclipse.che.ide.ext.git.client.action.PushAction; import org.eclipse.che.ide.ext.git.client.action.RemoveFromIndexAction; @@ -57,6 +59,9 @@ public class GitExtension { public static final String HISTORY_GROUP_MAIN_MENU = "GitHistoryGroup"; public static final String GIT_COMPARE_WITH_LATEST = "gitCompareWithLatest"; + public static final String NEXT_DIFF_ACTION_ID = "nextDiff"; + public static final String PREV_DIFF_ACTION_ID = "prevDiff"; + @Inject public GitExtension( GitResources resources, @@ -81,6 +86,8 @@ public GitExtension( CompareWithLatestAction compareWithLatestAction, CompareWithBranchAction compareWithBranchAction, CompareWithRevisionAction compareWithRevisionAction, + NextDiffAction nextDiffAction, + PreviousDiffAction previousDiffAction, KeyBindingAgent keyBinding, AppContext appContext) { @@ -180,8 +187,18 @@ public GitExtension( editorContextMenuGroup.addSeparator(); editorContextMenuGroup.add(gitContextMenuGroup); + actionManager.registerAction(NEXT_DIFF_ACTION_ID, nextDiffAction); + actionManager.registerAction(PREV_DIFF_ACTION_ID, previousDiffAction); + keyBinding .getGlobal() .addKey(new KeyBuilder().action().alt().charCode('d').build(), GIT_COMPARE_WITH_LATEST); + + keyBinding + .getGlobal() + .addKey(new KeyBuilder().alt().charCode('.').build(), NEXT_DIFF_ACTION_ID); + keyBinding + .getGlobal() + .addKey(new KeyBuilder().alt().charCode(',').build(), PREV_DIFF_ACTION_ID); } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/NextDiffAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/NextDiffAction.java new file mode 100644 index 00000000000..a5e088f813d --- /dev/null +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/NextDiffAction.java @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + */ +package org.eclipse.che.ide.ext.git.client.action; + +import com.google.inject.Inject; +import com.google.inject.Singleton; +import org.eclipse.che.ide.api.action.Action; +import org.eclipse.che.ide.api.action.ActionEvent; +import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; + +/** @author Mykola Morhun */ +@Singleton +public class NextDiffAction extends Action { + + private final ComparePresenter comparePresenter; + + @Inject + public NextDiffAction(ComparePresenter comparePresenter) { + this.comparePresenter = comparePresenter; + } + + @Override + public void actionPerformed(ActionEvent e) { + if (comparePresenter.isShown()) { + comparePresenter.onNextDiffClicked(); + } + } +} diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PreviousDiffAction.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PreviousDiffAction.java new file mode 100644 index 00000000000..4994373cec3 --- /dev/null +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/action/PreviousDiffAction.java @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + */ +package org.eclipse.che.ide.ext.git.client.action; + +import com.google.inject.Inject; +import com.google.inject.Singleton; +import org.eclipse.che.ide.api.action.Action; +import org.eclipse.che.ide.api.action.ActionEvent; +import org.eclipse.che.ide.ext.git.client.compare.ComparePresenter; + +/** @author Mykola Morhun */ +@Singleton +public class PreviousDiffAction extends Action { + + private final ComparePresenter comparePresenter; + + @Inject + public PreviousDiffAction(ComparePresenter comparePresenter) { + super(null, null); + this.comparePresenter = comparePresenter; + } + + @Override + public void actionPerformed(ActionEvent e) { + if (comparePresenter.isShown()) { + comparePresenter.onPreviousDiffClicked(); + } + } +} diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java new file mode 100644 index 00000000000..87221f7dc44 --- /dev/null +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java @@ -0,0 +1,45 @@ +package org.eclipse.che.ide.ext.git.client.compare; + +import com.google.gwt.core.client.Callback; +import com.google.gwt.core.client.JavaScriptObject; +import com.google.gwt.user.client.rpc.AsyncCallback; +import com.google.inject.Inject; +import com.google.inject.Singleton; +import org.eclipse.che.api.promises.client.Promise; +import org.eclipse.che.api.promises.client.callback.AsyncPromiseHelper; +import org.eclipse.che.requirejs.RequireJsLoader; + +/** + * @author Mykola Morhun + */ +@Singleton +public class CompareInitializer { + + public static final String GIT_COMPARE_MODULE = "Compare"; + + private final RequireJsLoader requireJsLoader; + + @Inject + CompareInitializer(final RequireJsLoader requireJsLoader) { + this.requireJsLoader = requireJsLoader; + } + + public Promise injectCompareWidget(final AsyncCallback callback) { + return AsyncPromiseHelper.createFromAsyncRequest( + call -> requireJsLoader.require( + new Callback() { + @Override + public void onFailure(Throwable reason) { + callback.onFailure(reason); + } + + @Override + public void onSuccess(JavaScriptObject[] result) { + callback.onSuccess(null); + } + }, + new String[]{"built-compare/built-compare-amd.min"}, + new String[]{GIT_COMPARE_MODULE})); + } + +} diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 8b41fa0e86f..9d008886a6f 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -75,6 +75,10 @@ public ComparePresenter( this.view.setDelegate(this); } + public boolean isShown() { + return view.isVisible(); + } + /** * Show compare window for given set of files between given revision and HEAD. * @@ -253,7 +257,9 @@ private void showCompareBetweenRevisionsForFile( } @Override - public void onClose(final String newContent) { + public void onClose() { + final String newContent = view.getEditableContent(); + if (!isSaveNeeded(newContent)) { view.hide(); return; @@ -281,39 +287,27 @@ public void onClose(final String newContent) { @Override public void onSaveChangesClicked() { if (compareWithLatest) { - view.getEditableContent( - content -> { - if (isSaveNeeded(content)) { - saveContent(content); - } - }); + final String content = view.getEditableContent(); + if (isSaveNeeded(content)) { + saveContent(content); + } } } @Override public void onNextDiffClicked() { - view.getEditableContent( - content -> { - if (isSaveNeeded(content)) { - saveContent(content); - } - - currentFileIndex++; - showCompareForCurrentFile(); - }); + onSaveChangesClicked(); + + currentFileIndex++; + showCompareForCurrentFile(); } @Override public void onPreviousDiffClicked() { - view.getEditableContent( - content -> { - if (isSaveNeeded(content)) { - saveContent(content); - } - - currentFileIndex--; - showCompareForCurrentFile(); - }); + onSaveChangesClicked(); + + currentFileIndex--; + showCompareForCurrentFile(); } private void showCompare(final String remoteContent) { diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java index 0b71a202c50..2bff5ac6dbf 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareView.java @@ -22,12 +22,8 @@ interface CompareView extends View { interface ActionDelegate { - /** - * Performs some actions in response to user's closing the window. - * - * @param newContent new content of compare widget - */ - void onClose(String newContent); + /** Performs some actions in response to user's closing the window. */ + void onClose(); /** Performs save of editable panel in diff dialog. Does nothing if content isn't editable. */ void onSaveChangesClicked(); @@ -39,11 +35,9 @@ interface ActionDelegate { void onPreviousDiffClicked(); } - interface ContentConsumer { - void processContent(String content); - } + /** Returns content of editable part of the widget */ + String getEditableContent(); - void getEditableContent(ContentConsumer contentConsumer); /** * Set a title for the window. * @@ -62,6 +56,9 @@ interface ContentConsumer { /** Hide compare window. */ void hide(); + /** Shows whether widget is opened */ + boolean isVisible(); + /** * Show compare window with specified contents. * diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index 339c5fc2474..b9ee5836466 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -10,10 +10,17 @@ */ package org.eclipse.che.ide.ext.git.client.compare; +import static org.eclipse.che.ide.ext.git.client.compare.CompareInitializer.GIT_COMPARE_MODULE; +import static org.eclipse.che.ide.theme.DarkTheme.DARK_THEME_ID; +import static org.eclipse.che.ide.theme.LightTheme.LIGHT_THEME_ID; + import com.google.gwt.core.client.GWT; +import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.dom.client.Document; +import com.google.gwt.dom.client.Element; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; +import com.google.gwt.user.client.rpc.AsyncCallback; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.DockLayoutPanel; import com.google.gwt.user.client.ui.Label; @@ -25,11 +32,10 @@ import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.orion.compare.CompareConfig; import org.eclipse.che.ide.orion.compare.CompareFactory; -import org.eclipse.che.ide.orion.compare.CompareWidget; import org.eclipse.che.ide.orion.compare.FileOptions; import org.eclipse.che.ide.ui.button.ButtonAlignment; -import org.eclipse.che.ide.ui.loaders.request.LoaderFactory; import org.eclipse.che.ide.ui.window.Window; +import org.eclipse.che.requirejs.ModuleHolder; /** * Implementation of {@link CompareView}. @@ -55,30 +61,36 @@ interface PreviewViewImplUiBinder extends UiBinder {} private final Button btnSaveChanges; private final Button btnNextDiff; private final Button btnPrevDiff; - private ActionDelegate delegate; - private ThemeAgent themeAgent; - private CompareWidget compare; + private final ModuleHolder moduleHolder; + private final CompareInitializer compareInitializer; private final CompareFactory compareFactory; - private final LoaderFactory loaderFactory; + + private ActionDelegate delegate; + private ThemeAgent themeAgent; + private boolean themeLoaded; + private GitCompareOverlay compareWidget; + private boolean visible; @Inject public CompareViewImpl( CompareFactory compareFactory, GitLocalizationConstant locale, - LoaderFactory loaderFactory, - ThemeAgent themeAgent) { + ThemeAgent themeAgent, + CompareInitializer compareInitializer, + ModuleHolder moduleHolder) { this.compareFactory = compareFactory; this.locale = locale; - this.loaderFactory = loaderFactory; this.themeAgent = themeAgent; + this.compareInitializer = compareInitializer; + this.moduleHolder = moduleHolder; setWidget(UI_BINDER.createAndBindUi(this)); Button closeButton = createButton(locale.buttonClose(), "git-compare-close-btn", event -> onClose()); Button refreshButton = - createButton(locale.buttonRefresh(), "git-compare-refresh-btn", event -> compare.refresh()); + createButton(locale.buttonRefresh(), "git-compare-refresh-btn", event -> compareWidget.refresh()); btnSaveChanges = createButton( @@ -115,12 +127,13 @@ public void setDelegate(ActionDelegate delegate) { @Override protected void onClose() { - compare.getContent(content -> delegate.onClose(content)); + visible = false; + delegate.onClose(); } @Override - public void getEditableContent(ContentConsumer contentConsumer) { - compare.getContent(contentConsumer::processContent); + public String getEditableContent() { + return compareWidget.getContent(); } @Override @@ -129,34 +142,54 @@ public void setColumnTitles(String leftTitle, String rightTitle) { this.rightTitle.setText(rightTitle); } + @Override + public boolean isVisible() { + return visible; + } + @Override public void show(String oldContent, String newContent, String fileName, boolean readOnly) { + if (!themeLoaded) { + loadCompareTheme(); + themeLoaded = true; + } + dockPanel.setSize( String.valueOf((com.google.gwt.user.client.Window.getClientWidth() / 100) * 95) + "px", String.valueOf((com.google.gwt.user.client.Window.getClientHeight() / 100) * 90) + "px"); super.show(); + visible = true; + + compareInitializer.injectCompareWidget( + new AsyncCallback() { + @Override + public void onSuccess(Void result) { + JavaScriptObject gitCompare = moduleHolder.getModule(GIT_COMPARE_MODULE); - FileOptions newFile = compareFactory.createFieOptions(); - newFile.setReadOnly(readOnly); + FileOptions newFile = compareFactory.createFieOptions(); + newFile.setReadOnly(readOnly); - FileOptions oldFile = compareFactory.createFieOptions(); - oldFile.setReadOnly(true); + FileOptions oldFile = compareFactory.createFieOptions(); + oldFile.setReadOnly(true); - newFile.setContent(newContent); - newFile.setName(fileName); - oldFile.setContent(oldContent); - oldFile.setName(fileName); + newFile.setContent(newContent); + newFile.setName(fileName); + oldFile.setContent(oldContent); + oldFile.setName(fileName); - CompareConfig compareConfig = compareFactory.createCompareConfig(); - compareConfig.setNewFile(newFile); - compareConfig.setOldFile(oldFile); - compareConfig.setShowTitle(false); - compareConfig.setShowLineStatus(false); + CompareConfig compareConfig = compareFactory.createCompareConfig(); + compareConfig.setNewFile(newFile); + compareConfig.setOldFile(oldFile); + compareConfig.setShowTitle(false); + compareConfig.setShowLineStatus(false); - compare = new CompareWidget(compareConfig, themeAgent.getCurrentThemeId(), loaderFactory); - comparePanel.clear(); - comparePanel.add(compare); + compareWidget = GitCompareOverlay.create(gitCompare, compareConfig); + } + + @Override + public void onFailure(Throwable caught) { } + }); } @Override @@ -173,4 +206,24 @@ public void setEnableNextDiffButton(boolean enabled) { public void setEnablePreviousDiffButton(boolean enabled) { btnPrevDiff.setEnabled(enabled); } + + /** + * Dynamically loads theme for compare widget. + * This is done here to not to load big css when user doesn't need it. + */ + private void loadCompareTheme() { + String themeUrl = GWT.getModuleBaseURL(); + switch (themeAgent.getCurrentThemeId()) { + case LIGHT_THEME_ID: + themeUrl += "/built-compare-codenvy.css"; + case DARK_THEME_ID: + default: + themeUrl += "/built-compare-dark-codenvy.css"; + } + + Element styleSheetLink = Document.get().createElement("link"); + styleSheetLink.setAttribute("rel", "stylesheet"); + styleSheetLink.setAttribute("href", themeUrl); + Document.get().getElementsByTagName("head").getItem(0).appendChild(styleSheetLink); + } } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.ui.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.ui.xml index 51a6d16979d..4bc2d3d1297 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.ui.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.ui.xml @@ -13,6 +13,15 @@ + + .compareContainer { + position: absolute; + bottom: 0; + width: 100%; + height: 100%; + overflow-y: auto; + } + @@ -26,7 +35,9 @@ - + + + diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java new file mode 100644 index 00000000000..d9784e74e35 --- /dev/null +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java @@ -0,0 +1,42 @@ +package org.eclipse.che.ide.ext.git.client.compare; + +import com.google.gwt.core.client.JavaScriptObject; +import org.eclipse.che.ide.orion.compare.CompareConfig; + +/** + * @author Mykola Morhun + */ +public class GitCompareOverlay extends JavaScriptObject { + + protected GitCompareOverlay() { } + + public static native GitCompareOverlay create(JavaScriptObject gitCompareJso, CompareConfig compareConfig) /*-{ + compareConfig.parentDivId = "gwt-debug-compareParentDiv"; + + var compare = new gitCompareJso(compareConfig); + this.widget = compare.getCompareView().getWidget(); + + return compare; + }-*/; + + public final native void setConfig(CompareConfig compareConfig) /*-{ + this.options = compareConfig; + this.@org.eclipse.che.ide.ext.git.client.compare.GitCompareOverlay::refresh()(); + }-*/; + + public final native void refresh() /*-{ + var widget = this.getCompareView().getWidget(); + var editors = widget.getEditors(); + var oldContent= editors[0].getTextView().getText(); + var newContent = editors[1].getTextView().getText(); + + widget.options.oldFile.Content = oldContent; + widget.options.newFile.Content = newContent; + widget.refresh(); + }-*/; + + public final native String getContent() /*-{ + return this.getCompareView().getWidget().getEditors()[1].getTextView().getText(); + }-*/; + +} diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/Git.gwt.xml b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/Git.gwt.xml index d04e44f8873..c596b64c2b6 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/Git.gwt.xml +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/resources/org/eclipse/che/ide/ext/git/Git.gwt.xml @@ -23,6 +23,7 @@ + - + diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java index ef0dfb971bf..77cb0073628 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java @@ -54,6 +54,8 @@ public interface ContentCallBack { public CompareWidget( final CompareConfig compareConfig, final String themeId, LoaderFactory loaderFactory) { + if (true) return; + this.compareConfig = compareConfig; this.frame = new Frame(GWT.getModuleBaseURL() + "/Compare.html"); initWidget(frame); From 21619ad162661e84a1fb221b5eb4e549b1bdf12a Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 6 Sep 2017 15:00:06 +0300 Subject: [PATCH 29/33] CHE-5892: Fix build Signed-off-by: Mykola Morhun --- .../client/compare/CompareInitializer.java | 44 +++++++++++-------- .../git/client/compare/CompareViewImpl.java | 10 +++-- .../git/client/compare/GitCompareOverlay.java | 20 ++++++--- 3 files changed, 46 insertions(+), 28 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java index 87221f7dc44..6cc25e39e17 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java @@ -1,3 +1,13 @@ +/* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + */ package org.eclipse.che.ide.ext.git.client.compare; import com.google.gwt.core.client.Callback; @@ -9,9 +19,7 @@ import org.eclipse.che.api.promises.client.callback.AsyncPromiseHelper; import org.eclipse.che.requirejs.RequireJsLoader; -/** - * @author Mykola Morhun - */ +/** @author Mykola Morhun */ @Singleton public class CompareInitializer { @@ -26,20 +34,20 @@ public class CompareInitializer { public Promise injectCompareWidget(final AsyncCallback callback) { return AsyncPromiseHelper.createFromAsyncRequest( - call -> requireJsLoader.require( - new Callback() { - @Override - public void onFailure(Throwable reason) { - callback.onFailure(reason); - } - - @Override - public void onSuccess(JavaScriptObject[] result) { - callback.onSuccess(null); - } - }, - new String[]{"built-compare/built-compare-amd.min"}, - new String[]{GIT_COMPARE_MODULE})); + call -> + requireJsLoader.require( + new Callback() { + @Override + public void onFailure(Throwable reason) { + callback.onFailure(reason); + } + + @Override + public void onSuccess(JavaScriptObject[] result) { + callback.onSuccess(null); + } + }, + new String[] {"built-compare/built-compare-amd.min"}, + new String[] {GIT_COMPARE_MODULE})); } - } diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index b9ee5836466..e634cdbe957 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -90,7 +90,8 @@ public CompareViewImpl( Button closeButton = createButton(locale.buttonClose(), "git-compare-close-btn", event -> onClose()); Button refreshButton = - createButton(locale.buttonRefresh(), "git-compare-refresh-btn", event -> compareWidget.refresh()); + createButton( + locale.buttonRefresh(), "git-compare-refresh-btn", event -> compareWidget.refresh()); btnSaveChanges = createButton( @@ -188,7 +189,7 @@ public void onSuccess(Void result) { } @Override - public void onFailure(Throwable caught) { } + public void onFailure(Throwable caught) {} }); } @@ -208,14 +209,15 @@ public void setEnablePreviousDiffButton(boolean enabled) { } /** - * Dynamically loads theme for compare widget. - * This is done here to not to load big css when user doesn't need it. + * Dynamically loads theme for compare widget. This is done here to not to load big css when user + * doesn't need it. */ private void loadCompareTheme() { String themeUrl = GWT.getModuleBaseURL(); switch (themeAgent.getCurrentThemeId()) { case LIGHT_THEME_ID: themeUrl += "/built-compare-codenvy.css"; + break; case DARK_THEME_ID: default: themeUrl += "/built-compare-dark-codenvy.css"; diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java index d9784e74e35..862880ece15 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java @@ -1,16 +1,25 @@ +/* + * Copyright (c) 2012-2017 Red Hat, 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: + * Red Hat, Inc. - initial API and implementation + */ package org.eclipse.che.ide.ext.git.client.compare; import com.google.gwt.core.client.JavaScriptObject; import org.eclipse.che.ide.orion.compare.CompareConfig; -/** - * @author Mykola Morhun - */ +/** @author Mykola Morhun */ public class GitCompareOverlay extends JavaScriptObject { - protected GitCompareOverlay() { } + protected GitCompareOverlay() {} - public static native GitCompareOverlay create(JavaScriptObject gitCompareJso, CompareConfig compareConfig) /*-{ + public static native GitCompareOverlay create( + JavaScriptObject gitCompareJso, CompareConfig compareConfig) /*-{ compareConfig.parentDivId = "gwt-debug-compareParentDiv"; var compare = new gitCompareJso(compareConfig); @@ -38,5 +47,4 @@ public final native void refresh() /*-{ public final native String getContent() /*-{ return this.getCompareView().getWidget().getEditors()[1].getTextView().getText(); }-*/; - } From eaa74c51ba824b6777a2a8f053061e0b9788448e Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Wed, 6 Sep 2017 15:57:21 +0300 Subject: [PATCH 30/33] Prevent jumping to non-existing diff with hotkeys Signed-off-by: Mykola Morhun --- .../ext/git/client/compare/ComparePresenter.java | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java index 9d008886a6f..445097afaaf 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/ComparePresenter.java @@ -296,18 +296,22 @@ public void onSaveChangesClicked() { @Override public void onNextDiffClicked() { - onSaveChangesClicked(); + if (currentFileIndex < alteredFiles.getFilesQuantity() - 1) { + onSaveChangesClicked(); - currentFileIndex++; - showCompareForCurrentFile(); + currentFileIndex++; + showCompareForCurrentFile(); + } } @Override public void onPreviousDiffClicked() { - onSaveChangesClicked(); + if (currentFileIndex > 0) { + onSaveChangesClicked(); - currentFileIndex--; - showCompareForCurrentFile(); + currentFileIndex--; + showCompareForCurrentFile(); + } } private void showCompare(final String remoteContent) { From 2a1147e1729f5f6f8cae9567982d849d312009aa Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Thu, 7 Sep 2017 10:57:56 +0300 Subject: [PATCH 31/33] CHE-5892: Temporary state. Moving git diff grom iframe to IDE --- .../git/client/compare/CompareViewImpl.java | 76 +++------ .../refactoring/preview/PreviewViewImpl.java | 38 +++-- .../che-plugin-orion-compare/pom.xml | 4 - .../orion}/compare/CompareInitializer.java | 28 ++- .../che/ide/orion/compare/CompareWidget.java | 160 ------------------ .../orion/compare/jso}/GitCompareOverlay.java | 15 +- 6 files changed, 85 insertions(+), 236 deletions(-) rename plugins/{plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client => plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion}/compare/CompareInitializer.java (63%) delete mode 100644 plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java rename plugins/{plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare => plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso}/GitCompareOverlay.java (77%) diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java index e634cdbe957..2a3c3aada32 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java +++ b/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareViewImpl.java @@ -10,14 +10,11 @@ */ package org.eclipse.che.ide.ext.git.client.compare; -import static org.eclipse.che.ide.ext.git.client.compare.CompareInitializer.GIT_COMPARE_MODULE; -import static org.eclipse.che.ide.theme.DarkTheme.DARK_THEME_ID; -import static org.eclipse.che.ide.theme.LightTheme.LIGHT_THEME_ID; +import static org.eclipse.che.ide.orion.compare.CompareInitializer.GIT_COMPARE_MODULE; import com.google.gwt.core.client.GWT; import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.dom.client.Document; -import com.google.gwt.dom.client.Element; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.user.client.rpc.AsyncCallback; @@ -28,11 +25,12 @@ import com.google.gwt.user.client.ui.Widget; import com.google.inject.Inject; import com.google.inject.Singleton; -import org.eclipse.che.ide.api.theme.ThemeAgent; import org.eclipse.che.ide.ext.git.client.GitLocalizationConstant; import org.eclipse.che.ide.orion.compare.CompareConfig; import org.eclipse.che.ide.orion.compare.CompareFactory; +import org.eclipse.che.ide.orion.compare.CompareInitializer; import org.eclipse.che.ide.orion.compare.FileOptions; +import org.eclipse.che.ide.orion.compare.jso.GitCompareOverlay; import org.eclipse.che.ide.ui.button.ButtonAlignment; import org.eclipse.che.ide.ui.window.Window; import org.eclipse.che.requirejs.ModuleHolder; @@ -67,8 +65,6 @@ interface PreviewViewImplUiBinder extends UiBinder {} private final CompareFactory compareFactory; private ActionDelegate delegate; - private ThemeAgent themeAgent; - private boolean themeLoaded; private GitCompareOverlay compareWidget; private boolean visible; @@ -76,12 +72,10 @@ interface PreviewViewImplUiBinder extends UiBinder {} public CompareViewImpl( CompareFactory compareFactory, GitLocalizationConstant locale, - ThemeAgent themeAgent, CompareInitializer compareInitializer, ModuleHolder moduleHolder) { this.compareFactory = compareFactory; this.locale = locale; - this.themeAgent = themeAgent; this.compareInitializer = compareInitializer; this.moduleHolder = moduleHolder; @@ -150,11 +144,6 @@ public boolean isVisible() { @Override public void show(String oldContent, String newContent, String fileName, boolean readOnly) { - if (!themeLoaded) { - loadCompareTheme(); - themeLoaded = true; - } - dockPanel.setSize( String.valueOf((com.google.gwt.user.client.Window.getClientWidth() / 100) * 95) + "px", String.valueOf((com.google.gwt.user.client.Window.getClientHeight() / 100) * 90) + "px"); @@ -162,30 +151,30 @@ public void show(String oldContent, String newContent, String fileName, boolean super.show(); visible = true; + FileOptions newFile = compareFactory.createFieOptions(); + newFile.setReadOnly(readOnly); + + FileOptions oldFile = compareFactory.createFieOptions(); + oldFile.setReadOnly(true); + + newFile.setContent(newContent); + newFile.setName(fileName); + oldFile.setContent(oldContent); + oldFile.setName(fileName); + + CompareConfig compareConfig = compareFactory.createCompareConfig(); + compareConfig.setNewFile(newFile); + compareConfig.setOldFile(oldFile); + compareConfig.setShowTitle(false); + compareConfig.setShowLineStatus(false); + compareInitializer.injectCompareWidget( new AsyncCallback() { @Override public void onSuccess(Void result) { JavaScriptObject gitCompare = moduleHolder.getModule(GIT_COMPARE_MODULE); - - FileOptions newFile = compareFactory.createFieOptions(); - newFile.setReadOnly(readOnly); - - FileOptions oldFile = compareFactory.createFieOptions(); - oldFile.setReadOnly(true); - - newFile.setContent(newContent); - newFile.setName(fileName); - oldFile.setContent(oldContent); - oldFile.setName(fileName); - - CompareConfig compareConfig = compareFactory.createCompareConfig(); - compareConfig.setNewFile(newFile); - compareConfig.setOldFile(oldFile); - compareConfig.setShowTitle(false); - compareConfig.setShowLineStatus(false); - - compareWidget = GitCompareOverlay.create(gitCompare, compareConfig); + compareWidget = + GitCompareOverlay.create(gitCompare, compareConfig, "gwt-debug-compareParentDiv"); } @Override @@ -207,25 +196,4 @@ public void setEnableNextDiffButton(boolean enabled) { public void setEnablePreviousDiffButton(boolean enabled) { btnPrevDiff.setEnabled(enabled); } - - /** - * Dynamically loads theme for compare widget. This is done here to not to load big css when user - * doesn't need it. - */ - private void loadCompareTheme() { - String themeUrl = GWT.getModuleBaseURL(); - switch (themeAgent.getCurrentThemeId()) { - case LIGHT_THEME_ID: - themeUrl += "/built-compare-codenvy.css"; - break; - case DARK_THEME_ID: - default: - themeUrl += "/built-compare-dark-codenvy.css"; - } - - Element styleSheetLink = Document.get().createElement("link"); - styleSheetLink.setAttribute("rel", "stylesheet"); - styleSheetLink.setAttribute("href", themeUrl); - Document.get().getElementsByTagName("head").getItem(0).appendChild(styleSheetLink); - } } diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/preview/PreviewViewImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/preview/PreviewViewImpl.java index a2a459e8541..e85aa3066d5 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/preview/PreviewViewImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/preview/PreviewViewImpl.java @@ -13,8 +13,10 @@ import static com.google.gwt.dom.client.Style.Float.LEFT; import static com.google.gwt.dom.client.Style.Unit.PX; import static org.eclipse.che.ide.api.theme.Style.getEditorSelectionColor; +import static org.eclipse.che.ide.orion.compare.CompareInitializer.GIT_COMPARE_MODULE; import com.google.gwt.core.client.GWT; +import com.google.gwt.core.client.JavaScriptObject; import com.google.gwt.dom.client.Document; import com.google.gwt.dom.client.Element; import com.google.gwt.event.dom.client.ClickEvent; @@ -25,6 +27,7 @@ import com.google.gwt.event.logical.shared.ValueChangeHandler; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; +import com.google.gwt.user.client.rpc.AsyncCallback; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.CheckBox; import com.google.gwt.user.client.ui.FlowPanel; @@ -45,7 +48,6 @@ import javax.validation.constraints.NotNull; import org.eclipse.che.commons.annotation.Nullable; import org.eclipse.che.ide.api.theme.Style; -import org.eclipse.che.ide.api.theme.ThemeAgent; import org.eclipse.che.ide.ext.java.client.JavaLocalizationConstant; import org.eclipse.che.ide.ext.java.shared.dto.refactoring.ChangePreview; import org.eclipse.che.ide.ext.java.shared.dto.refactoring.RefactoringPreview; @@ -53,10 +55,12 @@ import org.eclipse.che.ide.ext.java.shared.dto.refactoring.RefactoringStatusEntry; import org.eclipse.che.ide.orion.compare.CompareConfig; import org.eclipse.che.ide.orion.compare.CompareFactory; -import org.eclipse.che.ide.orion.compare.CompareWidget; +import org.eclipse.che.ide.orion.compare.CompareInitializer; import org.eclipse.che.ide.orion.compare.FileOptions; +import org.eclipse.che.ide.orion.compare.jso.GitCompareOverlay; import org.eclipse.che.ide.ui.loaders.request.LoaderFactory; import org.eclipse.che.ide.ui.window.Window; +import org.eclipse.che.requirejs.ModuleHolder; /** * @author Dmitry Shnurenko @@ -82,11 +86,12 @@ interface PreviewViewImplUiBinder extends UiBinder {} private ActionDelegate delegate; private FileOptions newFile; private FileOptions oldFile; - private CompareWidget compare; - private ThemeAgent themeAgent; + private GitCompareOverlay compare; private final LoaderFactory loaderFactory; private final CompareFactory compareFactory; + private final CompareInitializer compareInitializer; + private final ModuleHolder moduleHolder; private Map containerChanges = new HashMap<>(); private Element selectedElement; @@ -96,11 +101,13 @@ public PreviewViewImpl( JavaLocalizationConstant locale, LoaderFactory loaderFactory, CompareFactory compareFactory, - ThemeAgent themeAgent) { + CompareInitializer compareInitializer, + ModuleHolder moduleHolder) { this.locale = locale; this.loaderFactory = loaderFactory; this.compareFactory = compareFactory; - this.themeAgent = themeAgent; + this.compareInitializer = compareInitializer; + this.moduleHolder = moduleHolder; setTitle(locale.moveDialogTitle()); @@ -338,9 +345,8 @@ public void showDiff(@Nullable ChangePreview preview) { prepareDiffEditor(preview); return; } - refreshComperingFiles(preview); - compare.reload(); + refreshComperingFiles(preview); } } @@ -349,6 +355,8 @@ private void refreshComperingFiles(@NotNull ChangePreview preview) { newFile.setName(preview.getFileName()); oldFile.setContent(preview.getOldContent()); oldFile.setName(preview.getFileName()); + + compare.update(newFile, oldFile); } private void prepareDiffEditor(@NotNull ChangePreview preview) { @@ -366,8 +374,18 @@ private void prepareDiffEditor(@NotNull ChangePreview preview) { compareConfig.setShowTitle(true); compareConfig.setShowLineStatus(true); - compare = new CompareWidget(compareConfig, themeAgent.getCurrentThemeId(), loaderFactory); - diff.add(compare); + compareInitializer.injectCompareWidget( + new AsyncCallback() { + @Override + public void onSuccess(Void result) { + JavaScriptObject gitCompare = moduleHolder.getModule(GIT_COMPARE_MODULE); + compare = + GitCompareOverlay.create(gitCompare, compareConfig, diff.getElement().getId()); + } + + @Override + public void onFailure(Throwable caught) {} + }); } private void showMessage(RefactoringStatus status) { diff --git a/plugins/plugin-orion/che-plugin-orion-compare/pom.xml b/plugins/plugin-orion/che-plugin-orion-compare/pom.xml index 2e580d8548b..d362978a5b2 100644 --- a/plugins/plugin-orion/che-plugin-orion-compare/pom.xml +++ b/plugins/plugin-orion/che-plugin-orion-compare/pom.xml @@ -25,10 +25,6 @@ false - - com.google.gwt - gwt-elemental - com.google.gwt gwt-user diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareInitializer.java similarity index 63% rename from plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java rename to plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareInitializer.java index 6cc25e39e17..4887e6c08ac 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/CompareInitializer.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareInitializer.java @@ -8,15 +8,19 @@ * Contributors: * Red Hat, Inc. - initial API and implementation */ -package org.eclipse.che.ide.ext.git.client.compare; +package org.eclipse.che.ide.orion.compare; import com.google.gwt.core.client.Callback; +import com.google.gwt.core.client.GWT; import com.google.gwt.core.client.JavaScriptObject; +import com.google.gwt.dom.client.Document; +import com.google.gwt.dom.client.Element; import com.google.gwt.user.client.rpc.AsyncCallback; import com.google.inject.Inject; import com.google.inject.Singleton; import org.eclipse.che.api.promises.client.Promise; import org.eclipse.che.api.promises.client.callback.AsyncPromiseHelper; +import org.eclipse.che.ide.api.theme.ThemeAgent; import org.eclipse.che.requirejs.RequireJsLoader; /** @author Mykola Morhun */ @@ -26,13 +30,16 @@ public class CompareInitializer { public static final String GIT_COMPARE_MODULE = "Compare"; private final RequireJsLoader requireJsLoader; + private final ThemeAgent themeAgent; @Inject - CompareInitializer(final RequireJsLoader requireJsLoader) { + CompareInitializer(final RequireJsLoader requireJsLoader, final ThemeAgent themeAgent) { this.requireJsLoader = requireJsLoader; + this.themeAgent = themeAgent; } public Promise injectCompareWidget(final AsyncCallback callback) { + loadCompareTheme(); return AsyncPromiseHelper.createFromAsyncRequest( call -> requireJsLoader.require( @@ -50,4 +57,21 @@ public void onSuccess(JavaScriptObject[] result) { new String[] {"built-compare/built-compare-amd.min"}, new String[] {GIT_COMPARE_MODULE})); } + + /** + * Dynamically loads theme for compare widget. This is done here to not to load big css when user + * doesn't need it. + */ + private void loadCompareTheme() { + String themeUrl = + GWT.getModuleBaseURL() + + '/' + + themeAgent.getCurrentThemeId() + + "-built-compare-codenvy.css"; + + Element styleSheetLink = Document.get().createElement("link"); + styleSheetLink.setAttribute("rel", "stylesheet"); + styleSheetLink.setAttribute("href", themeUrl); + Document.get().getElementsByTagName("head").getItem(0).appendChild(styleSheetLink); + } } diff --git a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java deleted file mode 100644 index 77cb0073628..00000000000 --- a/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/CompareWidget.java +++ /dev/null @@ -1,160 +0,0 @@ -/* - * Copyright (c) 2012-2017 Red Hat, 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: - * Red Hat, Inc. - initial API and implementation - */ -package org.eclipse.che.ide.orion.compare; - -import static org.eclipse.che.api.promises.client.callback.AsyncPromiseHelper.createFromAsyncRequest; - -import com.google.gwt.core.client.GWT; -import com.google.gwt.dom.client.Style; -import com.google.gwt.event.dom.client.LoadEvent; -import com.google.gwt.event.dom.client.LoadHandler; -import com.google.gwt.json.client.JSONObject; -import com.google.gwt.json.client.JSONString; -import com.google.gwt.user.client.rpc.AsyncCallback; -import com.google.gwt.user.client.ui.Composite; -import com.google.gwt.user.client.ui.Frame; -import elemental.events.CustomEvent; -import elemental.events.Event; -import elemental.events.EventListener; -import elemental.html.Window; -import elemental.js.html.JsIFrameElement; -import elemental.json.Json; -import org.eclipse.che.api.promises.client.Operation; -import org.eclipse.che.api.promises.client.OperationException; -import org.eclipse.che.api.promises.client.Promise; -import org.eclipse.che.api.promises.client.callback.AsyncPromiseHelper; -import org.eclipse.che.ide.ui.loaders.request.LoaderFactory; -import org.eclipse.che.ide.ui.loaders.request.MessageLoader; - -/** - * Widget for compering (diff) for two files. - * - * @author Evgen Vidolob - * @author Igor Vinokur - */ -public class CompareWidget extends Composite { - - private Frame frame; - private JsIFrameElement iFrame; - private Promise framePromise; - private CompareConfig compareConfig; - - /** Callback for receiving content. */ - public interface ContentCallBack { - void onContentReceived(String content); - } - - public CompareWidget( - final CompareConfig compareConfig, final String themeId, LoaderFactory loaderFactory) { - if (true) return; - - this.compareConfig = compareConfig; - this.frame = new Frame(GWT.getModuleBaseURL() + "/Compare.html"); - initWidget(frame); - setSize("100%", "100%"); - final MessageLoader loader = loaderFactory.newLoader(); - loader.show(); - frame.getElement().getStyle().setBorderStyle(Style.BorderStyle.NONE); - AsyncPromiseHelper.RequestCall call = - new AsyncPromiseHelper.RequestCall() { - @Override - public void makeCall(final AsyncCallback callback) { - frame.addLoadHandler( - new LoadHandler() { - @Override - public void onLoad(LoadEvent event) { - frame.getElement().cast(); - iFrame = frame.getElement().cast(); - callback.onSuccess(iFrame.getContentWindow()); - } - }); - } - }; - framePromise = createFromAsyncRequest(call); - framePromise.then( - arg -> { - sendThemeId(arg, themeId); - }); - framePromise.then( - arg -> { - final EventListener eventListener = - evt -> { - sendConfig(arg, compareConfig); - loader.hide(); - }; - arg.getDocument().addEventListener("onThemeLoaded", eventListener, false); - }); - } - - private void sendThemeId(Window arg, String themeId) { - JSONObject obj = new JSONObject(); - obj.put("type", new JSONString("theme")); - obj.put("message", new JSONString(themeId)); - arg.postMessage(obj.toString(), "*"); - } - - private void sendConfig(Window arg, CompareConfig compareConfig) { - String message = - "{\"type\": \"config\", \"message\":" + Json.create(compareConfig.toJson()).toJson() + "}"; - arg.postMessage(message, "*"); - } - - /** Reload compare according to configuration. */ - public void reload() { - framePromise.then( - new Operation() { - @Override - public void apply(Window arg) throws OperationException { - sendConfig(arg, compareConfig); - } - }); - } - - /** Refresh compare parts. */ - public void refresh() { - framePromise.then( - new Operation() { - @Override - public void apply(Window arg) throws OperationException { - JSONObject obj = new JSONObject(); - obj.put("type", new JSONString("refresh")); - arg.postMessage(obj.toString(), "*"); - } - }); - } - - /** - * get content of editable part of compare widget. - * - * @param contentCallBack callBack with received contents - */ - public void getContent(final ContentCallBack contentCallBack) { - framePromise.then( - new Operation() { - @Override - public void apply(final Window arg) throws OperationException { - JSONObject obj = new JSONObject(); - obj.put("type", new JSONString("getNewContentRequest")); - arg.postMessage(obj.toString(), "*"); - - arg.addEventListener( - "getNewContentResponse", - new EventListener() { - @Override - public void handleEvent(Event evt) { - contentCallBack.onContentReceived(((CustomEvent) evt).getDetail().toString()); - } - }, - false); - } - }); - } -} diff --git a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/GitCompareOverlay.java similarity index 77% rename from plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java rename to plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/GitCompareOverlay.java index 862880ece15..71265a991a0 100644 --- a/plugins/plugin-git/che-plugin-git-ext-git/src/main/java/org/eclipse/che/ide/ext/git/client/compare/GitCompareOverlay.java +++ b/plugins/plugin-orion/che-plugin-orion-compare/src/main/java/org/eclipse/che/ide/orion/compare/jso/GitCompareOverlay.java @@ -8,10 +8,11 @@ * Contributors: * Red Hat, Inc. - initial API and implementation */ -package org.eclipse.che.ide.ext.git.client.compare; +package org.eclipse.che.ide.orion.compare.jso; import com.google.gwt.core.client.JavaScriptObject; import org.eclipse.che.ide.orion.compare.CompareConfig; +import org.eclipse.che.ide.orion.compare.FileOptions; /** @author Mykola Morhun */ public class GitCompareOverlay extends JavaScriptObject { @@ -19,8 +20,8 @@ public class GitCompareOverlay extends JavaScriptObject { protected GitCompareOverlay() {} public static native GitCompareOverlay create( - JavaScriptObject gitCompareJso, CompareConfig compareConfig) /*-{ - compareConfig.parentDivId = "gwt-debug-compareParentDiv"; + JavaScriptObject gitCompareJso, CompareConfig compareConfig, String parentId) /*-{ + compareConfig.parentDivId = parentId; var compare = new gitCompareJso(compareConfig); this.widget = compare.getCompareView().getWidget(); @@ -28,9 +29,11 @@ public static native GitCompareOverlay create( return compare; }-*/; - public final native void setConfig(CompareConfig compareConfig) /*-{ - this.options = compareConfig; - this.@org.eclipse.che.ide.ext.git.client.compare.GitCompareOverlay::refresh()(); + public final native void update(FileOptions newFile, FileOptions oldFile) /*-{ + var widget = this.getCompareView().getWidget(); + widget.options.newFile = newFile; + widget.options.oldFile = oldFile; + widget.refresh(); }-*/; public final native void refresh() /*-{ From e2b5c84a4999d26b74bad8d4cebdeb4ff6f2a2c4 Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Thu, 7 Sep 2017 14:23:41 +0300 Subject: [PATCH 32/33] CHE-5892: Move git diff widget from iframe to IDE Signed-off-by: Mykola Morhun --- .../ext/java/client/refactoring/preview/PreviewViewImpl.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/preview/PreviewViewImpl.java b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/preview/PreviewViewImpl.java index e85aa3066d5..777208e1f08 100644 --- a/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/preview/PreviewViewImpl.java +++ b/plugins/plugin-java/che-plugin-java-ext-lang-client/src/main/java/org/eclipse/che/ide/ext/java/client/refactoring/preview/PreviewViewImpl.java @@ -58,7 +58,6 @@ import org.eclipse.che.ide.orion.compare.CompareInitializer; import org.eclipse.che.ide.orion.compare.FileOptions; import org.eclipse.che.ide.orion.compare.jso.GitCompareOverlay; -import org.eclipse.che.ide.ui.loaders.request.LoaderFactory; import org.eclipse.che.ide.ui.window.Window; import org.eclipse.che.requirejs.ModuleHolder; @@ -88,7 +87,6 @@ interface PreviewViewImplUiBinder extends UiBinder {} private FileOptions oldFile; private GitCompareOverlay compare; - private final LoaderFactory loaderFactory; private final CompareFactory compareFactory; private final CompareInitializer compareInitializer; private final ModuleHolder moduleHolder; @@ -99,12 +97,10 @@ interface PreviewViewImplUiBinder extends UiBinder {} @Inject public PreviewViewImpl( JavaLocalizationConstant locale, - LoaderFactory loaderFactory, CompareFactory compareFactory, CompareInitializer compareInitializer, ModuleHolder moduleHolder) { this.locale = locale; - this.loaderFactory = loaderFactory; this.compareFactory = compareFactory; this.compareInitializer = compareInitializer; this.moduleHolder = moduleHolder; From 0bd2dd9cebe6c53f13ede6edfb180ca9297c121b Mon Sep 17 00:00:00 2001 From: Mykola Morhun Date: Fri, 8 Sep 2017 14:40:00 +0300 Subject: [PATCH 33/33] CHE-5892: code clean up --- .../src/main/java/org/eclipse/che/ide/ui/window/Window.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java index dddbc7ff2aa..2f73be4e6f0 100644 --- a/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java +++ b/ide/che-core-ide-ui/src/main/java/org/eclipse/che/ide/ui/window/Window.java @@ -262,8 +262,8 @@ private void addButtonAlignment(Button button, ButtonAlignment alignment) { button.addStyleName(resources.windowCss().buttonAlignLeft()); break; case RIGHT: + default: button.addStyleName(resources.windowCss().buttonAlignRight()); - break; } }