Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/IDebugLogConstants.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/IDebugLogConstants.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/IDebugLogConstants.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/IDebugLogConstants.java
deleted file mode 100644
index 6540954f562..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/IDebugLogConstants.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/**********************************************************************
- * Copyright (c) 2002,2003,2004 Rational Software Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * IBM Rational Software - Initial API and implementation
-***********************************************************************/package org.eclipse.cdt.internal.core.model;
-
-import org.eclipse.cdt.core.parser.Enum;
-
-/**
- * @author bgheorgh
- *
- */
-public interface IDebugLogConstants {
- public class DebugLogConstant extends Enum {
- protected DebugLogConstant( int value )
- {
- super( value );
- }
-
- }
-
- public static final DebugLogConstant PARSER = new DebugLogConstant( 1 );
- public static final DebugLogConstant MODEL = new DebugLogConstant ( 2 );
- public static final DebugLogConstant SCANNER = new DebugLogConstant( 3 );
-}

Back to the top