blob: c039735d049fa06b4c770d5ac2827de0bf3c36cf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.command.internal.env.core.data;
import org.eclipse.wst.command.env.core.data.Transformer;
public class RuleEntry
{
public String sourceType_;
public String sourceProperty_;
public String targetProperty_;
public Transformer transformer_;
public RuleEntry( String sourceType,
String sourceProperty,
String targetProperty,
Transformer transformer )
{
sourceType_ = sourceType;
sourceProperty_ = sourceProperty;
targetProperty_ = targetProperty;
transformer_ = transformer;
}
}