/******************************************************************************* * Copyright (c) 2000, 2011 IBM Corporation 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: * IBM Corporation - initial API and implementation * Sebastian Davids: sdavids@gmx.de - see bug 25376 *******************************************************************************/ package org.jkiss.dbeaver.ui.editors.sql.templates; public class SQLContextTypeBase extends SQLContextTypeAbstract { public static final String ID_SQL= "sql"; //$NON-NLS-1$ public SQLContextTypeBase() { super(ID_SQL, "SQL"); } }