Skip to content

Commit

Permalink
Fix licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
dbmeneses committed Jun 19, 2017
1 parent 19b8ad4 commit 9ec201c
Show file tree
Hide file tree
Showing 8 changed files with 141 additions and 13 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
/*
* SonarLint for IntelliJ IDEA
* Copyright (C) 2015 SonarSource
* sonarlint@sonarsource.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonarlint.intellij.config.global.wizard;

import com.intellij.ide.wizard.AbstractWizardStepEx;
import com.intellij.ide.wizard.CommitStepException;
import com.intellij.openapi.progress.ProgressManager;
import com.intellij.ui.DocumentAdapter;
Expand All @@ -21,7 +41,7 @@
import org.sonarlint.intellij.tasks.OrganizationsFetchTask;
import org.sonarsource.sonarlint.core.client.api.connected.ValidationResult;

public class AuthStep extends AbstractStep {
public class AuthStep extends AbstractWizardStepEx {
private final static String LOGIN_ITEM = "Login / Password";
private final static String TOKEN_ITEM = "Token";
private final WizardModel model;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@
/*
* SonarLint for IntelliJ IDEA
* Copyright (C) 2015 SonarSource
* sonarlint@sonarsource.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonarlint.intellij.config.global.wizard;

import com.intellij.ide.wizard.AbstractWizardStepEx;
import com.intellij.ide.wizard.CommitStepException;
import javax.swing.JComponent;
import javax.swing.JPanel;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

public class ConfirmStep extends AbstractStep {
public class ConfirmStep extends AbstractWizardStepEx {
private final WizardModel model;
private JPanel panel;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
/*
* SonarLint for IntelliJ IDEA
* Copyright (C) 2015 SonarSource
* sonarlint@sonarsource.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonarlint.intellij.config.global.wizard;

import com.intellij.ide.wizard.AbstractWizardStepEx;
import com.intellij.ide.wizard.CommitStepException;
import com.intellij.ui.ColoredListCellRenderer;
import com.intellij.ui.ListSpeedSearch;
Expand All @@ -17,7 +37,7 @@

import static javax.swing.JList.VERTICAL;

public class OrganizationStep extends AbstractStep {
public class OrganizationStep extends AbstractWizardStepEx {
private final WizardModel model;
private JList orgList;
private JPanel panel;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* SonarLint for IntelliJ IDEA
* Copyright (C) 2015 SonarSource
* sonarlint@sonarsource.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonarlint.intellij.config.global.wizard;

import com.intellij.ide.wizard.AbstractWizardEx;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
/*
* SonarLint for IntelliJ IDEA
* Copyright (C) 2015 SonarSource
* sonarlint@sonarsource.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonarlint.intellij.config.global.wizard;

import com.intellij.ide.wizard.AbstractWizardStepEx;
import com.intellij.ide.wizard.CommitStepException;
import com.intellij.ui.DocumentAdapter;
import com.intellij.ui.components.JBTextField;
Expand All @@ -23,7 +43,7 @@
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

public class ServerStep extends AbstractStep {
public class ServerStep extends AbstractWizardStepEx {
private static final int NAME_MAX_LENGTH = 50;
private final WizardModel model;
private final Collection<String> existingNames;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* SonarLint for IntelliJ IDEA
* Copyright (C) 2015 SonarSource
* sonarlint@sonarsource.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonarlint.intellij.config.global.wizard;

import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* SonarLint for IntelliJ IDEA
* Copyright (C) 2015 SonarSource
* sonarlint@sonarsource.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonarlint.intellij.tasks;

import com.intellij.openapi.diagnostic.Logger;
Expand Down

0 comments on commit 9ec201c

Please sign in to comment.