更新资产类型

使用 RAMSession.put(IRAMSessionObject, IProgressMonitor) 来落实对新的或已更新的资产类型对象的更改。

                //Update
                assetType.setName("Updated Asset Type");
                assetType.setDescription("Updated Description");
                
                session.put(assetType, new NullProgressMonitor());

反馈