blob: 50dae5b1db16b71c2289c8a6e1fc1fcdea63c1d0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
*
* 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:
* Edgar Mueller - initial API and implementation
******************************************************************************/
package org.eclipse.emf.emfstore.client.test.common.builders;
/**
* Util class to enable typesafe builder pattern.
*
* @author emueller
*
*/
public class BOOL {
public abstract static class TRUE {
}
public abstract static class FALSE {
}
}