View | Details | Raw Unified | Return to bug 304416 | Differences between
and this patch

Collapse All | Expand All

(-)META-INF/MANIFEST.MF (-2 / +3 lines)
Lines 2-14 Link Here
2
Bundle-ManifestVersion: 2
2
Bundle-ManifestVersion: 2
3
Bundle-Name: %pluginName
3
Bundle-Name: %pluginName
4
Bundle-SymbolicName: org.eclipse.equinox.frameworkadmin;singleton:=true
4
Bundle-SymbolicName: org.eclipse.equinox.frameworkadmin;singleton:=true
5
Bundle-Version: 1.0.200.qualifier
5
Bundle-Version: 2.0.0.qualifier
6
Bundle-Vendor: %providerName
6
Bundle-Vendor: %providerName
7
Bundle-Localization: plugin
7
Bundle-Localization: plugin
8
Import-Package: org.eclipse.osgi.service.pluginconversion;version="1.0.0",
8
Import-Package: org.eclipse.osgi.service.pluginconversion;version="1.0.0",
9
 org.eclipse.osgi.util;version="1.1.0",
9
 org.eclipse.osgi.util;version="1.1.0",
10
 org.osgi.framework;version="1.3.0"
10
 org.osgi.framework;version="1.3.0"
11
Export-Package: org.eclipse.equinox.internal.frameworkadmin.utils;
11
Export-Package: org.eclipse.equinox.frameworkadmin;version="2.0.0",
12
 org.eclipse.equinox.internal.frameworkadmin.utils;
12
  x-friends:="org.eclipse.equinox.frameworkadmin.equinox,
13
  x-friends:="org.eclipse.equinox.frameworkadmin.equinox,
13
   org.eclipse.equinox.p2.metadata.generator,
14
   org.eclipse.equinox.p2.metadata.generator,
14
   org.eclipse.equinox.p2.publisher,
15
   org.eclipse.equinox.p2.publisher,
(-)src/org/eclipse/equinox/frameworkadmin/BundleInfo.java (+221 lines)
Added Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2007, 2009 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
10
 *******************************************************************************/
11
package org.eclipse.equinox.frameworkadmin;
12
13
import java.net.URI;
14
import org.eclipse.core.runtime.URIUtil;
15
16
/**
17
 * This object represents information of a bundle. This class is a copy of the BundleInfo
18
 * class in org.eclipse.equinox.simpleconfigurator
19
 * @since 2.0
20
 */
