// Copyright (c) 2003-2008 by Leif Frenzel - see http://leiffrenzel.de // This code is made available under the terms of the Eclipse Public License, // version 1.0 (EPL). See http://www.eclipse.org/legal/epl-v10.html package net.sf.eclipsefp.haskell.ui.internal.editors.haskell; /** <p>contains constants for Haskell file partition types.</p> * * @author Leif Frenzel * @deprecated */ @Deprecated public interface IPartitionTypes { String HS_COMMENT = "__hs_comment"; String HS_LITERATE_COMMENT = "__hs_literate_comment"; String HS_STRING = "__hs_string"; String HS_CHARACTER = "__hs_character"; }