blob: b47b2cbe26d6d86cf086aa42d1f9f783f4a868eb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2008 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.pde.internal.ua.core.icheatsheet.comp;
public interface ICompCSParam extends ICompCSObject {
/**
* Attribute: name
*
* @param name
*/
public void setFieldName(String name);
/**
* Attribute: name
*
* @return
*/
public String getFieldName();
/**
* Attribute: value
*
* @param value
*/
public void setFieldValue(String value);
/**
* Attribute: value
*
* @return
*/
public String getFieldValue();
}