blob: 1e34e67e8dcfc11da6c93cab20706b57223fc3a4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.datatools.sqltools.sqlbuilder.util;
import org.eclipse.core.runtime.Assert;
public class LabelValuePair {
public String fLabel;
public Object fValue;
/**
* Creates a new name/value item
*/
public LabelValuePair(String label, Object value) {
Assert.isTrue(label != null);
fLabel = label;
fValue = value;
}
}