src/main/java/de/uapcore/lightpit/ResourceKey.java

changeset 34
824d4042c857
parent 29
27a0fdd7bca7
child 44
835dd169642a
equal deleted inserted replaced
33:fd8c40ff78c3 34:824d4042c857
1 /* 1 /*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 * 3 *
4 * Copyright 2018 Mike Becker. All rights reserved. 4 * Copyright 2018 Mike Becker. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met: 7 * modification, are permitted provided that the following conditions are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE. 26 * POSSIBILITY OF SUCH DAMAGE.
27 * 27 *
28 */ 28 */
29 package de.uapcore.lightpit; 29 package de.uapcore.lightpit;
30 30
31 /** 31 /**
32 * Fully specifies a resource key by the bundle and the key name. 32 * Fully specifies a resource key by the bundle and the key name.
33 */ 33 */
34 public final class ResourceKey { 34 public final class ResourceKey {
35 private String bundle; 35 private String bundle;
36 private String key; 36 private String key;
37 37
38 public ResourceKey() { 38 public ResourceKey() {
39 39
40 } 40 }
41 41
42 public ResourceKey(String bundle, String key) { 42 public ResourceKey(String bundle, String key) {
43 this.bundle = bundle; 43 this.bundle = bundle;
44 this.key = key; 44 this.key = key;
53 } 53 }
54 54
55 public void setKey(String key) { 55 public void setKey(String key) {
56 this.key = key; 56 this.key = key;
57 } 57 }
58 58
59 public String getKey() { 59 public String getKey() {
60 return key; 60 return key;
61 } 61 }
62 } 62 }

mercurial