Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7fde51a

Browse files
author
zhourenjian
committed
Update comments
1 parent d7159a7 commit 7fde51a

11 files changed

+20
-46
lines changed

src/net/sf/j2s/core/builder/AbstractImageBuilder.java

Lines changed: 10 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at
@@ -10,56 +10,30 @@
1010
*******************************************************************************/
1111
package net.sf.j2s.core.builder;
1212

13-
import java.io.ByteArrayInputStream;
14-
import java.io.InputStream;
15-
import java.io.PrintWriter;
16-
import java.util.ArrayList;
17-
import java.util.HashSet;
18-
import java.util.Locale;
19-
import java.util.Map;
13+
import org.eclipse.core.runtime.*;
14+
import org.eclipse.core.resources.*;
2015

2116
import net.sf.j2s.core.compiler.BuildContext;
2217
import net.sf.j2s.core.compiler.BuildContextBridge;
2318
import net.sf.j2s.core.compiler.HackedJDTBuildContext;
2419

25-
import org.eclipse.core.resources.IContainer;
26-
import org.eclipse.core.resources.IFile;
27-
import org.eclipse.core.resources.IFolder;
28-
import org.eclipse.core.resources.IMarker;
29-
import org.eclipse.core.resources.IResource;
30-
import org.eclipse.core.resources.IResourceProxy;
31-
import org.eclipse.core.resources.IResourceProxyVisitor;
32-
import org.eclipse.core.resources.IResourceStatus;
33-
import org.eclipse.core.runtime.CoreException;
34-
import org.eclipse.core.runtime.IPath;
35-
import org.eclipse.core.runtime.IStatus;
36-
import org.eclipse.core.runtime.Path;
37-
import org.eclipse.jdt.core.IJavaModelMarker;
38-
import org.eclipse.jdt.core.IMember;
39-
import org.eclipse.jdt.core.ISourceRange;
40-
import org.eclipse.jdt.core.IType;
41-
import org.eclipse.jdt.core.JavaConventions;
42-
import org.eclipse.jdt.core.JavaCore;
43-
import org.eclipse.jdt.core.JavaModelException;
44-
import org.eclipse.jdt.core.compiler.CategorizedProblem;
45-
import org.eclipse.jdt.core.compiler.CharOperation;
46-
import org.eclipse.jdt.core.compiler.IProblem;
47-
import org.eclipse.jdt.internal.compiler.AbstractAnnotationProcessorManager;
48-
import org.eclipse.jdt.internal.compiler.ClassFile;
49-
import org.eclipse.jdt.internal.compiler.CompilationResult;
20+
import org.eclipse.jdt.core.*;
21+
import org.eclipse.jdt.core.compiler.*;
22+
import org.eclipse.jdt.internal.compiler.*;
5023
import org.eclipse.jdt.internal.compiler.Compiler;
51-
import org.eclipse.jdt.internal.compiler.DefaultErrorHandlingPolicies;
52-
import org.eclipse.jdt.internal.compiler.ICompilerRequestor;
5324
import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants;
5425
import org.eclipse.jdt.internal.compiler.env.ICompilationUnit;
5526
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;
56-
import org.eclipse.jdt.internal.compiler.problem.AbortCompilation;
27+
import org.eclipse.jdt.internal.compiler.problem.*;
5728
import org.eclipse.jdt.internal.compiler.util.SimpleSet;
5829
import org.eclipse.jdt.internal.compiler.util.SuffixConstants;
5930
import org.eclipse.jdt.internal.core.JavaModelManager;
6031
import org.eclipse.jdt.internal.core.util.Messages;
6132
import org.eclipse.jdt.internal.core.util.Util;
6233

34+
import java.io.*;
35+
import java.util.*;
36+
6337
/**
6438
* The abstract superclass of Java builders.
6539
* Provides the building and compilation mechanism

src/net/sf/j2s/core/builder/BatchImageBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/builder/BuildNotifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/builder/ClasspathJar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2007 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/builder/ImageBuilderInternalException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/builder/IncrementalImageBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/builder/JavaBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/builder/NameEnvironment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/builder/ReferenceCollection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/builder/State.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2000, 2006 IBM Corporation and others.
2+
* Copyright (c) 2000, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

src/net/sf/j2s/core/compiler/BuildContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2006 IBM Corporation and others.
2+
* Copyright (c) 2006, 2008 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at

0 commit comments

Comments
 (0)