/******************************************************************************* * Copyright (c) 2008 Dennis Schenk, Peter Siska. * 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: * Dennis Schenk - initial implementation * Peter Siska - initial implementation *******************************************************************************/ package ch.unibe.iam.scg.archie.preferences; /** * Constant definitions for plug-in preferences */ public class PreferenceConstants { /** * Cohort size in dashboard overview charts. */ public static final String P_COHORT_SIZE = "archieCohortSize"; /** * Default cohort size */ public static final int DEFAULT_COHORT_SIZE = 5; }