Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mathieu GICQUEL
GTD Server
Commits
6700fd64
Commit
6700fd64
authored
Mar 31, 2021
by
Mathieu Gicquel
Browse files
Add new constructor
parent
6dc36fb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
gtd-server-main/src/main/java/fr/alma/gtd/server/main/donnees/Project.java
View file @
6700fd64
...
...
@@ -28,6 +28,14 @@ public class Project extends AbstractProject implements IProject {
this
.
participants
=
new
ReferenceProjectToUser
(
this
);
}
public
Project
(
String
idServeur
,
Progress
progress
,
String
projectName
)
{
this
();
this
.
idServeur
=
idServeur
;
this
.
progress
=
progress
;
this
.
projectName
=
projectName
;
}
public
Project
(
IProject
autre
)
{
this
();
this
.
idServeur
=
autre
.
getServerIdentifier
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment