Skip to content
Commits on Source (3)
......@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......
......@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......
......@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......
......@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......
......@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......
......@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......
......@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.core.filesystem; singleton:=true
Bundle-Version: 1.7.200.qualifier
Bundle-Version: 1.7.300.qualifier
Bundle-Localization: plugin
Require-Bundle: org.eclipse.equinox.common;bundle-version="[3.2.0,4.0.0)",
org.eclipse.equinox.registry;bundle-version="[3.2.0,4.0.0)",
......
......@@ -14,11 +14,11 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
<artifactId>org.eclipse.core.filesystem</artifactId>
<version>1.7.200-SNAPSHOT</version>
<version>1.7.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
......@@ -272,7 +272,6 @@ public class EFS {
/**
* Attribute constant (value 1 &lt;&lt;5) indicating that a
* file is a symbolic link.
* </p>
* <p>
* If this attribute is <code>true</code> for a given {@link IFileInfo}
* instance, a String value may be associated with the attribute
......@@ -309,7 +308,6 @@ public class EFS {
/**
* Attribute constant (value 1 &lt;&lt;6) for a string attribute indicating the
* target file name of a symbolic link.
* </p>
* <p>
* Note that setting the link target attribute does not cause a symbolic
* link to be created, or changed to link to a different file. Rather, this
......
......@@ -126,7 +126,6 @@ public interface IFileInfo extends Comparable<IFileInfo>, Cloneable {
* Sets the value of the specified attribute for this file info. The attribute
* must be one of the <code>EFS#ATTRIBUTE_*</code> constants.
* Note that not all attributes are applicable in a given file system.
* </p>
* <p>
* Users must call {@link IFileStore#putInfo(IFileInfo, int, IProgressMonitor)}
* before changes made to this info take effect in an underlying file.
......
......@@ -223,11 +223,10 @@ public interface IFileStore extends IAdaptable {
* path is treated as relative to this store. This is equivalent to
* <pre>
* IFileStore result = this;
* for (int i = 0; i < path.segmentCount(); i++) {
* for (int i = 0; i &lt; path.segmentCount(); i++) {
* result = result.getChild(path.segment(i));
* return result;
* </pre>
* </p>
* <p>
* This is a handle-only method; a child is provided regardless
* of whether this store or the child store exists, or whether this store
......@@ -267,7 +266,6 @@ public interface IFileStore extends IAdaptable {
* this store. This is a handle-only method; a child is provided regardless
* of whether this store or the child store exists, or whether this store
* represents a directory or not.
* </p>
*
* @param name The name of the child store to return
* @return A child file store.
......@@ -308,7 +306,7 @@ public interface IFileStore extends IAdaptable {
/**
* Returns whether this store is a parent of the provided store. This
* is equivalent to, but typically more efficient than, the following:
* <code>
* <pre><code>
* while (true) {
* other = other.getParent();
* if (other == null)
......@@ -316,7 +314,7 @@ public interface IFileStore extends IAdaptable {
* if (this.equals(other))
* return true;
* }
* </code>
* </code></pre>
* <p>
* This is a handle only method; this test works regardless of whether
* this store or the parameter store exists.
......
......@@ -21,7 +21,7 @@ import org.eclipse.core.runtime.*;
/**
* This class provides utility methods for comparing, inspecting, and manipulating
* URIs. More specifically, this class is useful for dealing with URIs that represent
* file systems represented by the <tt>org.eclipse.core.filesystem.filesystems</tt>
* file systems represented by the <code>org.eclipse.core.filesystem.filesystems</code>
* extension point. For such URIs the file system implementation can be consulted
* to interpret the URI in a way that is not possible at a generic level.
*
......
......@@ -16,6 +16,6 @@ backing store.
<p>
@since org.eclipse.core.filesystem 1.0
<p>
</p>
</body>
</html>
......@@ -20,7 +20,7 @@ import org.eclipse.core.runtime.*;
/**
* The common superclass for all file system implementations. Instances
* of this class are provided using the <tt>org.eclipse.core.filesystem.filesystems</tt>
* of this class are provided using the <code>org.eclipse.core.filesystem.filesystems</code>
* extension point.
* <p>
* On creation, the <code>setInitializationData</code> method is called with
......
......@@ -14,11 +14,11 @@ This package specifies the provider API for the file system plug-in.&nbsp;
This API is used by plug-ins that are installing file system implementations
that interact with some specific backing store. These implementations are
accessed by clients using the generic file system API in the
<tt>org.eclipse.core.filesystem</tt> package. File system implementations
are installed using the <tt>filesystems</tt> extension point.
<code>org.eclipse.core.filesystem</code> package. File system implementations
are installed using the <code>filesystems</code> extension point.
<p>
@since org.eclipse.core.filesystem 1.0
<p>
</p>
</body>
</html>
......@@ -38,7 +38,7 @@ public class LocalFileNativesManager {
private static boolean USING_NATIVES;
static {
boolean nativesAllowed = Boolean.valueOf(System.getProperty("eclipse.filesystem.useNatives", "true")).booleanValue(); //$NON-NLS-1$ //$NON-NLS-2$
boolean nativesAllowed = Boolean.parseBoolean(System.getProperty("eclipse.filesystem.useNatives", "true")); //$NON-NLS-1$ //$NON-NLS-2$
if (nativesAllowed && UnixFileNatives.isUsingNatives()) {
HANDLER = new UnixFileHandler();
USING_NATIVES = true;
......
......@@ -22,7 +22,7 @@ import org.eclipse.core.filesystem.provider.FileInfo;
*/
public class StructStat {
private static final boolean USE_MILLISECOND_RESOLUTION = Boolean.valueOf(System.getProperty("eclipse.filesystem.useNatives.modificationTimestampMillisecondsResolution", "true")).booleanValue(); //$NON-NLS-1$ //$NON-NLS-2$
private static final boolean USE_MILLISECOND_RESOLUTION = Boolean.parseBoolean(System.getProperty("eclipse.filesystem.useNatives.modificationTimestampMillisecondsResolution", "true")); //$NON-NLS-1$ //$NON-NLS-2$
public int st_mode;
public long st_size;
......
......@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......
......@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......
......@@ -11,7 +11,7 @@
<parent>
<artifactId>eclipse.platform.resources</artifactId>
<groupId>eclipse.platform.resources</groupId>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
<relativePath>../../</relativePath>
</parent>
<groupId>org.eclipse.core</groupId>
......