Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-releng-dev] [eclipse-build]Build I20110621-0800 (Timestamp: 201106210800):Compile errors in build

Build I20110621-0800 (Timestamp: 201106210800):  Compile errors in build.  See attached compile logs.
Title: Compiler log for org.eclipse.equinox.console.supportability_1.0.0.v20110620

Compiler log for org.eclipse.equinox.console.supportability_1.0.0.v20110620 : @dot.xml

TOTAL : ERRORS: 33, WARNINGS: 42

errors others warnings forbidden warnings discouraged warnings

ERRORS

top others warnings forbidden warnings discouraged warnings

/src/org/eclipse/equinox/console/ssh/SshServ.java : 19 errors :

1. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 17)
import org.apache.sshd.SshServer;
The import org.apache.sshd cannot be resolved
2. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 18)
import org.apache.sshd.server.PasswordAuthenticator;
The import org.apache.sshd cannot be resolved
3. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 19)
import org.apache.sshd.server.jaas.JaasPasswordAuthenticator;
The import org.apache.sshd cannot be resolved
4. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 20)
import org.apache.sshd.server.keyprovider.SimpleGeneratorHostKeyProvider;
The import org.apache.sshd cannot be resolved
5. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 30)
private SshServer sshServer = null;
SshServer cannot be resolved to a type
6. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 45)
sshServer = SshServer.setUpDefaultServer();
SshServer cannot be resolved to a type
7. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 45)
sshServer = SshServer.setUpDefaultServer();
SshServer cannot be resolved
8. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 51)
sshServer.setHost(host);
SshServer cannot be resolved to a type
9. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 53)
sshServer.setPort(port);
SshServer cannot be resolved to a type
10. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 54)
sshServer.setKeyPairProvider(new SimpleGeneratorHostKeyProvider(System.getProperty(SSH_KEYSTORE_PROP, SSH_KEYSTORE_PROP_DEFAULT)));
SshServer cannot be resolved to a type
11. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 54)
sshServer.setKeyPairProvider(new SimpleGeneratorHostKeyProvider(System.getProperty(SSH_KEYSTORE_PROP, SSH_KEYSTORE_PROP_DEFAULT)));
SimpleGeneratorHostKeyProvider cannot be resolved to a type
12. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 55)
sshServer.setShellFactory(shellFactory);
SshServer cannot be resolved to a type
13. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 56)
sshServer.setPasswordAuthenticator(createJaasPasswordAuthenticator());
SshServer cannot be resolved to a type
14. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 56)
sshServer.setPasswordAuthenticator(createJaasPasswordAuthenticator());
The method createJaasPasswordAuthenticator() from the type SshServ refers to the missing type PasswordAuthenticator
15. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 58)
sshServer.start();
SshServer cannot be resolved to a type
16. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 66)
sshServer.stop(true);
SshServer cannot be resolved to a type
17. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 72)
private PasswordAuthenticator createJaasPasswordAuthenticator() {
PasswordAuthenticator cannot be resolved to a type
18. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 73)
JaasPasswordAuthenticator jaasPasswordAuthenticator = new JaasPasswordAuthenticator();
JaasPasswordAuthenticator cannot be resolved to a type
19. ERROR in /src/org/eclipse/equinox/console/ssh/SshServ.java
 (at line 73)
JaasPasswordAuthenticator jaasPasswordAuthenticator = new JaasPasswordAuthenticator();
JaasPasswordAuthenticator cannot be resolved to a type

/src/org/eclipse/equinox/console/ssh/SshShell.java : 9 errors :

1. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 24)
import org.apache.sshd.server.Command;
The import org.apache.sshd cannot be resolved
2. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 25)
import org.apache.sshd.server.Environment;
The import org.apache.sshd cannot be resolved
3. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 26)
import org.apache.sshd.server.ExitCallback;
The import org.apache.sshd cannot be resolved
4. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 47)
public class SshShell implements Command, Closeable {
Command cannot be resolved to a type
5. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 53)
private ExitCallback callback;
ExitCallback cannot be resolved to a type
6. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 99)
public void setExitCallback(ExitCallback callback) {
ExitCallback cannot be resolved to a type
7. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 100)
this.callback = callback;
ExitCallback cannot be resolved to a type
8. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 103)
public void start(Environment env) throws IOException {
Environment cannot be resolved to a type
9. ERROR in /src/org/eclipse/equinox/console/ssh/SshShell.java
 (at line 185)
callback.onExit(0);
ExitCallback cannot be resolved to a type

/src/org/eclipse/equinox/console/ssh/SshShellFactory.java : 5 errors :

1. ERROR in /src/org/eclipse/equinox/console/ssh/SshShellFactory.java
 (at line 18)
import org.apache.sshd.common.Factory;
The import org.apache.sshd cannot be resolved
2. ERROR in /src/org/eclipse/equinox/console/ssh/SshShellFactory.java
 (at line 19)
import org.apache.sshd.server.Command;
The import org.apache.sshd cannot be resolved
3. ERROR in /src/org/eclipse/equinox/console/ssh/SshShellFactory.java
 (at line 26)
public class SshShellFactory implements Factory<Command> {
Factory cannot be resolved to a type
4. ERROR in /src/org/eclipse/equinox/console/ssh/SshShellFactory.java
 (at line 26)
public class SshShellFactory implements Factory<Command> {
Command cannot be resolved to a type
5. ERROR in /src/org/eclipse/equinox/console/ssh/SshShellFactory.java
 (at line 37)
public Command create() {
Command cannot be resolved to a type

OTHER WARNINGS

top errors forbidden warnings discouraged warnings

/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java : 37 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 296)
private static boolean matchCommand(String command, String input, int minLength) {
The method matchCommand(String, String, int) from the type EquinoxCommandProvider is never used locally
2. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1314)
ServiceReference envInfoRef = context.getServiceReference(EnvironmentInfo.class.getName());
ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized
3. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1317)
EnvironmentInfo envInfo = context.getService(envInfoRef);
Type safety: Unchecked invocation getService(ServiceReference) of the generic method getService(ServiceReference<S>) of type BundleContext
4. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1317)
EnvironmentInfo envInfo = context.getService(envInfoRef);
Type safety: The _expression_ of type ServiceReference needs unchecked conversion to conform to ServiceReference<EnvironmentInfo>

/src/org/eclipse/equinox/console/commands/EquinoxCommandsConverter.java : 5 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandsConverter.java
 (at line 44)
List<String> args = (List<String>) in;
Type safety: Unchecked cast from Object to List<String>
2. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandsConverter.java
 (at line 119)
List<Dictionary<?, ?>> list = (List<Dictionary<?, ?>>) target;
Type safety: Unchecked cast from Object to List<Dictionary<?,?>>

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings

/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java : 37 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 34)
import org.eclipse.osgi.framework.internal.core.AbstractBundle;
Discouraged access: The type AbstractBundle is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
2. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 35)
import org.eclipse.osgi.framework.internal.core.Util;
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
3. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 36)
import org.eclipse.osgi.internal.profile.Profile;
Discouraged access: The type Profile is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
4. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1039)
ProtectionDomain domain = ((AbstractBundle)bundle).getProtectionDomain();
Discouraged access: The method getProtectionDomain() from the type AbstractBundle is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
5. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1039)
ProtectionDomain domain = ((AbstractBundle)bundle).getProtectionDomain();
Discouraged access: The type AbstractBundle is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
6. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1269)
headers.add(((AbstractBundle)bundle).getHeaders());
Discouraged access: The method getHeaders() from the type AbstractBundle is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
7. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1269)
headers.add(((AbstractBundle)bundle).getHeaders());
Discouraged access: The type AbstractBundle is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
8. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1447)
Util.sortByString(threadGroups);
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
9. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1447)
Util.sortByString(threadGroups);
Discouraged access: The method sortByString(Object[]) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
10. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1452)
Util.sortByString(threads);
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
11. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1452)
Util.sortByString(threads);
Discouraged access: The method sortByString(Object[]) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
12. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
13. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
14. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
15. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
16. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
17. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
18. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
19. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
20. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
21. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
22. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
23. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1464)
sb.append(Util.toString(simpleClassName(tg), 18)).append(" ").append(Util.toString(tg.getName(), 21)).append(" ").append(Util.toString(parent, 16)).append(Util.toString(Integer.valueOf(tg.getMaxPriority()), 3)).append(Util.toString(Integer.valueOf(local), 4)).append("/").append(Util.toString(String.valueOf(all), 6)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
24. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1473)
sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(Integer.valueOf(t.getPriority()), 3)); //$NON-NLS-1$ //$NON-NLS-2$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
25. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1473)
sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(Integer.valueOf(t.getPriority()), 3)); //$NON-NLS-1$ //$NON-NLS-2$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
26. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1473)
sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(Integer.valueOf(t.getPriority()), 3)); //$NON-NLS-1$ //$NON-NLS-2$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
27. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1473)
sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(Integer.valueOf(t.getPriority()), 3)); //$NON-NLS-1$ //$NON-NLS-2$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
28. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1473)
sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(Integer.valueOf(t.getPriority()), 3)); //$NON-NLS-1$ //$NON-NLS-2$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
29. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1473)
sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(Integer.valueOf(t.getPriority()), 3)); //$NON-NLS-1$ //$NON-NLS-2$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
30. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1473)
sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(Integer.valueOf(t.getPriority()), 3)); //$NON-NLS-1$ //$NON-NLS-2$
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
31. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1473)
sb.append(Util.toString(simpleClassName(t), 18)).append(" ").append(Util.toString(t.getName(), 21)).append(" ").append(Util.toString(t.getThreadGroup().getName(), 16)).append(Util.toString(Integer.valueOf(t.getPriority()), 3)); //$NON-NLS-1$ //$NON-NLS-2$
Discouraged access: The method toString(Object, int) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
32. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1638)
System.out.println(Profile.getProfileLog());
Discouraged access: The type Profile is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
33. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java
 (at line 1638)
System.out.println(Profile.getProfileLog());
Discouraged access: The method getProfileLog() from the type Profile is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot

/src/org/eclipse/equinox/console/commands/EquinoxCommandsConverter.java : 5 warnings :

DISCOURAGED ACCESS WARNINGS
1. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandsConverter.java
 (at line 21)
import org.eclipse.osgi.framework.internal.core.Util;
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
2. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandsConverter.java
 (at line 141)
Util.sortByString(keys);
Discouraged access: The type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot
3. WARNING in /src/org/eclipse/equinox/console/commands/EquinoxCommandsConverter.java
 (at line 141)
Util.sortByString(keys);
Discouraged access: The method sortByString(Object[]) from the type Util is not accessible due to restriction on classpath entry /builds/I201106210800/src/plugins/org.eclipse.osgi/@dot

Back to the top