blob: f3b8b77f667d39cbc576f80604437eaf6dc93573 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2016 xored software, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.ruby.internal.parser.mixin;
public class ExactMixinSearchPattern implements IMixinSearchPattern {
private final String key;
/**
* @param key
*/
public ExactMixinSearchPattern(String key) {
this.key = key;
}
@Override
public boolean evaluate(String lastSegment) {
return key.equals(lastSegment);
}
@Override
public String getKey() {
return key;
}
}