-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename UkSoftwareDevelopmenCompany -> UkSoftwareDevelopmentCompany. C…
…leaned up some JavaDocs.
- Loading branch information
1 parent
9e2abf9
commit 6fccd5d
Showing
10 changed files
with
42 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
...java/uk/gov/gchq/magmacore/examples/extensions/model/UkSoftwareDevelopmenCompanyImpl.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...ava/uk/gov/gchq/magmacore/examples/extensions/model/UkSoftwareDevelopmentCompanyImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package uk.gov.gchq.magmacore.examples.extensions.model; | ||
|
||
import uk.gov.gchq.magmacore.hqdm.pojo.HqdmObject; | ||
import uk.gov.gchq.magmacore.hqdm.rdf.iri.IRI; | ||
|
||
/** | ||
* An HQDM Extension class to add a new entity type to MagmaCore. | ||
*/ | ||
public class UkSoftwareDevelopmentCompanyImpl extends HqdmObject implements UkLimitedCompany { | ||
|
||
/** | ||
* {@code UkSoftwareDevelopmentCompanyImpl} constructor. | ||
* | ||
* @param id ID for the {@code UkSoftwareDevelopmentCompany}. | ||
*/ | ||
public UkSoftwareDevelopmentCompanyImpl(final IRI id) { | ||
super(id); | ||
} | ||
} |