|
6 | 6 | */ |
7 | 7 | package org.jboss.forge.roaster.model.impl; |
8 | 8 |
|
9 | | -import org.eclipse.jdt.core.dom.*; |
| 9 | +import java.lang.reflect.Method; |
| 10 | +import java.lang.reflect.Modifier; |
| 11 | +import java.util.ArrayList; |
| 12 | +import java.util.Collections; |
| 13 | +import java.util.Iterator; |
| 14 | +import java.util.List; |
| 15 | +import java.util.Objects; |
| 16 | + |
| 17 | +import org.eclipse.jdt.core.dom.AST; |
| 18 | +import org.eclipse.jdt.core.dom.ASTNode; |
| 19 | +import org.eclipse.jdt.core.dom.Block; |
| 20 | +import org.eclipse.jdt.core.dom.CompilationUnit; |
| 21 | +import org.eclipse.jdt.core.dom.Javadoc; |
| 22 | +import org.eclipse.jdt.core.dom.MethodDeclaration; |
10 | 23 | import org.eclipse.jdt.core.dom.Modifier.ModifierKeyword; |
| 24 | +import org.eclipse.jdt.core.dom.Name; |
| 25 | +import org.eclipse.jdt.core.dom.SingleVariableDeclaration; |
| 26 | +import org.eclipse.jdt.core.dom.Statement; |
| 27 | +import org.eclipse.jdt.core.dom.TypeParameter; |
| 28 | +import org.eclipse.jdt.core.dom.VariableDeclaration; |
11 | 29 | import org.jboss.forge.roaster.ParserException; |
12 | 30 | import org.jboss.forge.roaster.Problem; |
13 | 31 | import org.jboss.forge.roaster.Roaster; |
14 | 32 | import org.jboss.forge.roaster.model.Annotation; |
| 33 | +import org.jboss.forge.roaster.model.JavaType; |
15 | 34 | import org.jboss.forge.roaster.model.Type; |
16 | | -import org.jboss.forge.roaster.model.*; |
| 35 | +import org.jboss.forge.roaster.model.TypeVariable; |
| 36 | +import org.jboss.forge.roaster.model.Visibility; |
17 | 37 | import org.jboss.forge.roaster.model.ast.AnnotationAccessor; |
18 | 38 | import org.jboss.forge.roaster.model.ast.ModifierAccessor; |
19 | | -import org.jboss.forge.roaster.model.source.*; |
| 39 | +import org.jboss.forge.roaster.model.source.AnnotationSource; |
| 40 | +import org.jboss.forge.roaster.model.source.Import; |
| 41 | +import org.jboss.forge.roaster.model.source.JavaClassSource; |
| 42 | +import org.jboss.forge.roaster.model.source.JavaDocSource; |
| 43 | +import org.jboss.forge.roaster.model.source.JavaSource; |
| 44 | +import org.jboss.forge.roaster.model.source.MethodSource; |
| 45 | +import org.jboss.forge.roaster.model.source.ParameterSource; |
| 46 | +import org.jboss.forge.roaster.model.source.TypeVariableSource; |
20 | 47 | import org.jboss.forge.roaster.model.util.Methods; |
21 | 48 | import org.jboss.forge.roaster.model.util.Types; |
22 | 49 |
|
23 | | -import java.lang.reflect.Method; |
24 | | -import java.lang.reflect.Modifier; |
25 | | -import java.util.*; |
26 | | - |
27 | 50 | /** |
28 | 51 | * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> |
29 | 52 | */ |
|
0 commit comments