Skip to main content
summaryrefslogtreecommitdiffstats
blob: f249c53f2f83198e464878a5f52564b6ac043c34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * Copyright (c) 2011 Red Hat 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:
 *     David Green <david.green@tasktop.com> - initial contribution
 *     Christian Trutz <christian.trutz@gmail.com> - initial contribution
 *     Chris Aniszczyk <caniszczyk@gmail.com> - initial contribution
 *******************************************************************************/
package org.eclipse.mylyn.github.internal;

public class GitHubShowIssue {
	private GitHubIssue issue;

	public GitHubIssue getIssue() {
		return issue;
	}

	public void setIssue(GitHubIssue issue) {
		this.issue = issue;
	}
	
}

Back to the top