Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LD2NL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ambuj Kumar Mondal
LD2NL
Merge requests
!11
An error occurred while fetching the assigned milestone of the selected merge_request.
Akm
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Akm
akm
into
KG2NL_WS20
Overview
0
Commits
4
Pipelines
0
Changes
11
Closed
Akm
Ambuj Kumar Mondal
requested to merge
akm
into
KG2NL_WS20
Feb 6, 2021
Overview
0
Commits
4
Pipelines
0
Changes
11
Created by: AmbujMondal
0
0
Merge request reports
Compare
KG2NL_WS20
KG2NL_WS20 (base)
and
latest version
latest version
0e4a5fa4
4 commits,
Aug 5, 2023
11 files
+
282
−
87
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
owl2nl/src/main/java/org/aksw/owl2nl/Models/Axiom.java
0 → 100644
+
22
−
0
View file @ 0e4a5fa4
package
org.aksw.owl2nl.Models
;
public
class
Axiom
{
private
String
Expression
;
private
String
Text
;
public
String
getExpression
()
{
return
Expression
;
}
public
void
setExpression
(
String
expression
)
{
Expression
=
expression
;
}
public
String
getText
()
{
return
Text
;
}
public
void
setText
(
String
text
)
{
Text
=
text
;
}
}
Loading