#494 Fixing wrong indentation

This commit is contained in:
Gunnar Morling 2015-05-17 21:21:56 +02:00
parent e31296d7f9
commit 32828ff9eb

View File

@ -50,16 +50,16 @@ public interface Assignment {
* *
* @return imported types * @return imported types
*/ */
Set<Type> getImportTypes(); Set<Type> getImportTypes();
/** /**
* returns all types exception types thrown by this assignment. * returns all types exception types thrown by this assignment.
* *
* @return exceptions thrown * @return exceptions thrown
*/ */
List<Type> getExceptionTypes(); List<Type> getExceptionTypes();
/** /**
* An assignment in itself can wrap another assignment. E.g.: * An assignment in itself can wrap another assignment. E.g.:
* <ul> * <ul>
* <li>a MethodReference can wrap a TypeConversion, another MethodReference and ultimately a Simple</li> * <li>a MethodReference can wrap a TypeConversion, another MethodReference and ultimately a Simple</li>
@ -68,22 +68,22 @@ public interface Assignment {
* *
* @param assignment the assignment to set * @param assignment the assignment to set
*/ */
void setAssignment( Assignment assignment ); void setAssignment(Assignment assignment);
/** /**
* the source reference being a source-getter, a constant, etc. * the source reference being a source-getter, a constant, etc.
* *
* @return source reference * @return source reference
*/ */
String getSourceReference(); String getSourceReference();
/** /**
* Returns whether the type of assignment * Returns whether the type of assignment
* *
* @return {@link AssignmentType} * @return {@link AssignmentType}
*/ */
AssignmentType getType(); AssignmentType getType();
boolean isUpdateMethod(); boolean isUpdateMethod();
} }