Skip to content

Commit

Permalink
chore: Checkstyle checks that the end of lines are consistent (unix-s…
Browse files Browse the repository at this point in the history
…tyle \n only) (#1344)
  • Loading branch information
surli authored and monperrus committed May 31, 2017
1 parent 3404e71 commit f44f978
Show file tree
Hide file tree
Showing 61 changed files with 8,930 additions and 8,924 deletions.
6 changes: 6 additions & 0 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
<property name="message" value="Line has trailing spaces."/>
</module>

<!-- Checks for the new line format -->
<module name="RegexpMultiline">
<property name="format" value="\r\n"/>
<property name="message" value="Do not use Windows line endings"/>
</module>

<module name="TreeWalker">
<module name="RegexpSinglelineJava">
<property name="format" value="^\t* "/>
Expand Down
210 changes: 105 additions & 105 deletions src/main/java/spoon/refactoring/AbstractRenameRefactoring.java
Original file line number Diff line number Diff line change
@@ -1,105 +1,105 @@
/**
* Copyright (C) 2006-2017 INRIA and contributors
* Spoon - http://spoon.gforge.inria.fr/
*
* This software is governed by the CeCILL-C License under French law and
* abiding by the rules of distribution of free software. You can use, modify
* and/or redistribute the software under the terms of the CeCILL-C license as
* circulated by CEA, CNRS and INRIA at http://www.cecill.info.
*
* 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 CeCILL-C License for more details.
*
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL-C license and that you accept its terms.
*/
package spoon.refactoring;

import java.util.regex.Pattern;

import spoon.SpoonException;
import spoon.reflect.declaration.CtNamedElement;

/**
* abstract implementation of rename element refactoring
*
* @param <T> the type of target renamed element
*/
public abstract class AbstractRenameRefactoring<T extends CtNamedElement> implements CtRenameRefactoring<T> {
public static final Pattern javaIdentifierRE = Pattern.compile("\\p{javaJavaIdentifierStart}\\p{javaJavaIdentifierPart}*");

protected T target;
protected String newName;
protected Pattern newNameValidationRE;

protected AbstractRenameRefactoring(Pattern newNameValidationRE) {
this.newNameValidationRE = newNameValidationRE;
}

@Override
public void refactor() {
if (getTarget() == null) {
throw new SpoonException("The target of refactoring is not defined");
}
if (getNewName() == null) {
throw new SpoonException("The new name of refactoring is not defined");
}
detectIssues();
refactorNoCheck();
}

protected abstract void refactorNoCheck();

protected void detectIssues() {
checkNewNameIsValid();
detectNameConflicts();
}

/**
* client may implement this method to check whether {@link #newName} is valid
*/
protected void checkNewNameIsValid() {
}

/**
* client may implement this method to check whether {@link #newName}
* is in conflict with names of other model elements
*/
protected void detectNameConflicts() {
}

/**
* Helper method, which can be used by the child classes to check if name is an java identifier
* @param name the to be checked name
* @return true if name is valid java identifier
*/
protected boolean isJavaIdentifier(String name) {
return javaIdentifierRE.matcher(name).matches();
}

@Override
public T getTarget() {
return target;
}

@Override
public AbstractRenameRefactoring<T> setTarget(T target) {
this.target = target;
return this;
}

@Override
public String getNewName() {
return newName;
}

@Override
public AbstractRenameRefactoring<T> setNewName(String newName) {
if (newNameValidationRE != null && newNameValidationRE.matcher(newName).matches() == false) {
throw new SpoonException("New name \"" + newName + "\" is not valid name");
}
this.newName = newName;
return this;
}
}
/**
* Copyright (C) 2006-2017 INRIA and contributors
* Spoon - http://spoon.gforge.inria.fr/
*
* This software is governed by the CeCILL-C License under French law and
* abiding by the rules of distribution of free software. You can use, modify
* and/or redistribute the software under the terms of the CeCILL-C license as
* circulated by CEA, CNRS and INRIA at http://www.cecill.info.
*
* 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 CeCILL-C License for more details.
*
* The fact that you are presently reading this means that you have had
* knowledge of the CeCILL-C license and that you accept its terms.
*/
package spoon.refactoring;

import java.util.regex.Pattern;

import spoon.SpoonException;
import spoon.reflect.declaration.CtNamedElement;

/**
* abstract implementation of rename element refactoring
*
* @param <T> the type of target renamed element
*/
public abstract class AbstractRenameRefactoring<T extends CtNamedElement> implements CtRenameRefactoring<T> {
public static final Pattern javaIdentifierRE = Pattern.compile("\\p{javaJavaIdentifierStart}\\p{javaJavaIdentifierPart}*");

protected T target;
protected String newName;
protected Pattern newNameValidationRE;

protected AbstractRenameRefactoring(Pattern newNameValidationRE) {
this.newNameValidationRE = newNameValidationRE;
}

@Override
public void refactor() {
if (getTarget() == null) {
throw new SpoonException("The target of refactoring is not defined");
}
if (getNewName() == null) {
throw new SpoonException("The new name of refactoring is not defined");
}
detectIssues();
refactorNoCheck();
}

protected abstract void refactorNoCheck();

protected void detectIssues() {
checkNewNameIsValid();
detectNameConflicts();
}

/**
* client may implement this method to check whether {@link #newName} is valid
*/
protected void checkNewNameIsValid() {
}

/**
* client may implement this method to check whether {@link #newName}
* is in conflict with names of other model elements
*/
protected void detectNameConflicts() {
}

/**
* Helper method, which can be used by the child classes to check if name is an java identifier
* @param name the to be checked name
* @return true if name is valid java identifier
*/
protected boolean isJavaIdentifier(String name) {
return javaIdentifierRE.matcher(name).matches();
}

@Override
public T getTarget() {
return target;
}

@Override
public AbstractRenameRefactoring<T> setTarget(T target) {
this.target = target;
return this;
}

@Override
public String getNewName() {
return newName;
}

@Override
public AbstractRenameRefactoring<T> setNewName(String newName) {
if (newNameValidationRE != null && newNameValidationRE.matcher(newName).matches() == false) {
throw new SpoonException("New name \"" + newName + "\" is not valid name");
}
this.newName = newName;
return this;
}
}
Loading

0 comments on commit f44f978

Please sign in to comment.