1 11 package org.eclipse.core.internal.localstore; 12 13 public interface ILocalStoreConstants { 14 15 16 public final static int SIZE_LASTMODIFIED = 8; 17 public static final int SIZE_COUNTER = 1; 18 public static final int SIZE_KEY_SUFFIX = SIZE_LASTMODIFIED + SIZE_COUNTER; 19 20 21 22 public static final byte[] BEGIN_CHUNK = {64, -79, -117, -127, 35, -68, 0, 20, 26, 37, -106, -25, -93, -109, -66, 30}; 24 25 public static final byte[] END_CHUNK = {-64, 88, -5, -13, 35, -68, 0, 20, 26, 81, -13, -116, 123, -69, 119, -58}; 27 28 29 public static final int CHUNK_DELIMITER_SIZE = BEGIN_CHUNK.length; 31 } 32 | Popular Tags |