Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaReportSelection.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaReportSelection.java172
1 files changed, 0 insertions, 172 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaReportSelection.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaReportSelection.java
deleted file mode 100644
index 48941171f..000000000
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaReportSelection.java
+++ /dev/null
@@ -1,172 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004 - 2006 University Of British Columbia 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:
- * University Of British Columbia - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.mylar.internal.bugzilla.ui.editor;
-
-import org.eclipse.mylar.bugzilla.core.Comment;
-import org.eclipse.mylar.internal.bugzilla.core.IBugzillaReportSelection;
-
-/**
- * A selection of a Bugzilla element in a view.
- */
-public class BugzillaReportSelection implements IBugzillaReportSelection {
-
- /**
- * The id of the Bugzilla object that the selection was on.
- */
- protected int id;
-
- /** The server of the Bugzilla object that the selection was on. */
- protected String server;
-
- /** The contents of the selection. */
- protected String contents;
-
- protected String bugSummary;
-
- /**
- * The comment, if a comment was selected. If the selection was not a
- * comment, then this is <code>null</code>.
- */
- protected Comment comment;
-
- /**
- * Creates a new <code>BugzillaReportSelection</code> with no supplied
- * contents or comment.
- *
- * @param id
- * The id of the Bugzilla object that the selection was on.
- * @param server
- * The server of the Bugzilla object that the selection was on.
- */
- public BugzillaReportSelection(int id, String server, String summary) {
- this(id, server, null, null, summary);
- }
-
- /**
- * Creates a new <code>BugzillaReportSelection</code> with no supplied
- * comment.
- *
- * @param id
- * The id of the Bugzilla object that the selection was on.
- * @param server
- * The server of the Bugzilla object that the selection was on.
- * @param contents
- * The contents of the selection.
- */
- public BugzillaReportSelection(int id, String server, String contents, boolean isDescription, String summary) {
- this(id, server, contents, null, summary);
- this.isDescription = isDescription;
- }
-
- /**
- * Creates a new <code>BugzillaReportSelection</code> with no supplied
- * contents.
- *
- * @param id
- * The id of the Bugzilla object that the selection was on.
- * @param server
- * The server of the Bugzilla object that the selection was on.
- * @param comment
- * The <code>Comment</code> object for this selection. If a
- * comment was not selected, then this should be
- * <code>null</code>.
- */
- public BugzillaReportSelection(int id, String server, Comment comment, String summary) {
- this(id, server, null, comment, summary);
- }
-
- /**
- * Creates a new <code>BugzillaReportSelection</code>.
- *
- * @param id
- * The id of the Bugzilla object that the selection was on.
- * @param server
- * The server of the Bugzilla object that the selection was on.
- * @param contents
- * The contents of the selection.
- * @param comment
- * The <code>Comment</code> object for this selection. If a
- * comment was not selected, then this should be
- * <code>null</code>.
- */
- public BugzillaReportSelection(int id, String server, String contents, Comment comment, String summary) {
- this.id = id;
- this.server = server;
- this.contents = contents;
- this.comment = comment;
- this.bugSummary = summary;
- }
-
- public boolean hasComment() {
- return comment != null;
- }
-
- public Comment getComment() {
- return comment;
- }
-
- public void setComment(Comment comment) {
- this.comment = comment;
- }
-
- public String getContents() {
- return contents;
- }
-
- public void setContents(String contents) {
- this.contents = contents;
- }
-
- public int getId() {
- return id;
- }
-
- public void setId(int id) {
- this.id = id;
- }
-
- public String getServer() {
- return server;
- }
-
- public void setServer(String server) {
- this.server = server;
- }
-
- public boolean isEmpty() {
- return (server == null) || ((contents == null) && (comment == null));
- }
-
- private boolean isCommentHeader = false;
-
- private boolean isDescription = false;
-
- public boolean isCommentHeader() {
- return isCommentHeader;
- }
-
- public boolean isDescription() {
- return isDescription;
- }
-
- public void setIsCommentHeader(boolean isCommentHeader) {
- this.isCommentHeader = isCommentHeader;
- }
-
- public void setIsDescription(boolean isDescription) {
- this.isDescription = isDescription;
- }
-
- public String getBugSummary() {
- return bugSummary;
- }
-}

Back to the top