21
public class BundleInfo {
22
	public static final int NO_LEVEL = -1;
23
	public static final int NO_BUNDLEID = -1;
24
25
	private String symbolicName = null;
26
	private String version = null;
27
	private URI baseLocation;
28
	private URI location;
29
	private long bundleId = NO_BUNDLEID;
30
31
	private boolean markedAsStarted = false;
32
	private int startLevel = NO_LEVEL;
33
	private boolean resolved = false;
34
35
	private String manifest;
36
	private String fragmentHost;
37
38
	public BundleInfo() {
39
	}
40
41
	public BundleInfo(URI location) {
42
		this.location = location;
43
	}
44
45
	public BundleInfo(URI location, int startLevel, boolean started) {
46
		this.location = location;
47
		this.startLevel = startLevel;
48
		this.markedAsStarted = started;
49
	}
50
51
	public BundleInfo(URI location, int startLevel, boolean started, long bundleId) {
52
		this.location = location;
53
		this.startLevel = startLevel;
54
		this.markedAsStarted = started;
55
		this.bundleId = bundleId;
56
	}
57
58
	public BundleInfo(String symbolic, String version, URI location, int startLevel, boolean started) {
59
		this.symbolicName = symbolic;
60
		this.version = version;
61
		this.location = location;
62
		this.markedAsStarted = started;
63
		this.startLevel = startLevel;
64
	}
65
66
	public long getBundleId() {
67
		return bundleId;
68
	}
69
70
	public URI getBaseLocation() {
71
		return baseLocation;
72
	}
73
74
	public URI getLocation() {
75
		return location;
76
	}
77
78
	public String getManifest() {
79
		return manifest;
80
	}
81
82
	public int getStartLevel() {
83
		return startLevel;
84
	}
85
86
	public String getSymbolicName() {
87
		return symbolicName;
88
	}
89
90
	public String getVersion() {
91
		return version;
92
	}
93
94
	public String getFragmentHost() {
95
		return fragmentHost;
96
	}
97
98
	public boolean isMarkedAsStarted() {
99
		return markedAsStarted;
100
	}
101
102
	public boolean isResolved() {
103
		return resolved;
104
	}
105
106
	public void setBundleId(long bundleId) {
107
		this.bundleId = bundleId;
108
	}
109
110
	public void setBaseLocation(URI baseLocation) {
111
		this.baseLocation = baseLocation;
112
	}
113
114
	public void setLocation(URI location) {
115
		this.location = location;
116
	}
117
118
	public void setManifest(String manifest) {
119
		this.manifest = manifest;
120
	}
121
122
	public void setMarkedAsStarted(boolean markedAsStarted) {
123
		this.markedAsStarted = markedAsStarted;
124
	}
125
126
	public void setResolved(boolean resolved) {
127
		this.resolved = resolved;
128
	}
129
130
	public void setStartLevel(int level) {
131
		this.startLevel = level;
132
	}
133
134
	public void setSymbolicName(String symbolicName) {
135
		this.symbolicName = symbolicName;
136
	}
137
138
	public void setVersion(String value) {
139
		this.version = value;
140
	}
141
142
	public void setFragmentHost(String fragmentHost) {
143
		this.fragmentHost = fragmentHost;
144
	}
145
146
	/* (non-Javadoc)
147
	 * @see java.lang.Object#toString()
148
	 */
149
	public String toString() {
150
		StringBuffer buffer = new StringBuffer();
151
		buffer.append("BundleInfo("); //$NON-NLS-1$
152
		if (symbolicName != null)
153
			buffer.append(symbolicName);
154
		buffer.append(", "); //$NON-NLS-1$
155
		if (version != null)
156
			buffer.append(version);
157
158
		if (fragmentHost != null) {
159
			buffer.append(", fragmentHost="); //$NON-NLA-1$
160
			buffer.append(fragmentHost);
161
		}
162
163
		if (baseLocation != null) {
164
			buffer.append(", baseLocation="); //$NON-NLS-1$
165
			buffer.append(baseLocation);
166
		}
167
		buffer.append(", location="); //$NON-NLS-1$
168
		buffer.append(location);
169
		buffer.append(", startLevel="); //$NON-NLS-1$
170
		buffer.append(startLevel);
171
		buffer.append(", toBeStarted="); //$NON-NLS-1$
172
		buffer.append(markedAsStarted);
173
		buffer.append(", resolved="); //$NON-NLS-1$
174
		buffer.append(resolved);
175
		buffer.append(", id="); //$NON-NLS-1$
176
		buffer.append(this.bundleId);//		buffer.append(',').append(manifest == null ? "no manifest" : "manifest available");
177
		buffer.append(',').append(manifest == null ? "no manifest" : "manifest available"); //$NON-NLS-1$ //$NON-NLS-2$
178
		buffer.append(')');
179
		return buffer.toString();
180
	}
181
182
	public int hashCode() {
183
		final int prime = 31;
184
		int result = 1;
185
		result = prime * result + ((symbolicName == null) ? 0 : symbolicName.hashCode());
186
		result = prime * result + ((version == null) ? 0 : version.hashCode());
187
		return result;
188
	}
189
190
	public boolean equals(Object obj) {
191
		if (this == obj)
192
			return true;
193
194
		if (obj == null)
195
			return false;
196
197
		if (getClass() != obj.getClass())
198
			return false;
199
200
		BundleInfo other = (BundleInfo) obj;
201
		if (symbolicName == null) {
202
			if (other.symbolicName != null)
203
				return false;
204
		} else if (!symbolicName.equals(other.symbolicName))
205
			return false;
206
207
		if (version == null) {
208
			if (other.version != null)
209
				return false;
210
		} else if (!version.equals(other.version))
211
			return false;
212
213
		if (location == null || other.location == null)
214
			return true;
215
216
		//compare absolute location URIs
217
		URI absoluteLocation = baseLocation == null ? location : URIUtil.append(baseLocation, location.toString());
218
		URI otherAbsoluteLocation = other.baseLocation == null ? other.location : URIUtil.append(other.baseLocation, other.location.toString());
219
		return URIUtil.sameURI(absoluteLocation, otherAbsoluteLocation);
220
	}
221
}
(-)src/org/eclipse/equinox/internal/frameworkadmin/utils/SimpleBundlesState.java (+2 lines)
Lines 10-15 Link Here
10
 *******************************************************************************/
10
 *******************************************************************************/
11
package org.eclipse.equinox.internal.frameworkadmin.utils;
11
package org.eclipse.equinox.internal.frameworkadmin.utils;
12
12
13
import org.eclipse.equinox.frameworkadmin.BundleInfo;
14
13
import java.io.File;
15
import java.io.File;
14
import java.io.IOException;
16
import java.io.IOException;
15
import java.net.URI;
17
import java.net.URI;
(-)src/org/eclipse/equinox/internal/frameworkadmin/utils/Utils.java (-1 / +2 lines)
Lines 10-15 Link Here
10
 *******************************************************************************/
10
 *******************************************************************************/
