Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
position: { x: 250, y: 50 },
name: 'Actor',
ports: {
groups: {
'in': {
position: 'absolute'
},
'out': {
position: 'absolute'
}
}
}
});
_this.graph.addCell(jUseCaseActor);
let jUseCaseUndirAssociation = new Association({
source: { x:500, y:80 },
target: { x:700, y:80 },
labels: [{ attrs: { text: { text: 'Undir association' } } }]
});
_this.graph.addCell(jUseCaseUndirAssociation);
let jUseCaseDirAssociation = new DirectedAssociation({
source: { x:500, y:150 },
target: { x:700, y:150 },
labels: [{ attrs: { text: { text: 'Directed association' } } }]
});
_this.graph.addCell(jUseCaseDirAssociation);
let jUseCaseGeneralization = new UseCaseGeneralization({
source: { x:500, y:200 },
target: { x:700, y:200 },