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
51a05602
Commit
51a05602
authored
Mar 31, 2021
by
Mathieu Gicquel
Browse files
Add new constructor
parent
6700fd64
Changes
1
Hide whitespace changes
Inline
Side-by-side
gtd-server-main/src/main/java/fr/alma/gtd/server/main/donnees/Context.java
View file @
51a05602
...
...
@@ -13,6 +13,7 @@ public class Context extends AbstractContext implements IContext {
private
MultipleReference
<
ITask
>
tasks
;
public
Context
()
{
super
();
this
.
tasks
=
new
ReferenceContextToTasks
(
this
);
}
...
...
@@ -22,6 +23,10 @@ public class Context extends AbstractContext implements IContext {
this
.
idServer
=
other
.
getServerIdentifier
();
}
public
Context
(
String
name
)
{
super
(
name
);
}
@Override
public
String
getName
()
{
return
contextName
;
...
...
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