blob: 65ce93f9b89c2a7f10e845627dd9dd7aa5468e16 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2009 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.bugs;
import org.eclipse.jface.resource.ImageDescriptor;
public class AbstractSupportElement {
private String description;
private ImageDescriptor icon;
private String id;
private String name;
private String url;
public String getDescription() {
return description;
}
public ImageDescriptor getIcon() {
return icon;
}
public String getId() {
return id;
}
public String getName() {
return name;
}
public String getUrl() {
return url;
}
public void setDescription(String description) {
this.description = description;
}
public void setIcon(ImageDescriptor icon) {
this.icon = icon;
}
public void setId(String id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
public void setUrl(String url) {
this.url = url;
}
}