All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.tycho.plugins.p2.extras.Query Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2012 SAP AG and others.
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     SAP AG - initial API and implementation
 *******************************************************************************/

package org.eclipse.tycho.plugins.p2.extras;

/**
 * Represents an IU MatchQuery.
 */
public class Query {

    private String expression;
    private String parameters;

    public String getExpression() {
        return expression;
    }

    public void setExpression(String expression) {
        this.expression = expression;
    }

    public String getParameters() {
        return parameters;
    }

    public void setParameters(String paramaters) {
        this.parameters = paramaters;
    }

    public String[] getParsedParameters() {
        if (parameters != null) {
            return parameters.split(",");
        } else {
            return new String[0];
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy