File tree Expand file tree Collapse file tree 5 files changed +0
-59
lines changed
sct-commons/src/main/java/org/lfenergy/compas/sct/commons/scl Expand file tree Collapse file tree 5 files changed +0
-59
lines changed Original file line number Diff line number Diff line change @@ -65,18 +65,6 @@ protected String elementXPath() {
6565 Utils .xpathAttributeFilter ("type" , currentElem .isSetType () ? currentElem .getType () : null ));
6666 }
6767
68- /**
69- * Updates DA Type Name
70- * @param daTypeName DA Type Name to update
71- * @throws ScdException
72- */
73- @ Override
74- protected String elementXPath () {
75- return String .format ("DA[name=%s and type=%s]" ,
76- Utils .xpathAttributeFilter ("name" , currentElem .isSetName () ? currentElem .getName () : null ),
77- Utils .xpathAttributeFilter ("type" , currentElem .isSetType () ? currentElem .getType () : null ));
78- }
79-
8068 /**
8169 * Updates DA Type Name
8270 * @param daTypeName DA Type Name to update
Original file line number Diff line number Diff line change @@ -61,17 +61,6 @@ protected String elementXPath() {
6161 Utils .xpathAttributeFilter ("type" , currentElem .isSetType () ? currentElem .getType () : null ));
6262 }
6363
64- /**
65- * Gets linked DataTypeTemplateAdapter as parent
66- * @return <em>DataTypeTemplateAdapter</em> object
67- */
68- @ Override
69- protected String elementXPath () {
70- return String .format ("DO[%s and %s]" ,
71- Utils .xpathAttributeFilter ("name" , currentElem .isSetName () ? currentElem .getName () : null ),
72- Utils .xpathAttributeFilter ("type" , currentElem .isSetType () ? currentElem .getType () : null ));
73- }
74-
7564 /**
7665 * Gets linked DataTypeTemplateAdapter as parent
7766 * @return <em>DataTypeTemplateAdapter</em> object
Original file line number Diff line number Diff line change @@ -79,18 +79,6 @@ protected String elementXPath() {
7979 Utils .xpathAttributeFilter ("lnClass" , currentElem .isSetLnClass () ? currentElem .getLnClass () : null ));
8080 }
8181
82- /**
83- * Compares current LNodeType and given LNodeType
84- * @param tlNodeType LNodeType to compare with
85- * @return <em>Boolean</em> value of comparison result
86- */
87- @ Override
88- protected String elementXPath () {
89- return String .format ("LNodeType[%s and %s]" ,
90- Utils .xpathAttributeFilter ("id" , currentElem .isSetId () ? currentElem .getId () : null ),
91- Utils .xpathAttributeFilter ("lnClass" , currentElem .isSetLnClass () ? currentElem .getLnClass () : null ));
92- }
93-
9482 /**
9583 * Compares current LNodeType and given LNodeType
9684 * @param tlNodeType LNodeType to compare with
Original file line number Diff line number Diff line change @@ -63,18 +63,6 @@ protected String elementXPath() {
6363 Utils .xpathAttributeFilter ("name" , currentElem .isSetName () ? currentElem .getName () : null ));
6464 }
6565
66- /**
67- * Gets SDI by name from current DOI
68- * @param sName name of SDI to get
69- * @return <em>RootSDIAdapter</em> object
70- * @throws ScdException throws when specified name of SDI not present in current DOI
71- */
72- @ Override
73- protected String elementXPath () {
74- return String .format ("DOI[%s]" ,
75- Utils .xpathAttributeFilter ("name" , currentElem .isSetName () ? currentElem .getName () : null ));
76- }
77-
7866 /**
7967 * Gets SDI by name from current DOI
8068 * @param sName name of SDI to get
Original file line number Diff line number Diff line change @@ -64,18 +64,6 @@ protected String elementXPath() {
6464 Utils .xpathAttributeFilter ("name" , currentElem .isSetName () ? currentElem .getName () : null ));
6565 }
6666
67- /**
68- * Gets in current SDI specific SDI by its name
69- * @param sName name of SDI to get
70- * @return <em>SDIAdapter</em> object
71- * @throws ScdException throws when DAI unknown in current SDI
72- */
73- @ Override
74- protected String elementXPath () {
75- return String .format ("SDI[%s]" ,
76- Utils .xpathAttributeFilter ("name" , currentElem .isSetName () ? currentElem .getName () : null ));
77- }
78-
7967 /**
8068 * Gets in current SDI specific SDI by its name
8169 * @param sName name of SDI to get
You can’t perform that action at this time.
0 commit comments