org.eclipse.jem.util.logger.proxy.Logger.logWarning()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(5.5k)|赞(0)|评价(0)|浏览(262)

本文整理了Java中org.eclipse.jem.util.logger.proxy.Logger.logWarning()方法的一些代码示例,展示了Logger.logWarning()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Logger.logWarning()方法的具体详情如下:
包路径:org.eclipse.jem.util.logger.proxy.Logger
类名称:Logger
方法名:logWarning

Logger.logWarning介绍

[英]Log the message as warning.
[中]将消息记录为警告。

代码示例

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee.core

  1. public static void warn(String message) {
  2. org.eclipse.jem.util.logger.proxy.Logger.getLogger().logWarning(message);
  3. }
  4. }

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee.core

  1. public void warning(SAXParseException exception) throws SAXException {
  2. Logger.getLogger().logWarning(exception);
  3. }
  4. };

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee.core

  1. public static void warn(Throwable e){
  2. org.eclipse.jem.util.logger.proxy.Logger.getLogger().logWarning(e);
  3. }

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee.ejb

  1. public static IPath getInstallLocation() {
  2. if (location == null) {
  3. URL url = getInstallURL();
  4. try {
  5. String installLocation = ((PlatformURLConnection) url.openConnection()).getURLAsLocal().getFile();
  6. location = new Path(installLocation);
  7. } catch (IOException e) {
  8. org.eclipse.jem.util.logger.proxy.Logger.getLogger().logWarning(J2EEPluginResourceHandler.getString("Install_Location_Error_", new Object[]{url}) + e); //$NON-NLS-1$
  9. }
  10. }
  11. return location;
  12. }

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee.ui

  1. public static IPath getInstallLocation() {
  2. if (location == null) {
  3. URL url = getInstallURL();
  4. try {
  5. String installLocation = ((PlatformURLConnection) url.openConnection()).getURLAsLocal().getFile();
  6. location = new Path(installLocation);
  7. } catch (IOException e) {
  8. org.eclipse.jem.util.logger.proxy.Logger.getLogger().logWarning(J2EEPluginResourceHandler.getString("Install_Location_Error_", new Object[]{url}) + e); //$NON-NLS-1$
  9. }
  10. }
  11. return location;
  12. }

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee

  1. public static IPath getInstallLocation() {
  2. if (location == null) {
  3. URL url = getInstallURL();
  4. try {
  5. String installLocation = ((PlatformURLConnection) url.openConnection()).getURLAsLocal().getFile();
  6. location = new Path(installLocation);
  7. } catch (IOException e) {
  8. org.eclipse.jem.util.logger.proxy.Logger.getLogger().logWarning(J2EEPluginResourceHandler.getString("Install_Location_Error_", new Object[]{url}) + e); //$NON-NLS-1$
  9. }
  10. }
  11. return location;
  12. }

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee

  1. /**
  2. * This gets a .gif from the icons folder.
  3. */
  4. public static URL getImageURL(String key, Bundle bundle) {
  5. String gif = "/" + key + ".gif"; //$NON-NLS-1$ //$NON-NLS-2$
  6. IPath path = null;
  7. for (int i = 0; i < ICON_DIRS.length; i++) {
  8. path = new Path(ICON_DIRS[i]).append(gif);
  9. if (Platform.find(bundle,path) == null)
  10. continue;
  11. try {
  12. return new URL( bundle.getEntry("/"), path.toString()); //$NON-NLS-1$
  13. } catch (MalformedURLException exception) {
  14. org.eclipse.jem.util.logger.proxy.Logger.getLogger().logWarning(J2EEPluginResourceHandler.getString("Load_Image_Error_", new Object[]{key})); //$NON-NLS-1$
  15. exception.printStackTrace();
  16. continue;
  17. }
  18. }
  19. return null;
  20. }

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee

  1. /**
  2. * @param pluginId
  3. * @return
  4. */
  5. protected boolean hasOutputDirectory(String pluginId) {
  6. Bundle bundle = Platform.getBundle(pluginId);
  7. URL outputDirectory = Platform.find(bundle,new Path("bin")); //$NON-NLS-1$
  8. if (outputDirectory == null)
  9. return false;
  10. URL installLocation = null;
  11. try {
  12. installLocation = Platform.asLocalURL(outputDirectory);
  13. } catch (IOException e) {
  14. Logger.getLogger().logWarning(J2EEPluginResourceHandler.getString("Install_Location_Error_", new Object[]{installLocation}) + e); //$NON-NLS-1$
  15. }
  16. File outputDirectoryFile = new File(installLocation.getPath());// new File(location);
  17. return outputDirectoryFile.canRead() && outputDirectoryFile.isDirectory() && outputDirectoryFile.listFiles().length > 0;
  18. }

代码示例来源:origin: org.eclipse/org.eclipse.wst.common.emfworkbench.integration

  1. private void addEditModelResource(EditModelResource res) {
  2. boolean enabled = false;
  3. try {
  4. if (res.isCore()) {
  5. enabled = true;
  6. } else {
  7. IEnablementIdentifier identifier = res.getEnablementIdentifier(getProject());
  8. registerInterest(identifier, res);
  9. enabled = identifier.isEnabled();
  10. }
  11. } catch (RuntimeException re) {
  12. Logger.getLogger().logWarning(re);
  13. }
  14. if (enabled) {
  15. URI uri = res.getURI();
  16. knownResourceUris.add(uri);
  17. if (res.isAutoLoad()) {
  18. ResourceSetWorkbenchEditSynchronizer sync = (ResourceSetWorkbenchEditSynchronizer) getEmfContext().getResourceSet().getSynchronizer();
  19. sync.enableAutoload(uri);
  20. preloadResourceUris.add(uri);
  21. }
  22. }
  23. }

代码示例来源:origin: org.eclipse/org.eclipse.jem

  1. /**
  2. * Return a boolean indicating whether reflection had occurred.
  3. */
  4. public synchronized boolean reflectValuesIfNecessary() {
  5. if (!hasReflected && !isReflecting) {
  6. try {
  7. isReflecting = true;
  8. EObject etarget = (EObject)getTarget();
  9. if (!etarget.eIsProxy() && etarget.eResource() != null && etarget.eResource().getResourceSet() != null)
  10. hasReflected = reflectValues();
  11. else
  12. hasReflected = false; // AS long we are a proxy or is not in a valid resource or set, we won't reflect.
  13. } catch (Exception e) {
  14. hasReflected = false;
  15. Logger logger = Logger.getLogger();
  16. if (logger.isLoggingLevel(Level.WARNING)) {
  17. logger.log(ResourceHandler.getString("Failed_reflecting_values_ERROR_"), Level.WARNING); //$NON-NLS-1$ = "Failed reflecting values!!!"
  18. logger.logWarning(e);
  19. }
  20. } finally {
  21. isReflecting = false;
  22. getTarget().eNotify(new ENotificationImpl((InternalEObject)getTarget(), EVENT, REFLECTION_EVENT, null, null, Notification.NO_INDEX));
  23. }
  24. }
  25. return hasReflected;
  26. }
  27. public static ReflectionAdaptor retrieveAdaptorFrom(EObject object) {

代码示例来源:origin: org.eclipse/org.eclipse.jst.j2ee

  1. Logger.getLogger().logWarning(EARArchiveOpsResourceHandler.bind(EARArchiveOpsResourceHandler.MISSING_CLIENT_JAR, new Object[] {clientJarName, ejbWrapper.getName(), archive.getPath()}));

相关文章