Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.trac.core/src/org/eclipse/mylyn/internal/trac/core/model/TracAttachment.java')
-rw-r--r--org.eclipse.mylyn.trac.core/src/org/eclipse/mylyn/internal/trac/core/model/TracAttachment.java80
1 files changed, 0 insertions, 80 deletions
diff --git a/org.eclipse.mylyn.trac.core/src/org/eclipse/mylyn/internal/trac/core/model/TracAttachment.java b/org.eclipse.mylyn.trac.core/src/org/eclipse/mylyn/internal/trac/core/model/TracAttachment.java
deleted file mode 100644
index 4519d5e0d..000000000
--- a/org.eclipse.mylyn.trac.core/src/org/eclipse/mylyn/internal/trac/core/model/TracAttachment.java
+++ /dev/null
@@ -1,80 +0,0 @@
-/*******************************************************************************
- * 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;
- }
-
-}

Back to the top