11
package org.eclipse.equinox.internal.frameworkadmin.utils;
11
package org.eclipse.equinox.internal.frameworkadmin.utils;
12
12
13
import org.eclipse.equinox.frameworkadmin.BundleInfo;
14
13
import java.io.*;
15
import java.io.*;
14
import java.net.*;
16
import java.net.*;
15
import java.text.SimpleDateFormat;
17
import java.text.SimpleDateFormat;
Lines 18-24 Link Here
18
import java.util.zip.ZipEntry;
20
import java.util.zip.ZipEntry;
19
import java.util.zip.ZipFile;
21
import java.util.zip.ZipFile;
20
import org.eclipse.core.runtime.*;
22
import org.eclipse.core.runtime.*;
21
import org.eclipse.equinox.internal.provisional.frameworkadmin.BundleInfo;
22
import org.eclipse.osgi.service.pluginconversion.PluginConversionException;
23
import org.eclipse.osgi.service.pluginconversion.PluginConversionException;
23
import org.eclipse.osgi.service.pluginconversion.PluginConverter;
24
import org.eclipse.osgi.service.pluginconversion.PluginConverter;
24
import org.eclipse.osgi.util.ManifestElement;
25
import org.eclipse.osgi.util.ManifestElement;
(-)src/org/eclipse/equinox/internal/provisional/configuratormanipulator/ConfiguratorManipulator.java (-1 / +3 lines)
Lines 12-18 Link Here
12
12
13
import java.io.File;
13
import java.io.File;
14
import java.io.IOException;
14
import java.io.IOException;
15
import org.eclipse.equinox.internal.provisional.frameworkadmin.*;
15
import org.eclipse.equinox.frameworkadmin.BundleInfo;
16
import org.eclipse.equinox.internal.provisional.frameworkadmin.FrameworkAdmin;
17
import org.eclipse.equinox.internal.provisional.frameworkadmin.Manipulator;
16
18
17
/**
19
/**
18
 * 
20
 * 
(-)src/org/eclipse/equinox/internal/provisional/frameworkadmin/BundleInfo.java (-231 lines)
Removed Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2007, 2009 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
10
 *******************************************************************************/
11
package org.eclipse.equinox.internal.provisional.frameworkadmin;
12
13
import java.net.URI;
14
import org.eclipse.core.runtime.URIUtil;
15
16
/**
17
 * This object represents information of a bundle. This class is a copy of the BundleInfo
18
 * class in org.eclipse.equinox.simpleconfigurator
19
 *
20
 */
21
public class BundleInfo {
22
	public static final int NO_LEVEL = -1;
23
	public static final int NO_BUNDLEID = -1;
24
25
	private String symbolicName = null;
26
	private String version = null;
27
	private URI baseLocation;
28
	private URI location;
29
	private long bundleId = NO_BUNDLEID;
30
31
	private boolean markedAsStarted = false;
32
	private int startLevel = NO_LEVEL;
33
	private boolean resolved = false;
34
35
	private String manifest;
36
	private String fragmentHost;
37
38
	public BundleInfo() {
39
	}
40
41
	public BundleInfo(URI location) {
42
		this.location = location;
43
	}
44
45
	public BundleInfo(URI location, boolean started) {
46
		this.location = location;
47
		this.markedAsStarted = started;
48
	}
49
50
	public BundleInfo(URI location, int startLevel) {
51
		this.location = location;
52
		this.startLevel = startLevel;
53
	}
54
55
	public BundleInfo(URI location, int startLevel, boolean started) {
56
		this.location = location;
57
		this.startLevel = startLevel;
58
		this.markedAsStarted = started;
59
	}
60
61
	public BundleInfo(URI location, int startLevel, boolean started, long bundleId) {
62
		this.location = location;
63
		this.startLevel = startLevel;
64
		this.markedAsStarted = started;
65
		this.bundleId = bundleId;
66
	}
67
68
	public BundleInfo(String symbolic, String version, URI location, int startLevel, boolean started) {
69
		this.symbolicName = symbolic;
70
		this.version = version;
71
		this.location = location;
72
		this.markedAsStarted = started;
73
		this.startLevel = startLevel;
74
	}
75
76
	public long getBundleId() {
77
		return bundleId;
78
	}
79
80
	public URI getBaseLocation() {
81
		return baseLocation;
82
	}
83
84
	public URI getLocation() {
85
		return location;
86
	}
87
88
	public String getManifest() {
89
		return manifest;
90
	}
91
92
	public int getStartLevel() {
93
		return startLevel;
94
	}
95
96
	public String getSymbolicName() {
97
		return symbolicName;
98
	}
99
100
	public String getVersion() {
101
		return version;
102
	}
103
104
	public String getFragmentHost() {
105
		return fragmentHost;
106
	}
107
108
	public boolean isMarkedAsStarted() {
109
		return markedAsStarted;
110
	}
111
112
	public boolean isResolved() {
113
		return resolved;
114
	}
115
116
	public void setBundleId(long bundleId) {
117
		this.bundleId = bundleId;
118
	}
119
120
	public void setBaseLocation(URI baseLocation) {
121
		this.baseLocation = baseLocation;
122
	}
123
124
	public void setLocation(URI location) {
125
		this.location = location;
126
	}
127
128
	public void setManifest(String manifest) {
129
		this.manifest = manifest;
130
	}
131
132
	public void setMarkedAsStarted(boolean markedAsStarted) {
133
		this.markedAsStarted = markedAsStarted;
134
	}
135
136
	public void setResolved(boolean resolved) {
137
		this.resolved = resolved;
138
	}
139
140
	public void setStartLevel(int level) {
141
		this.startLevel = level;
142
	}
143
144
	public void setSymbolicName(String symbolicName) {
145
		this.symbolicName = symbolicName;
146
	}
147
148
	public void setVersion(String value) {
149
		this.version = value;
150
	}
151
152
	public void setFragmentHost(String fragmentHost) {
153
		this.fragmentHost = fragmentHost;
154
	}
155
156
	/* (non-Javadoc)
157
	 * @see java.lang.Object#toString()
158
	 */
159
	public String toString() {
160
		StringBuffer buffer = new StringBuffer();
161
		buffer.append("BundleInfo("); //$NON-NLS-1$
162
		if (symbolicName != null)
163
			buffer.append(symbolicName);
164
		buffer.append(", "); //$NON-NLS-1$
165
		if (version != null)
166
			buffer.append(version);
167
168
		if (fragmentHost != null) {
169
			buffer.append(", fragmentHost="); //$NON-NLA-1$
170
			buffer.append(fragmentHost);
171
		}
172
173
		if (baseLocation != null) {
174
			buffer.append(", baseLocation="); //$NON-NLS-1$
175
			buffer.append(baseLocation);
176
		}
177
		buffer.append(", location="); //$NON-NLS-1$
178
		buffer.append(location);
179
		buffer.append(", startLevel="); //$NON-NLS-1$
180
		buffer.append(startLevel);
181
		buffer.append(", toBeStarted="); //$NON-NLS-1$
182
		buffer.append(markedAsStarted);
183
		buffer.append(", resolved="); //$NON-NLS-1$
184
		buffer.append(resolved);
185
		buffer.append(", id="); //$NON-NLS-1$
186
		buffer.append(this.bundleId);//		buffer.append(',').append(manifest == null ? "no manifest" : "manifest available");
187
		buffer.append(',').append(manifest == null ? "no manifest" : "manifest available"); //$NON-NLS-1$ //$NON-NLS-2$
188
		buffer.append(')');
189
		return buffer.toString();
190
	}
191
192
	public int hashCode() {
193
		final int prime = 31;
194
		int result = 1;
195
		result = prime * result + ((symbolicName == null) ? 0 : symbolicName.hashCode());
196
		result = prime * result + ((version == null) ? 0 : version.hashCode());
197
		return result;
198
	}
199
200
	public boolean equals(Object obj) {
201
		if (this == obj)
202
			return true;
203
204
		if (obj == null)
205
			return false;
206
207
		if (getClass() != obj.getClass())
208
			return false;
209
210
		BundleInfo other = (BundleInfo) obj;
211
		if (symbolicName == null) {
212
			if (other.symbolicName != null)
213
				return false;
214
		} else if (!symbolicName.equals(other.symbolicName))
215
			return false;
216
217
		if (version == null) {
218
			if (other.version != null)
219
				return false;
220
		} else if (!version.equals(other.version))
221
			return false;
222
223
		if (location == null || other.location == null)
224
			return true;
225
226
		//compare absolute location URIs
227
		URI absoluteLocation = baseLocation == null ? location : URIUtil.append(baseLocation, location.toString());
228
		URI otherAbsoluteLocation = other.baseLocation == null ? other.location : URIUtil.append(other.baseLocation, other.location.toString());
229
		return URIUtil.sameURI(absoluteLocation, otherAbsoluteLocation);
230
	}
231
}
(-)src/org/eclipse/equinox/internal/provisional/frameworkadmin/BundlesState.java (+2 lines)
Lines 10-15 Link Here
10
 *******************************************************************************/
