Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fltrail
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
fides
fltrail
Commits
a5e4a19b
Commit
a5e4a19b
authored
6 years ago
by
quark
Browse files
Options
Downloads
Patches
Plain Diff
changed ResearchReport Interface
parent
62a702ba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gemeinsamforschen/src/main/java/unipotsdam/gf/interfaces/ResearchReport.java
+11
-148
11 additions, 148 deletions
...rc/main/java/unipotsdam/gf/interfaces/ResearchReport.java
with
11 additions
and
148 deletions
gemeinsamforschen/src/main/java/unipotsdam/gf/interfaces/ResearchReport.java
+
11
−
148
View file @
a5e4a19b
...
@@ -11,173 +11,36 @@ public interface ResearchReport {
...
@@ -11,173 +11,36 @@ public interface ResearchReport {
/**
/**
* Create a File
* Create a File
*
*
* @param report
Id
Name of the Report
* @param re
searchRe
port Name of the Report
* @
param userId The id of creator
* @
return Returns the reportId
*/
*/
File
addReport
(
String
reportId
,
String
userId
);
String
createReseachReport
(
ResearchReport
researchReport
);
/**
/**
* Change a File
* Change a File
*
*
* @param reportId Name of the Report
* @param researchReport Name of the Report
* @param userId The id of creator
* @return Returns if the report is updated
* @return Returns the Changed File
*/
*/
File
changeReport
(
String
reportId
,
String
userId
,
String
title
+
"\n"
+
question
+
"\n"
+
goals
+
"\n"
+
method
+
"\n"
+
research
+
"\n"
+
source
[]
+
"\n"
+
result
+
"\n"
+
evaluation
);
boolean
updateResearchReport
(
ResearchReport
researchReport
);
/**
/**
* Delete a File
* Delete a File
*
*
* @param report
Id
Name of the Report
* @param re
searchRe
port Name of the Report
*/
*/
void
deleteReport
(
String
r
eport
Id
);
boolean
deleteReport
(
ResearchReport
researchR
eport
);
/**
/**
* Shows the Id of a File
* Shows the Id of a File
* @return Returns the Id of a File
* @param researchReport Name of the Report
* @return Returns the Report
*/
*/
String
getreportId
(
);
File
getResearchReport
(
ResearchReport
researchReport
);
/* /**
* Shows the Path of a File
*
* @param reportId Id of the File
* @return Returns the Path of a FIle
* /
String getFilePath(String reportId);
*/
//Add / Change(Override)------------------------------------------------------------------------------------
/**
* Add a title to the Report
*
* @param reportId Name of the Report
* @param title title of the Report
*/
String
addTitle
(
String
reportId
,
String
title
);
/**
* Add a Researchquestion to the Report
*
* @param reportId Name of the Report
* @param question Research question of the Report
*/
String
addResearchQuestion
(
String
reportId
,
String
question
);
/**
* Add a learning goal to the Report
*
* @param reportId Name of the Report
* @param goals LearningGoals of the Report
*/
String
addLearningGoal
(
String
reportId
,
String
goals
);
/**
* Add a research method to the Report
*
* @param reportId Name of the Report
* @param method Methods of the Report
*/
String
addMethod
(
String
reportId
,
String
method
);
/**
* Add a research to the Report
*
* @param reportId Name of the Report
* @param research Research of the Report
*/
String
addResearch
(
String
reportId
,
String
research
);
/**
* Add a source to the Report
*
* @param reportId Name of the Report
* @param source Sources of the Report
*/
String
addLiteratur
(
String
reportId
,
String
[]
source
[
int
i
]
);
//Kann auch als Text statt Liste gemacht werden (?)
/**
* Add a research result to the Report
*
* @param reportId Name of the Report
* @param result research Results of the Report
*/
String
addResearchResult
(
String
reportId
,
String
result
);
/**
* Add a evaluation to the Report
*
* @param reportId Name of the Report
* @param evaluation Evaluation of the Report
*/
String
addEvaluation
(
String
reportId
,
String
evaluation
);
//Get--------------------------------------------------------
/**
* Get a title to the Report
*
* @param reportId Name of the Report
* @returns returns The title of the Report
*/
String
getTitle
(
String
reportId
);
/**
* Get a Researchquestion to the Report
*
* @param reportId Name of the Report
* @return Returns The Research question of the Report
*/
String
getResearchQuestion
(
String
reportId
);
/**
* Get a learning goal to the Report
*
* @param reportId Name of the Report
* @return Returns The Learning Goals of the Report
*/
String
getLearningGoal
(
String
reportId
);
/**
* Get a research method to the Report
*
* @param reportId Name of the Report
* @return Returns The Methods of the Report
*/
String
getMethod
(
String
reportId
);
/**
* Get a research to the Report
*
* @param reportId Name of the Report
* @return Returns the Research of the Report
*/
String
getResearch
(
String
reportId
);
/**
* Get a source to the Report
*
* @param reportId Name of the Report
* @return Returns all the Sources of the Report
*/
String
[]
getLiteratur
(
String
reportId
);
/**
* Get a research result to the Report
*
* @param reportId Name of the Report
* @return Returns the research Results of the Report
*/
String
getResearchResult
(
String
reportId
);
/**
* Get a evaluation to the Report
*
* @param reportId Name of the Report
* @return Returns the Evaluation of the Report
*/
String
getEvaluation
(
String
reportId
);
}
}
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