blob: 4519d5e0d261aa9dc2edf9da9719ed149880526d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2008 Steffen Pingel 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.trac.core.model;
import java.util.Date;
/**
* @author Steffen Pingel
*/
public class TracAttachment {
private String author;
private Date created;
private String description;
private String filename;
int size;
public TracAttachment(String filename) {
this.filename = filename;
}
public String getAuthor() {
return author;
}
public Date getCreated() {
return created;
}
public String getDescription() {
return description;
}
public String getFilename() {
return filename;
}
public int getSize() {
return size;
}
public void setAuthor(String author) {
this.author = author;
}
public void setCreated(Date created) {
this.created = created;
}
public void setDescription(String description) {
this.description = description;
}
public void setFilename(String filename) {
this.filename = filename;
}
public void setSize(int size) {
this.size = size;
}
@Override
public String toString() {
return filename;
}
}