10
 *******************************************************************************/
11
package org.eclipse.equinox.internal.provisional.frameworkadmin;
11
package org.eclipse.equinox.internal.provisional.frameworkadmin;
12
12
13
import org.eclipse.equinox.frameworkadmin.BundleInfo;
14
13
/**
15
/**
14
 * This API is used for expecting bundles state virtually.
16
 * This API is used for expecting bundles state virtually.
15
 * 
17
 * 
(-)src/org/eclipse/equinox/internal/provisional/frameworkadmin/ConfigData.java (+1 lines)
Lines 12-17 Link Here
12
package org.eclipse.equinox.internal.provisional.frameworkadmin;
12
package org.eclipse.equinox.internal.provisional.frameworkadmin;
13
13
14
import java.util.*;
14
import java.util.*;
15
import org.eclipse.equinox.frameworkadmin.BundleInfo;
15
16
16
/**
17
/**
17
 * This object is instantiated by {@link Manipulator#getConfigData()};
18
 * This object is instantiated by {@link Manipulator#getConfigData()};
(-)src/org/eclipse/equinox/internal/provisional/frameworkadmin/Manipulator.java (+1 lines)
Lines 12-17 Link Here
12
12
13
import java.io.File;
13
import java.io.File;
14
import java.io.IOException;
14
import java.io.IOException;
15
import org.eclipse.equinox.frameworkadmin.BundleInfo;
15
import org.eclipse.equinox.internal.provisional.configuratormanipulator.ConfiguratorManipulator;
16
import org.eclipse.equinox.internal.provisional.configuratormanipulator.ConfiguratorManipulator;
16
17
17
/**
18
/**
(-).settings/org.eclipse.jdt.core.prefs (-307 / +307 lines)
Lines 1-340 Link Here
1
#Wed Jan 23 10:00:41 EST 2008
1
#Tue Mar 02 15:02:29 EST 2010
2
eclipse.preferences.version=1
2
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert
3
org.eclipse.jdt.core.builder.cleanOutputFolder=clean
3
org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line
4
org.eclipse.jdt.core.builder.duplicateResourceTask=warning
4
org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert
5
org.eclipse.jdt.core.builder.invalidClasspath=abort
5
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert
6
org.eclipse.jdt.core.builder.resourceCopyExclusionFilter=*.launch
6
org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line
7
org.eclipse.jdt.core.circularClasspath=error
7
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert
8
org.eclipse.jdt.core.classpath.exclusionPatterns=enabled
8
org.eclipse.jdt.core.compiler.problem.localVariableHiding=warning
9
org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled
9
org.eclipse.jdt.core.formatter.alignment_for_assignment=0
10
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=disabled
10
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert
11
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
12
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert
13
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert
11
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.1
14
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.1
12
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
15
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert
13
org.eclipse.jdt.core.compiler.compliance=1.3
16
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=error
14
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
17
org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false
15
org.eclipse.jdt.core.compiler.debug.localVariable=generate
18
org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false
16
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
19
org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert
17
org.eclipse.jdt.core.compiler.doc.comment.support=enabled
20
org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
18
org.eclipse.jdt.core.compiler.maxProblemPerUnit=1000
21
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert
19
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
20
org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
21
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
22
org.eclipse.jdt.core.compiler.problem.deprecation=warning
23
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
24
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled
25
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
26
org.eclipse.jdt.core.compiler.problem.emptyStatement=warning
22
org.eclipse.jdt.core.compiler.problem.emptyStatement=warning
27
org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
23
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=public
28
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
24
org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
29
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=enabled
30
org.eclipse.jdt.core.compiler.problem.fieldHiding=warning
31
org.eclipse.jdt.core.compiler.problem.finalParameterBound=ignore
32
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
33
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
34
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
35
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
36
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=ignore
37
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=warning
25
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=warning
38
org.eclipse.jdt.core.compiler.problem.invalidJavadoc=error
26
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert
39
org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=private
27
org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert
40
org.eclipse.jdt.core.compiler.problem.localVariableHiding=warning
28
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert
41
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
29
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert
42
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
30
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert
43
org.eclipse.jdt.core.compiler.problem.missingJavadocComments=ignore
31
org.eclipse.jdt.core.compiler.problem.fieldHiding=warning
44
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=enabled
32
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
33
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert
34
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=warning
35
org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert
36
org.eclipse.jdt.core.formatter.blank_lines_after_imports=1
45
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public
37
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public
46
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=ignore
38
org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert
47
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=enabled
39
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
48
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=public
49
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
50
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
51
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
52
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
40
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
53
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=warning
54
org.eclipse.jdt.core.compiler.problem.nullReference=warning
55
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
56
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
41
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
57
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=warning
42
org.eclipse.jdt.core.formatter.comment.format_source_code=true
58
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
43
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert
59
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
44
org.eclipse.jdt.core.compiler.debug.localVariable=generate
60
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
45
org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
61
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
46
org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert
62
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
47
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert
63
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
64
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=warning
65
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
66
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
67
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
68
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
69
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
70
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning
71
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
72
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning
73
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
74
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=enabled
75
org.eclipse.jdt.core.compiler.problem.unusedImport=error
76
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
77
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
78
org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
79
org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
80
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=enabled
81
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=enabled
82
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=error
83
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
84
org.eclipse.jdt.core.compiler.source=1.3
85
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
86
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
87
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
88
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
89
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16
90
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
91
org.eclipse.jdt.core.formatter.alignment_for_assignment=0
92
org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
93
org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
94
org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
95
org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0
96
org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
97
org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
98
org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
99
org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16
100
org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
101
org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
102
org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16
103
org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16
104
org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16
105
org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16
106
org.eclipse.jdt.core.formatter.blank_lines_after_imports=1
107
org.eclipse.jdt.core.formatter.blank_lines_after_package=1
108
org.eclipse.jdt.core.formatter.blank_lines_before_field=0
109
org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0
110
org.eclipse.jdt.core.formatter.blank_lines_before_imports=1
111
org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1
48
org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1
112
org.eclipse.jdt.core.formatter.blank_lines_before_method=1
49
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert
50
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
51
org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
52
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=warning
53
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert
54
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert
113
org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1
55
org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1
114
org.eclipse.jdt.core.formatter.blank_lines_before_package=0
56
org.eclipse.jdt.core.classpath.exclusionPatterns=enabled
115
org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1
57
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16
116
org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1
58
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
117
org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line
59
org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
118
org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line
60
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert
119
org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line
120
org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line
121
org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line
122
org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line
123
org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line
124
org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line
125
org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line
126
org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line
61
org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line
127
org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line
62
org.eclipse.jdt.core.compiler.codegen.unusedLocal=optimize out
128
org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false
129
org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false
130
org.eclipse.jdt.core.formatter.comment.format_block_comments=false
131
org.eclipse.jdt.core.formatter.comment.format_header=false
63
org.eclipse.jdt.core.formatter.comment.format_header=false
132
org.eclipse.jdt.core.formatter.comment.format_html=true
64
org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert
133
org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=false
65
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert
134
org.eclipse.jdt.core.formatter.comment.format_line_comments=false
66
org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert
135
org.eclipse.jdt.core.formatter.comment.format_source_code=true
67
org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16
136
org.eclipse.jdt.core.formatter.comment.indent_parameter_description=false
68
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert
137
org.eclipse.jdt.core.formatter.comment.indent_root_tags=false
69
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert
138
org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
70
org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert
139
org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not insert
71
org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16
72
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert
140
org.eclipse.jdt.core.formatter.comment.line_length=80
73
org.eclipse.jdt.core.formatter.comment.line_length=80
141
org.eclipse.jdt.core.formatter.compact_else_if=true
74
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert
142
org.eclipse.jdt.core.formatter.continuation_indentation=2
143
org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2
144
org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
145
org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true
146
org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true
147
org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true
148
org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true
149
org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true
150
org.eclipse.jdt.core.formatter.indent_empty_lines=false
151
org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true
152
org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
153
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
75
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
154
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true
76
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert
155
org.eclipse.jdt.core.formatter.indentation.size=4
77
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert
156
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
78
org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
157
org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
79
org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert
158
org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
80
org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled
159
org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert
160
org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert
161
org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert
162
org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert
163
org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
164
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
165
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=do not insert
166
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
81
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert
167
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
82
org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert
168
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert
83
org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line
169
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert
84
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert
85
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
86
org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert
87
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert
88
org.eclipse.jdt.core.builder.cleanOutputFolder=clean
89
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=enabled
90
org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=do not insert
170
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert
91
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert
171
org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert
92
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
93
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert
94
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert
95
org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=false
96
org.eclipse.jdt.core.formatter.continuation_indentation=2
97
org.eclipse.jdt.core.compiler.problem.invalidJavadoc=error
98
org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert
99
org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16
100
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert
101
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
172
org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
102
org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert
173
org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert
103
org.eclipse.jdt.core.formatter.blank_lines_before_method=1
174
org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert
104
org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=enabled
175
org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert
105
org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=false
176
org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert
106
org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16
177
org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
107
org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1
178
org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert
108
org.eclipse.jdt.core.builder.resourceCopyExclusionFilter=*.launch
109
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert
179
org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert
110
org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert
180
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert
111
org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line
181
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert
112
org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert
182
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert
113
org.eclipse.jdt.core.incompleteClasspath=error
183
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert
114
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert
184
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert
115
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16
185
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert
116
org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true
186
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert
117
org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=enabled
187
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert
118
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert
188
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert
119
org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0
189
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert
120
org.eclipse.jdt.core.formatter.comment.format_block_comments=false
190
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert
121
org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
191
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert
122
org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16
192
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert
123
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert
193
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert
124
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=insert
194
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert
125
org.eclipse.jdt.core.formatter.comment.format_html=true
195
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert
126
org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert
196
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert
127
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert
197
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert
128
org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert
198
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert
129
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert
199
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert
130
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert
200
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert
131
org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16
201
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert
132
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert
202
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert
133
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert
203
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert
134
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
204
org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert
135
org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
205
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert
136
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
206
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert
207
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert
208
org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=do not insert
137
org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=do not insert
209
org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert
138
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
210
org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert
139
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=enabled
211
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert
140
org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert
212
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert
141
org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert
213
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert
142
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=warning
143
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert
144
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert
145
org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line
146
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning
147
org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert
148
org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert
149
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert
150
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
151
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
152
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert
153
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
154
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
155
org.eclipse.jdt.core.compiler.problem.forbiddenReference=error
156
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert
157
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert
158
org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert
159
org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert
160
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert
161
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
214
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert
162
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert
215
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert
163
org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true
216
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert
164
org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=do not insert
217
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert
165
org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16
218
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert
166
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert
219
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert
167
org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert
220
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert
168
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert
169
org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert
170
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert
171
org.eclipse.jdt.core.circularClasspath=error
172
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert
221
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert
173
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert
222
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert
174
org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert
223
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert
175
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16
224
org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert
176
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert
225
org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert
177
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert
226
org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert
178
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert
179
org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line
180
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert
181
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=ignore
182
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert
183
org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert
184
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert
185
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert
186
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert
187
org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0
188
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning
189
org.eclipse.jdt.core.formatter.tabulation.char=tab
190
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert
191
org.eclipse.jdt.core.formatter.wrap_before_binary_operator=true
227
org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert
192
org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert
228
org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert
193
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert
229
org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert
194
org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false
230
org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert
195
org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false
231
org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert
196
org.eclipse.jdt.core.formatter.compact_else_if=true
232
org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert
197
org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert
233
org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert
198
org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert
234
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert
199
org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line
235
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert
200
org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false
236
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert
201
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
237
org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=do not insert
202
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
238
org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert
203
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
239
org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert
204
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert
205
org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert
240
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert
206
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert
241
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert
207
org.eclipse.jdt.core.compiler.problem.finalParameterBound=ignore
242
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert
208
org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert
243
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert
244
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert
245
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert
246
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert
247
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert
248
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert
249
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert
250
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert
251
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert
252
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert
253
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert
254
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=insert
255
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert
209
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert
256
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=insert
257
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert
258
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert
259
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert
260
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert
261
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert
262
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert
263
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert
264
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert
265
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert
210
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert
266
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert
211
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert
267
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert
212
org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert
268
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert
213
org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true
269
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert
214
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
270
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert
215
org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
271
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert
216
org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false
272
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert
217
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert
273
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert
218
org.eclipse.jdt.core.formatter.comment.format_line_comments=false
274
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert
219
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert
275
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert
220
org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false
276
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert
221
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert
277
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert
222
org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert
278
org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert
223
org.eclipse.jdt.core.formatter.comment.indent_parameter_description=false
279
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert
280
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert
224
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert
281
org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert
225
org.eclipse.jdt.core.formatter.indentation.size=4
282
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert
226
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=enabled
283
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert
227
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert
228
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
229
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert
230
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
231
org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert
232
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert
233
org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16
234
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert
284
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert
235
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert
285
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert
236
org.eclipse.jdt.core.formatter.comment.indent_root_tags=false
286
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert
237
org.eclipse.jdt.core.compiler.problem.deprecation=warning
238
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
287
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert
239
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert
240
org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=private
241
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
242
org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16
243
org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line
244
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert
245
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert
246
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=enabled
247
org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert
248
org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false
249
org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true
250
org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert
251
org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert
252
org.eclipse.jdt.core.formatter.blank_lines_before_package=0
288
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert
253
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert
289
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert
254
org.eclipse.jdt.core.formatter.indent_empty_lines=false
290
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert
255
org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert
291
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert
256
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16
292
org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert
293
org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert
294
org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert
295
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert
257
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert
296
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert
258
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert
297
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert
259
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
298
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert
260
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert
299
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert
261
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
300
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert
262
org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line
301
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert
263
org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
302
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert
264
org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
303
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert
265
org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert
304
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert
266
org.eclipse.jdt.core.compiler.problem.unusedImport=error
305
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert
267
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert
268
org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false
269
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert
270
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert
271
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true
272
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert
306
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
273
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert
274
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
275
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert
276
org.eclipse.jdt.core.builder.invalidClasspath=abort
277
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert
278
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert
279
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert
280
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert
281
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
282
org.eclipse.jdt.core.incompatibleJDKLevel=ignore
283
org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert
284
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert
285
org.eclipse.jdt.core.compiler.problem.nullReference=warning
307
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert
286
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert
308
org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert
287
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert
309
org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert
288
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
310
org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert
289
org.eclipse.jdt.core.compiler.problem.missingJavadocComments=ignore
311
org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert
290
org.eclipse.jdt.core.formatter.blank_lines_before_imports=1
312
org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert
291
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert
313
org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert
292
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert
314
org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert
293
org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
315
org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert
294
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
295
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=disabled
296
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
297
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert
298
org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert
316
org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert
299
org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert
317
org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert
300
org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert
318
org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert
301
org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert
319
org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert
302
org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2
320
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert
321
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert
322
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert
323
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert
324
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert
325
org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false
326
org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false
327
org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false
328
org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false
329
org.eclipse.jdt.core.formatter.lineSplit=800
303
org.eclipse.jdt.core.formatter.lineSplit=800
330
org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false
304
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=enabled
331
org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false
305
org.eclipse.jdt.core.compiler.maxProblemPerUnit=1000
332
org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0
306
org.eclipse.jdt.core.compiler.source=1.3
333
org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1
307
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=do not insert
334
org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=false
308
org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert
335
org.eclipse.jdt.core.formatter.tabulation.char=tab
336
org.eclipse.jdt.core.formatter.tabulation.size=4
309
org.eclipse.jdt.core.formatter.tabulation.size=4
337
org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false
310
org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
338
org.eclipse.jdt.core.formatter.wrap_before_binary_operator=true
311
org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line
339
org.eclipse.jdt.core.incompatibleJDKLevel=ignore
312
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
340
org.eclipse.jdt.core.incompleteClasspath=error
313
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert
314
org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1
315
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert
316
org.eclipse.jdt.core.builder.duplicateResourceTask=warning
317
org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert
318
org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert
319
org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert
320
org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=insert
321
org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
322
org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert
323
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
324
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
325
org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert
326
org.eclipse.jdt.core.compiler.doc.comment.support=enabled
327
org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true
328
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert
329
org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert
330
org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert
331
org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert
332
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
333
eclipse.preferences.version=1
334
org.eclipse.jdt.core.compiler.problem.missingJavadocTags=ignore
335
org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert
336
org.eclipse.jdt.core.compiler.compliance=1.3
337
org.eclipse.jdt.core.formatter.blank_lines_after_package=1
338
org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16
339
org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert
340
org.eclipse.jdt.core.formatter.blank_lines_before_field=0
(-)META-INF/MANIFEST.MF (-1 / +2 lines)
Lines 6-11 Link Here
6
Bundle-Vendor: %providerName
6
Bundle-Vendor: %providerName
7
Bundle-Localization: plugin
7
Bundle-Localization: plugin
8
Import-Package: org.eclipse.core.runtime.internal.adaptor,
8
Import-Package: org.eclipse.core.runtime.internal.adaptor,
9
 org.eclipse.equinox.frameworkadmin;version="[2.0.0,3.0.0)",
9
 org.eclipse.equinox.internal.frameworkadmin.utils,
10
 org.eclipse.equinox.internal.frameworkadmin.utils,
10
 org.eclipse.equinox.internal.provisional.configuratormanipulator,
11
 org.eclipse.equinox.internal.provisional.configuratormanipulator,
11
 org.eclipse.equinox.internal.provisional.frameworkadmin,
12
 org.eclipse.equinox.internal.provisional.frameworkadmin,
Lines 18-24 Link Here
18
 org.osgi.service.log;version="1.3.0",
19
 org.osgi.service.log;version="1.3.0",
19
 org.osgi.service.startlevel;version="1.0.0",
20
 org.osgi.service.startlevel;version="1.0.0",
20
 org.osgi.util.tracker;version="1.3.0"
21
 org.osgi.util.tracker;version="1.3.0"
21
Export-Package: org.eclipse.equinox.internal.frameworkadmin.equinox;x-friends:="org.eclipse.equinox.p2.publisher,org.eclipse.equinox.p2.metadata.generator",
22
Export-Package: org.eclipse.equinox.internal.frameworkadmin.equinox;x-friends:="org.eclipse.equinox.p2.publisher,org.eclipse.equinox.p2.metadata.generator,org.eclipse.equinox.simpleconfigurator.manipulator",
22
 org.eclipse.equinox.internal.frameworkadmin.equinox.utils;x-internal:=true
23
 org.eclipse.equinox.internal.frameworkadmin.equinox.utils;x-internal:=true
23
Require-Bundle: org.eclipse.equinox.common
24
Require-Bundle: org.eclipse.equinox.common
24
Bundle-RequiredExecutionEnvironment: CDC-1.1/Foundation-1.1,
25
Bundle-RequiredExecutionEnvironment: CDC-1.1/Foundation-1.1,
(-)src/org/eclipse/equinox/internal/frameworkadmin/equinox/EquinoxBundlesState.java (+1 lines)
Lines 15-20 Link Here
15
import java.net.URISyntaxException;
15
import java.net.URISyntaxException;
16
import java.util.*;
16
import java.util.*;
17
import org.eclipse.core.runtime.internal.adaptor.EclipseEnvironmentInfo;
17
import org.eclipse.core.runtime.internal.adaptor.EclipseEnvironmentInfo;
18
import org.eclipse.equinox.frameworkadmin.BundleInfo;
18
import org.eclipse.equinox.internal.frameworkadmin.equinox.utils.FileUtils;
19
import org.eclipse.equinox.internal.frameworkadmin.equinox.utils.FileUtils;
19
import org.eclipse.equinox.internal.frameworkadmin.utils.SimpleBundlesState;
20
import org.eclipse.equinox.internal.frameworkadmin.utils.SimpleBundlesState;
20
import org.eclipse.equinox.internal.frameworkadmin.utils.Utils;
21
import org.eclipse.equinox.internal.frameworkadmin.utils.Utils;
(-)src/org/eclipse/equinox/internal/frameworkadmin/equinox/EquinoxFwConfigFileParser.java (+1 lines)
Lines 14-19 Link Here
14
import java.net.*;
14
import java.net.*;
15
import java.util.*;
15
import java.util.*;
16
import org.eclipse.core.runtime.URIUtil;
16
import org.eclipse.core.runtime.URIUtil;
17
import org.eclipse.equinox.frameworkadmin.BundleInfo;
17
import org.eclipse.equinox.internal.frameworkadmin.equinox.utils.FileUtils;
18
import org.eclipse.equinox.internal.frameworkadmin.equinox.utils.FileUtils;
18
import org.eclipse.equinox.internal.frameworkadmin.utils.Utils;
19
import org.eclipse.equinox.internal.frameworkadmin.utils.Utils;
19
import org.eclipse.equinox.internal.provisional.frameworkadmin.*;
20
import org.eclipse.equinox.internal.provisional.frameworkadmin.*;
(-)src/org/eclipse/equinox/internal/frameworkadmin/equinox/EquinoxManipulatorImpl.java (+1 lines)
Lines 15-20 Link Here
15
import java.net.*;
15
import java.net.*;
16
import java.util.*;
16
import java.util.*;
17
import org.eclipse.core.runtime.*;
17
import org.eclipse.core.runtime.*;
18
import org.eclipse.equinox.frameworkadmin.BundleInfo;
18
import org.eclipse.equinox.internal.frameworkadmin.utils.SimpleBundlesState;
19
import org.eclipse.equinox.internal.frameworkadmin.utils.SimpleBundlesState;
19
import org.eclipse.equinox.internal.frameworkadmin.utils.Utils;
20
import org.eclipse.equinox.internal.frameworkadmin.utils.Utils;
20
import org.eclipse.equinox.internal.provisional.configuratormanipulator.ConfiguratorManipulator;
21
import org.eclipse.equinox.internal.provisional.configuratormanipulator.ConfiguratorManipulator;

Return to bug 304416