1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- function CBusinessGlossary(oHelper)
- {
- this.setHelper(oHelper);
-
-
- this.m_sSelectionContext = "";
- };
- CBusinessGlossary.prototype = new CLineage();
- CBusinessGlossary.prototype.proceedWithoutDialog = function ()
- {
-
-
- this.m_oHelper = null;
-
-
-
- if (this.m_aParams[0] == 'metadataTree')
- {
- this.addMetadataSelectionItems();
-
-
- this.m_sSelectionContext = "";
- }
- else
- {
-
- this.m_sSelectionContext = this.getSelectionContext();
- }
-
-
- this.getHelper().open();
- };
- CBusinessGlossary.prototype.addItem = function(oNode)
- {
-
- var sNodeName = oNode.getName();
- this.getHelper().addTerm(sNodeName);
- };
- CBusinessGlossary.prototype.createHelper = function ()
- {
-
- var oCogConfig = new MDSRV_CognosConfiguration();
- var sGateway = cfgGet("gsGateway")
- oCogConfig.addProperty("glossaryURI", gsBusinessGlossaryURI);
- oCogConfig.addProperty("gatewayURI", sGateway);
-
-
- var oHelper = new MDSRV_BusinessGlossary(oCogConfig, this.m_sSelectionContext);
- return oHelper;
- };
|