Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3635bcd5a9f1eecb525a6158939843826dd9a584 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * Copyright (c) 2007 Red Hat, Inc., (c) 2008 Nokia Corporation.
 * 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:
 *    Red Hat Incorporated - initial API and implementation
 *    Ed Swartz (Nokia) - refactoring
 *******************************************************************************/

package org.eclipse.linuxtools.cdt.autotools.ui.editors.parser;

import java.util.regex.Pattern;

/**
 *
 */
public class AutoconfMacroDetector implements IAutoconfMacroDetector {

	private static final Pattern AUTOCONF_MACRO_PATTERN = Pattern.compile("PKG_.*|AC_.*|AM_.*|m4.*"); //$NON-NLS-1$
	
	/* (non-Javadoc)
	 * @see org.eclipse.linuxtools.cdt.autotools.ui.editors.parser.IAutoconfMacroDetector#isMacroIdentifier(java.lang.String)
	 */
	public boolean isMacroIdentifier(String name) {
		return AUTOCONF_MACRO_PATTERN.matcher(name).matches();
	}

}

Back to the top