com.aptana.ide.core.io.sync
Class SyncState

java.lang.Object
  extended by com.aptana.ide.core.io.sync.SyncState

public final class SyncState
extends java.lang.Object

Author:
Kevin Lindsey

Field Summary
static int ClientItemIsNewer
          This sync item exists on both the client and the server, but the client version is newer than the server version
static int ClientItemOnly
          This sync item only exists on the client
static int CRCMismatch
          The sync item exists on both the client and the server, their modification times match, but their CRC's do no match
static int Ignore
          Ignore this sync item when performing actions on a sync item list
static int IncompatibleFileTypes
          The client file and server file are of different types.
static int ItemsMatch
          This sync item exists on both the client and the server and they match
static int ServerItemIsNewer
          This sync item exists on both the client and the server, but the server version is newer than the client version
static int ServerItemOnly
          This sync item only exists on the server
static int Unknown
          Unknown state
 
Constructor Summary
SyncState()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Unknown

public static final int Unknown
Unknown state

See Also:
Constant Field Values

Ignore

public static final int Ignore
Ignore this sync item when performing actions on a sync item list

See Also:
Constant Field Values

ItemsMatch

public static final int ItemsMatch
This sync item exists on both the client and the server and they match

See Also:
Constant Field Values

CRCMismatch

public static final int CRCMismatch
The sync item exists on both the client and the server, their modification times match, but their CRC's do no match

See Also:
Constant Field Values

ClientItemIsNewer

public static final int ClientItemIsNewer
This sync item exists on both the client and the server, but the client version is newer than the server version

See Also:
Constant Field Values

ServerItemIsNewer

public static final int ServerItemIsNewer
This sync item exists on both the client and the server, but the server version is newer than the client version

See Also:
Constant Field Values

ClientItemOnly

public static final int ClientItemOnly
This sync item only exists on the client

See Also:
Constant Field Values

ServerItemOnly

public static final int ServerItemOnly
This sync item only exists on the server

See Also:
Constant Field Values

IncompatibleFileTypes

public static final int IncompatibleFileTypes
The client file and server file are of different types. In other words, one file is a directory and the other is not a directory

See Also:
Constant Field Values
Constructor Detail

SyncState

public SyncState()