org.eclipse.jdt.internal.core.util.Util.isReadOnlySupported()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(9.5k)|赞(0)|评价(0)|浏览(197)

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

Util.isReadOnlySupported介绍

[英]Returns whether the local file system supports accessing and modifying the read only flag.
[中]返回本地文件系统是否支持访问和修改只读标志。

代码示例

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. /**
  2. * Returns whether the given resource is read-only or not.
  3. * @param resource
  4. * @return <code>true</code> if the resource is read-only, <code>false</code> if it is not or
  5. * if the file system does not support the read-only attribute.
  6. */
  7. public static boolean isReadOnly(IResource resource) {
  8. if (isReadOnlySupported()) {
  9. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  10. if (resourceAttributes == null) return false; // not supported on this platform for this resource
  11. return resourceAttributes.isReadOnly();
  12. }
  13. return false;
  14. }

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

  1. /**
  2. * Returns whether the given resource is read-only or not.
  3. * @param resource
  4. * @return <code>true</code> if the resource is read-only, <code>false</code> if it is not or
  5. * if the file system does not support the read-only attribute.
  6. */
  7. public static boolean isReadOnly(IResource resource) {
  8. if (isReadOnlySupported()) {
  9. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  10. if (resourceAttributes == null) return false; // not supported on this platform for this resource
  11. return resourceAttributes.isReadOnly();
  12. }
  13. return false;
  14. }

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. /**
  2. * Returns whether the given resource is read-only or not.
  3. * @param resource
  4. * @return <code>true</code> if the resource is read-only, <code>false</code> if it is not or
  5. * if the file system does not support the read-only attribute.
  6. */
  7. public static boolean isReadOnly(IResource resource) {
  8. if (isReadOnlySupported()) {
  9. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  10. if (resourceAttributes == null) return false; // not supported on this platform for this resource
  11. return resourceAttributes.isReadOnly();
  12. }
  13. return false;
  14. }

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. /**
  2. * Returns whether the given resource is read-only or not.
  3. * @param resource
  4. * @return <code>true</code> if the resource is read-only, <code>false</code> if it is not or
  5. * if the file system does not support the read-only attribute.
  6. */
  7. public static boolean isReadOnly(IResource resource) {
  8. if (isReadOnlySupported()) {
  9. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  10. if (resourceAttributes == null) return false; // not supported on this platform for this resource
  11. return resourceAttributes.isReadOnly();
  12. }
  13. return false;
  14. }

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. /**
  2. * Returns whether the given resource is read-only or not.
  3. * @param resource
  4. * @return <code>true</code> if the resource is read-only, <code>false</code> if it is not or
  5. * if the file system does not support the read-only attribute.
  6. */
  7. public static boolean isReadOnly(IResource resource) {
  8. if (isReadOnlySupported()) {
  9. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  10. if (resourceAttributes == null) return false; // not supported on this platform for this resource
  11. return resourceAttributes.isReadOnly();
  12. }
  13. return false;
  14. }

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. /**
  2. * Returns whether the given resource is read-only or not.
  3. * @param resource
  4. * @return <code>true</code> if the resource is read-only, <code>false</code> if it is not or
  5. * if the file system does not support the read-only attribute.
  6. */
  7. public static boolean isReadOnly(IResource resource) {
  8. if (isReadOnlySupported()) {
  9. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  10. if (resourceAttributes == null) return false; // not supported on this platform for this resource
  11. return resourceAttributes.isReadOnly();
  12. }
  13. return false;
  14. }

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. /**
  2. * Returns whether the given resource is read-only or not.
  3. * @param resource
  4. * @return <code>true</code> if the resource is read-only, <code>false</code> if it is not or
  5. * if the file system does not support the read-only attribute.
  6. */
  7. public static boolean isReadOnly(IResource resource) {
  8. if (isReadOnlySupported()) {
  9. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  10. if (resourceAttributes == null) return false; // not supported on this platform for this resource
  11. return resourceAttributes.isReadOnly();
  12. }
  13. return false;
  14. }

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

  1. /**
  2. * Sets or unsets the given resource as read-only in the file system.
  3. * It's a no-op if the file system does not support the read-only attribute.
  4. *
  5. * @param resource The resource to set as read-only
  6. * @param readOnly <code>true</code> to set it to read-only,
  7. * <code>false</code> to unset
  8. */
  9. public static void setReadOnly(IResource resource, boolean readOnly) {
  10. if (isReadOnlySupported()) {
  11. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  12. if (resourceAttributes == null) return; // not supported on this platform for this resource
  13. resourceAttributes.setReadOnly(readOnly);
  14. try {
  15. resource.setResourceAttributes(resourceAttributes);
  16. } catch (CoreException e) {
  17. // ignore
  18. }
  19. }
  20. }
  21. public static void sort(char[][] list) {

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. /**
  2. * Sets or unsets the given resource as read-only in the file system.
  3. * It's a no-op if the file system does not support the read-only attribute.
  4. *
  5. * @param resource The resource to set as read-only
  6. * @param readOnly <code>true</code> to set it to read-only,
  7. * <code>false</code> to unset
  8. */
  9. public static void setReadOnly(IResource resource, boolean readOnly) {
  10. if (isReadOnlySupported()) {
  11. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  12. if (resourceAttributes == null) return; // not supported on this platform for this resource
  13. resourceAttributes.setReadOnly(readOnly);
  14. try {
  15. resource.setResourceAttributes(resourceAttributes);
  16. } catch (CoreException e) {
  17. // ignore
  18. }
  19. }
  20. }
  21. public static void sort(char[][] list) {

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. /**
  2. * Sets or unsets the given resource as read-only in the file system.
  3. * It's a no-op if the file system does not support the read-only attribute.
  4. *
  5. * @param resource The resource to set as read-only
  6. * @param readOnly <code>true</code> to set it to read-only,
  7. * <code>false</code> to unset
  8. */
  9. public static void setReadOnly(IResource resource, boolean readOnly) {
  10. if (isReadOnlySupported()) {
  11. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  12. if (resourceAttributes == null) return; // not supported on this platform for this resource
  13. resourceAttributes.setReadOnly(readOnly);
  14. try {
  15. resource.setResourceAttributes(resourceAttributes);
  16. } catch (CoreException e) {
  17. // ignore
  18. }
  19. }
  20. }
  21. public static void sort(char[][] list) {

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. /**
  2. * Sets or unsets the given resource as read-only in the file system.
  3. * It's a no-op if the file system does not support the read-only attribute.
  4. *
  5. * @param resource The resource to set as read-only
  6. * @param readOnly <code>true</code> to set it to read-only,
  7. * <code>false</code> to unset
  8. */
  9. public static void setReadOnly(IResource resource, boolean readOnly) {
  10. if (isReadOnlySupported()) {
  11. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  12. if (resourceAttributes == null) return; // not supported on this platform for this resource
  13. resourceAttributes.setReadOnly(readOnly);
  14. try {
  15. resource.setResourceAttributes(resourceAttributes);
  16. } catch (CoreException e) {
  17. // ignore
  18. }
  19. }
  20. }
  21. public static void sort(char[][] list) {

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. /**
  2. * Sets or unsets the given resource as read-only in the file system.
  3. * It's a no-op if the file system does not support the read-only attribute.
  4. *
  5. * @param resource The resource to set as read-only
  6. * @param readOnly <code>true</code> to set it to read-only,
  7. * <code>false</code> to unset
  8. */
  9. public static void setReadOnly(IResource resource, boolean readOnly) {
  10. if (isReadOnlySupported()) {
  11. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  12. if (resourceAttributes == null) return; // not supported on this platform for this resource
  13. resourceAttributes.setReadOnly(readOnly);
  14. try {
  15. resource.setResourceAttributes(resourceAttributes);
  16. } catch (CoreException e) {
  17. // ignore
  18. }
  19. }
  20. }
  21. public static void sort(char[][] list) {

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. /**
  2. * Sets or unsets the given resource as read-only in the file system.
  3. * It's a no-op if the file system does not support the read-only attribute.
  4. *
  5. * @param resource The resource to set as read-only
  6. * @param readOnly <code>true</code> to set it to read-only,
  7. * <code>false</code> to unset
  8. */
  9. public static void setReadOnly(IResource resource, boolean readOnly) {
  10. if (isReadOnlySupported()) {
  11. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  12. if (resourceAttributes == null) return; // not supported on this platform for this resource
  13. resourceAttributes.setReadOnly(readOnly);
  14. try {
  15. resource.setResourceAttributes(resourceAttributes);
  16. } catch (CoreException e) {
  17. // ignore
  18. }
  19. }
  20. }
  21. public static void sort(char[][] list) {

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. /**
  2. * Sets or unsets the given resource as read-only in the file system.
  3. * It's a no-op if the file system does not support the read-only attribute.
  4. *
  5. * @param resource The resource to set as read-only
  6. * @param readOnly <code>true</code> to set it to read-only,
  7. * <code>false</code> to unset
  8. */
  9. public static void setReadOnly(IResource resource, boolean readOnly) {
  10. if (isReadOnlySupported()) {
  11. ResourceAttributes resourceAttributes = resource.getResourceAttributes();
  12. if (resourceAttributes == null) return; // not supported on this platform for this resource
  13. resourceAttributes.setReadOnly(readOnly);
  14. try {
  15. resource.setResourceAttributes(resourceAttributes);
  16. } catch (CoreException e) {
  17. // ignore
  18. }
  19. }
  20. }
  21. public static void sort(char[][] list) {

相关文章

Util类方法