Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
core
Commits
0d25c444
Commit
0d25c444
authored
7 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
TargetDetails removed
parent
3e3e1732
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!75
Resolve "MiRNA - Show all - duplicated entries"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
service/src/main/java/lcsb/mapviewer/services/search/db/TargetDetails.java
+0
-71
0 additions, 71 deletions
...java/lcsb/mapviewer/services/search/db/TargetDetails.java
with
0 additions
and
71 deletions
service/src/main/java/lcsb/mapviewer/services/search/db/TargetDetails.java
deleted
100644 → 0
+
0
−
71
View file @
3e3e1732
package
lcsb.mapviewer.services.search.db
;
import
java.util.ArrayList
;
import
java.util.List
;
import
lcsb.mapviewer.services.search.ElementIdentifierDetails
;
import
lcsb.mapviewer.services.view.AnnotationView
;
/**
* Detailed information about drug targets.
*
* @author Piotr Gawron
*
*/
public
class
TargetDetails
extends
ElementIdentifierDetails
{
/**
*
*/
private
static
final
long
serialVersionUID
=
1L
;
/**
* From where this information comes from.
*/
private
AnnotationView
databaseSource
;
/**
* List of references.
*/
private
List
<
AnnotationView
>
references
=
new
ArrayList
<>();
/**
* @return the databaseSource
* @see #databaseSource
*/
public
AnnotationView
getDatabaseSource
()
{
return
databaseSource
;
}
/**
* @param databaseSource
* the databaseSource to set
* @see #databaseSource
*/
public
void
setDatabaseSource
(
AnnotationView
databaseSource
)
{
this
.
databaseSource
=
databaseSource
;
}
/**
* @return the references
* @see #references
*/
public
List
<
AnnotationView
>
getReferences
()
{
return
references
;
}
/**
* @param references
* the references to set
* @see #references
*/
public
void
setReferences
(
List
<
AnnotationView
>
references
)
{
this
.
references
=
references
;
}
@Override
public
String
toString
()
{
return
"[TargetDetails]: "
+
databaseSource
.
toString
()
+
"; "
+
references
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment