-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23c683f
commit bca8d79
Showing
4 changed files
with
67 additions
and
35 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
core/src/main/java/io/lionweb/lioncore/java/serialization/BulkImport.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package io.lionweb.lioncore.java.serialization; | ||
|
||
import io.lionweb.lioncore.java.model.ClassifierInstance; | ||
import io.lionweb.lioncore.java.serialization.data.MetaPointer; | ||
import java.util.LinkedList; | ||
import java.util.List; | ||
|
||
public class BulkImport { | ||
|
||
public static class AttachPoint { | ||
public String container; | ||
public MetaPointer containment; | ||
public String rootId; | ||
} | ||
|
||
private List<AttachPoint> attachPoints = new LinkedList<>(); | ||
private List<ClassifierInstance<?>> nodes = new LinkedList<>(); | ||
|
||
public List<AttachPoint> getAttachPoints() { | ||
return attachPoints; | ||
} | ||
|
||
public List<ClassifierInstance<?>> getNodes() { | ||
return nodes; | ||
} | ||
} |
10 changes: 0 additions & 10 deletions
10
core/src/main/java/io/lionweb/lioncore/java/serialization/BulkImportElement.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters