blob: deca52b91968007ae25268d18026c582741b37a9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Cloudsmith Inc. 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:
* Cloudsmith Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ql;
import org.eclipse.equinox.internal.provisional.p2.metadata.Version;
/**
* A function that creates a {@link Version} from a string
*/
public class VersionFunction extends Function {
static final String KEYWORD = "version"; //$NON-NLS-1$
public VersionFunction(Expression[] operands) {
super(operands);
}
Object createInstance(String arg) {
return Version.create(arg);
}
String getOperator() {
return KEYWORD;
}
}