errors | others warnings | infos | forbidden warnings | discouraged warnings |
top | others warnings | infos | forbidden warnings | discouraged warnings |
top | errors | infos | forbidden warnings | discouraged warnings |
errors | others warnings | forbidden warnings | discouraged warnings |
top | errors | infos | others warnings | discouraged warnings |
top | errors | infos | others warnings | forbidden warnings |
1. WARNING in /src/org/eclipse/ui/examples/jobs/actions/DebugJobManagerAction.java (at line 16) import org.eclipse.core.internal.jobs.JobManager; Discouraged access: The type 'JobManager' is not API (restriction on classpath entry '/opt/public/eclipse/builds/4I/gitCache/eclipse.platform.releng.aggregator/eclipse.platform.runtime/bundles/org.eclipse.core.jobs/target/classes') |
2. WARNING in /src/org/eclipse/ui/examples/jobs/actions/DebugJobManagerAction.java (at line 50) System.out.println("" + jobs[i].getClass().getName() + " state: " + JobManager.printState(jobs[i].getState())); //$NON-NLS-1$ //$NON-NLS-2$ Discouraged access: The type 'JobManager' is not API (restriction on classpath entry '/opt/public/eclipse/builds/4I/gitCache/eclipse.platform.releng.aggregator/eclipse.platform.runtime/bundles/org.eclipse.core.jobs/target/classes') |
3. WARNING in /src/org/eclipse/ui/examples/jobs/actions/DebugJobManagerAction.java (at line 50) System.out.println("" + jobs[i].getClass().getName() + " state: " + JobManager.printState(jobs[i].getState())); //$NON-NLS-1$ //$NON-NLS-2$ Discouraged access: The method 'JobManager.printState(int)' is not API (restriction on classpath entry '/opt/public/eclipse/builds/4I/gitCache/eclipse.platform.releng.aggregator/eclipse.platform.runtime/bundles/org.eclipse.core.jobs/target/classes') |
1. WARNING in /src/org/eclipse/ui/examples/jobs/BusyShowWhileDialog.java (at line 25) import org.eclipse.ui.internal.progress.ProgressManager; Discouraged access: The type 'ProgressManager' is not API (restriction on classpath entry '/opt/public/eclipse/builds/4I/gitCache/eclipse.platform.releng.aggregator/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/target/classes') |
2. WARNING in /src/org/eclipse/ui/examples/jobs/BusyShowWhileDialog.java (at line 51) ProgressManager.getInstance().busyCursorWhile(monitor -> { Discouraged access: The type 'ProgressManager' is not API (restriction on classpath entry '/opt/public/eclipse/builds/4I/gitCache/eclipse.platform.releng.aggregator/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/target/classes') |
3. WARNING in /src/org/eclipse/ui/examples/jobs/BusyShowWhileDialog.java (at line 51) ProgressManager.getInstance().busyCursorWhile(monitor -> { Discouraged access: The method 'ProgressManager.getInstance()' is not API (restriction on classpath entry '/opt/public/eclipse/builds/4I/gitCache/eclipse.platform.releng.aggregator/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/target/classes') |
4. WARNING in /src/org/eclipse/ui/examples/jobs/BusyShowWhileDialog.java (at line 51) ProgressManager.getInstance().busyCursorWhile(monitor -> { long time = System.currentTimeMillis(); long delay = PlatformUI.getWorkbench().getProgressService().getLongOperationTime(); long end = time + delay + delay; while (end > System.currentTimeMillis()) { final Shell myShell = BusyShowWhileDialog.this.getShell(); myShell.getDisplay().asyncExec(() -> { if (myShell.isDisposed()) return; myShell.getDisplay().sleep(); myShell.setText(String.valueOf(System.currentTimeMillis())); }); } }); Discouraged access: The method 'ProgressManager.busyCursorWhile(IRunnableWithProgress)' is not API (restriction on classpath entry '/opt/public/eclipse/builds/4I/gitCache/eclipse.platform.releng.aggregator/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/target/classes') |