blob: e589536f14a5d73add76bb1ea585cbb7e3e8424d [file] [log] [blame]
/***********************************************************************************************************************
* Copyright (c) 2008 empolis GmbH and brox IT Solutions GmbH. All rights reserved. This program and the accompanying
* materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: August Georg Schmidt (brox IT Solutions GmbH) - initial API and implementation
**********************************************************************************************************************/
package org.eclipse.smila.search;
/**
* @author August Georg Schmidt (BROX)
*
* The purpose of this interface is to collect multiple constants.
*/
public interface IConstants {
/**
* Buffer size used for stream handling.
*/
int BUFFER_SIZE = 4096;
}