Skip to content

Commit 43f745d

Browse files
alopezoalopezo
authored andcommitted
Merge remote-tracking branch 'origin/master'
# Conflicts: # README.md # pom.xml # src/com/termmed/owl/RF2Parser.java # src/com/termmed/owl/Runner.java
2 parents f016ea1 + 04f83c3 commit 43f745d

File tree

4 files changed

+183
-2
lines changed

4 files changed

+183
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
<artifactId>maven-compiler-plugin</artifactId>
2929
<version>2.3.2</version>
3030
<configuration>
31-
<source>1.7</source>
32-
<target>1.7</target>
31+
<source>1.8</source>
32+
<target>1.8</target>
3333
</configuration>
3434
</plugin>
3535
<plugin>

src/com/termmed/rf2/model/Component.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,47 +22,98 @@
2222
import java.util.UUID;
2323

2424
/**
25+
* The Class Component.
2526
*
2627
* @author Alejandro Rodriguez
2728
*/
2829
public class Component {
2930

31+
/** The uuid. */
3032
private UUID uuid;
33+
34+
/** The active. */
3135
private Boolean active;
36+
37+
/** The effective time. */
3238
private String effectiveTime;
39+
40+
/** The module. */
3341
private Long module;
3442

43+
/**
44+
* Instantiates a new component.
45+
*/
3546
public Component() {
3647
}
3748

49+
/**
50+
* Gets the effective time.
51+
*
52+
* @return the effective time
53+
*/
3854
public String getEffectiveTime() {
3955
return effectiveTime;
4056
}
4157

58+
/**
59+
* Sets the effective time.
60+
*
61+
* @param effectiveTime the new effective time
62+
*/
4263
public void setEffectiveTime(String effectiveTime) {
4364
this.effectiveTime = effectiveTime;
4465
}
4566

67+
/**
68+
* Gets the active.
69+
*
70+
* @return the active
71+
*/
4672
public Boolean getActive() {
4773
return active;
4874
}
4975

76+
/**
77+
* Sets the active.
78+
*
79+
* @param active the new active
80+
*/
5081
public void setActive(Boolean active) {
5182
this.active = active;
5283
}
5384

85+
/**
86+
* Gets the module.
87+
*
88+
* @return the module
89+
*/
5490
public Long getModule() {
5591
return module;
5692
}
5793

94+
/**
95+
* Sets the module.
96+
*
97+
* @param module the new module
98+
*/
5899
public void setModule(Long module) {
59100
this.module = module;
60101
}
61102

103+
/**
104+
* Gets the uuid.
105+
*
106+
* @return the uuid
107+
*/
62108
public UUID getUuid() {
63109
return uuid;
64110
}
65111

112+
/**
113+
* Sets the uuid.
114+
*
115+
* @param uuid the new uuid
116+
*/
66117
public void setUuid(UUID uuid) {
67118
this.uuid = uuid;
68119
}

src/com/termmed/rf2/model/ConceptDescriptor.java

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,72 @@
1919

2020
package com.termmed.rf2.model;
2121

22+
/**
23+
* The Class ConceptDescriptor.
24+
*
25+
* @author Alejandro Rodriguez
26+
*/
2227
public class ConceptDescriptor extends Component{
2328

29+
/** The concept id. */
2430
Long conceptId;
31+
32+
/** The default term. */
2533
String defaultTerm;
34+
35+
/** The definition status. */
2636
String definitionStatus;
37+
38+
/**
39+
* Gets the concept id.
40+
*
41+
* @return the concept id
42+
*/
2743
public Long getConceptId() {
2844
return conceptId;
2945
}
46+
47+
/**
48+
* Sets the concept id.
49+
*
50+
* @param conceptId the new concept id
51+
*/
3052
public void setConceptId(Long conceptId) {
3153
this.conceptId = conceptId;
3254
}
55+
56+
/**
57+
* Gets the default term.
58+
*
59+
* @return the default term
60+
*/
3361
public String getDefaultTerm() {
3462
return defaultTerm;
3563
}
64+
65+
/**
66+
* Sets the default term.
67+
*
68+
* @param defaultTerm the new default term
69+
*/
3670
public void setDefaultTerm(String defaultTerm) {
3771
this.defaultTerm = defaultTerm;
3872
}
73+
74+
/**
75+
* Gets the definition status.
76+
*
77+
* @return the definition status
78+
*/
3979
public String getDefinitionStatus() {
4080
return definitionStatus;
4181
}
82+
83+
/**
84+
* Sets the definition status.
85+
*
86+
* @param definitionStatus the new definition status
87+
*/
4288
public void setDefinitionStatus(String definitionStatus) {
4389
this.definitionStatus = definitionStatus;
4490
}

src/com/termmed/rf2/model/LightRelationship.java

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,51 +21,135 @@
2121

2222

2323
/**
24+
* The Class LightRelationship.
2425
*
2526
* @author Alejandro Rodriguez
2627
*/
2728

2829
public class LightRelationship extends Component {
2930

31+
/** The type. */
3032
private Long type;
33+
34+
/** The target. */
3135
private Long target;
36+
37+
/** The source id. */
3238
private Long sourceId;
39+
40+
/** The group id. */
3341
private Integer groupId;
42+
43+
/** The char type. */
3444
private Long charType;
45+
46+
/** The modifier. */
3547
private Long modifier;
48+
49+
/**
50+
* Gets the type.
51+
*
52+
* @return the type
53+
*/
3654
public Long getType() {
3755
return type;
3856
}
57+
58+
/**
59+
* Sets the type.
60+
*
61+
* @param type the new type
62+
*/
3963
public void setType(Long type) {
4064
this.type = type;
4165
}
66+
67+
/**
68+
* Gets the target.
69+
*
70+
* @return the target
71+
*/
4272
public Long getTarget() {
4373
return target;
4474
}
75+
76+
/**
77+
* Sets the target.
78+
*
79+
* @param target the new target
80+
*/
4581
public void setTarget(Long target) {
4682
this.target = target;
4783
}
84+
85+
/**
86+
* Gets the source id.
87+
*
88+
* @return the source id
89+
*/
4890
public Long getSourceId() {
4991
return sourceId;
5092
}
93+
94+
/**
95+
* Sets the source id.
96+
*
97+
* @param sourceId the new source id
98+
*/
5199
public void setSourceId(Long sourceId) {
52100
this.sourceId = sourceId;
53101
}
102+
103+
/**
104+
* Gets the group id.
105+
*
106+
* @return the group id
107+
*/
54108
public Integer getGroupId() {
55109
return groupId;
56110
}
111+
112+
/**
113+
* Sets the group id.
114+
*
115+
* @param groupId the new group id
116+
*/
57117
public void setGroupId(Integer groupId) {
58118
this.groupId = groupId;
59119
}
120+
121+
/**
122+
* Gets the char type.
123+
*
124+
* @return the char type
125+
*/
60126
public Long getCharType() {
61127
return charType;
62128
}
129+
130+
/**
131+
* Sets the char type.
132+
*
133+
* @param charType the new char type
134+
*/
63135
public void setCharType(Long charType) {
64136
this.charType = charType;
65137
}
138+
139+
/**
140+
* Gets the modifier.
141+
*
142+
* @return the modifier
143+
*/
66144
public Long getModifier() {
67145
return modifier;
68146
}
147+
148+
/**
149+
* Sets the modifier.
150+
*
151+
* @param modifier the new modifier
152+
*/
69153
public void setModifier(Long modifier) {
70154
this.modifier = modifier;
71155
}

0 commit comments

Comments
 (0)