Paste event handling WIP

This commit is contained in:
barsdeveloper
2021-10-31 17:01:56 +01:00
parent 199005ec20
commit ceb07688f2
11 changed files with 352 additions and 221 deletions

View File

@@ -24,4 +24,12 @@ export default class ObjectEntity extends Entity {
getAttributes() {
return ObjectEntity.attributes
}
/**
*
* @returns {String} The name of the node
*/
getNodeDisplayName() {
return this.Name
}
}

View File

@@ -41,6 +41,14 @@ export default class PinEntity extends Entity {
return PinEntity.attributes
}
/**
*
* @returns {String}
*/
getPinDisplayName() {
return this.PinName
}
isOutput() {
if (this.Direction === "EGPD_Output") {
return true