zoukankan      html  css  js  c++  java
  • Teamcenter SOA开发源码: 打印对象信息

    import com.teamcenter.clientx.AppXSession;
    import com.teamcenter.services.strong.core.DataManagementService;
    import com.teamcenter.soa.client.model.ServiceData;
    import com.teamcenter.soa.client.model.ModelObject;
    import com.teamcenter.soa.exceptions.NotLoadedException;
     
     
        public void printObject_strings(ModelObject[] objects)
        {
            DataManagementService  dmService = DataManagementService.getService(AppXSession.getConnection());
            if (objects.length == 0) return;
            String[] attributes = {"object_string"};
            dmService.getProperties(objects, attributes);
            for (int i = 0; i < objects.length; i++)
            {
                String type = objects[i].getTypeObject().getName();
                String objectString = "";
                if (objects[i].getTypeObject().isInstanceOf("POM_object"))
                {
                    try
                    {
                        objectString = wo.getPropertyObject("object_string").getStringValue();
                    }
                    catch (NotLoadedException e) {} // just ignore
                }
                System.out.println("    " + objectString + "(" + type + ")" );
            }
        }
    ————————————————
    版权声明:本文为CSDN博主「沃隆先生」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/u014457991/article/details/104740081
    

      

  • 相关阅读:
    疫情控制
    数据结构1
    NOIP 模拟 921
    ml-agents项目实践(一)
    Appium的安装及简单的使用介绍
    移动设备管理平台的搭建(基于STF/ATXServer2)
    ClickHouse利器—如何提高留存计算速度
    Linux基本操作命令
    深度学习与强化学习的两大联姻:DQN与DDPG的对比分析
    漏洞扫描软件AWVS的介绍和使用
  • 原文地址:https://www.cnblogs.com/wwssgg/p/14670882.html
Copyright © 2011-2022 走看看