Completed
Push — master ( 3c97d5...9f3221 )
by Christoph
08:42 queued 11s
created

getProfile()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 2
ccs 0
cts 1
cp 0
c 1
b 0
f 0
cc 1
crap 2
rs 10
1
/*
2
 * This program is free software; you can redistribute it and/or
3
 * modify it under the terms of the GNU General Public License
4
 * as published by the Free Software Foundation; either version 2
5
 * of the License, or (at your option) any later version.
6
 *
7
 * This program is distributed in the hope that it will be useful,
8
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
 * GNU General Public License for more details.
11
 *
12
 * You should have received a copy of the GNU General Public License
13
 * along with this program; if not, write to the Free Software
14
 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
15
 * Boston, MA 02110-1301, USA.
16
 *
17
 * For information about the authors of this project Have a look
18
 * at the AUTHORS file in the root of this project.
19
 */
20
package net.sourceforge.fullsync.event;
21
22
import net.sourceforge.fullsync.Profile;
23
24
public class ProfileChanged {
25
	private final Profile profile;
26
27
	public ProfileChanged(Profile profile) {
28
		this.profile = profile;
29
	}
30
31
	public Profile getProfile() {
32
		return profile;
33
	}
34
}
35