10 2015 档案

全球数据库-->基金/管理产品-->分类/行业平均-->开放式分类
摘要:SecID招募书中所定净费率换手率%回报日期(每日)计价货币回报-本月以来(每日)计价货币回报-本季以来(每日)计价货币回报-本年以来(每日)计价货币回报-1日(每日)计价货币回报-1周(每日)计价货币回报-1月(每日)计价货币Total Ret 2 Mo(每日)计价货币总报酬率-3个月(每日)计价... 阅读全文

posted @ 2015-10-25 14:26 张缤分 阅读(330) 评论(0) 推荐(0) 编辑

全球数据库
摘要:基金/管理产品股票债券所有权分析经济市场指数人员机构 阅读全文

posted @ 2015-10-25 14:16 张缤分 阅读(183) 评论(0) 推荐(0) 编辑

全球数据库-->基金/管理产品-->分类/行业平均
摘要:ETF分类GIFS台湾注册基金GIFS开放式分类GIFS德国注册基金GIFS意大利注册基金GIFS新兴市场GIFS新加坡保险连结GIFS新加坡注册基金GIFS日本GIFS比利时注册基金GIFS法国注册基金GIFS海外地区GIFS澳大利亚注册基金GIFS瑞士AuslandfondsGIFS英国注册基金... 阅读全文

posted @ 2015-10-25 14:11 张缤分 阅读(366) 评论(0) 推荐(0) 编辑

全球数据库-->基金/管理产品-->基金分析/新闻/报告
摘要:加拿大共同基金澳大利亚投资信托美国ETF美国共同基金英国投资信托基金名称分析师名称分析日期晨星分析师评级晨星简报 阅读全文

posted @ 2015-10-25 14:09 张缤分 阅读(180) 评论(0) 推荐(0) 编辑

金融英语词汇整理
摘要:Home->FilingFiling : 文档Universe :集合Mutual Fund : 共同基金,互惠基金Closed-end Fund : 封闭式基金Open End Fund : 开放式基金Exchange Traded Fund (ETF) : 交易型开放式指数基金Money Mar... 阅读全文

posted @ 2015-10-25 10:51 张缤分 阅读(388) 评论(0) 推荐(0) 编辑

[Training Video - 7] [Database connection] Part 1
摘要:try, catch and finally in db connectionForming groovy connection string and obtaining Connection ObjectFiring Select Query and obtaining resultsForeac... 阅读全文

posted @ 2015-10-08 14:28 张缤分 阅读(171) 评论(0) 推荐(0) 编辑

[Training Video - 2] [Groovy Introduction]
摘要:Building test suites, Test cases and Test steps in SOAP UI Levels : test step level test case level test suite level project levelGroovy script ... 阅读全文

posted @ 2015-10-08 12:32 张缤分 阅读(400) 评论(0) 推荐(0) 编辑

[Training Video - 1] [Introduction to Web services]
摘要:What is a web service?http://webservicex.net/ws/default.aspxWebService是一种跨编程语言和跨操作系统平台的远程调用技术。跨编程语言 : 服务端程序采用java编写,客户端程序则可以采用其他编程语言编写,反之亦然!跨操作系统平台 : ... 阅读全文

posted @ 2015-10-08 10:40 张缤分 阅读(391) 评论(2) 推荐(0) 编辑

[Training Video - 5] [Groovy Script Test Step - Collections, Exceptions] Exception Handling in groovy
摘要:def x = new String[3]x[0] = "A"x[1] = "B"x[2] = "C"log.info"XXXXXX 1"try{ x[3] = "D"// def z=9/0}catch(Exception e){ log.info "Some error "+e.getMessa... 阅读全文

posted @ 2015-10-06 21:54 张缤分 阅读(286) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Object equality and variable equality check
摘要:def x=2def y=3if(x == y){ log.info "equal"}else{ log.info "not equal" // print out not equal}TestService s1 = new TestService()TestService s2 = ne... 阅读全文

posted @ 2015-10-06 21:10 张缤分 阅读(180) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Initializing log inside class with constructor
摘要:TestService s = new TestService(log,context,testRunner)s.xyz()class TestService{ def log def context def testRunner public TestService(log,context,te... 阅读全文

posted @ 2015-10-06 20:56 张缤分 阅读(188) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Constructors in groovy, this keyword
摘要:Bank.log = logBank b1 = new Bank()b1.name = "BOA"b1.minbalance = 100b1.city="London"Bank b2 = new Bank()b2.name = "HSBC"b2.minbalance = 100b2.city="LA... 阅读全文

posted @ 2015-10-06 19:54 张缤分 阅读(197) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Optional parameter in groovy
摘要:Employee.log=logEmployee e1 = new Employee()log.info e1.add(1,2,3,4)// optional parameters in groovylog.info e1.add(2,3)log.info e1.add(2,3,10)class E... 阅读全文

posted @ 2015-10-06 19:33 张缤分 阅读(228) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Function in detail
摘要:Employee.log=logEmployee e1 = new Employee()Employee e2 = new Employee()e1.name = "A"e1.salary = 100e2.name = "B"e2.salary = 200e1.printName()e2.print... 阅读全文

posted @ 2015-10-06 19:28 张缤分 阅读(173) 评论(0) 推荐(0) 编辑

[Training Video - 3] [Groovy in Detail] Non-static and Static functions, initializing log inside class
摘要:log.info "starting"// we use class to create objects of a classPlanet p1 = new Planet()Planet p2 = new Planet()//Planet.name = "Pluto" illegalPlanet... 阅读全文

posted @ 2015-10-06 17:46 张缤分 阅读(264) 评论(0) 推荐(0) 编辑

[Training Video - 3] [Groovy in Detail] Non-static and Static variables, objects and object referances
摘要:log.info "starting"// we use class to create objects of a classPlanet p1 = new Planet()Planet p2 = new Planet()Planet p3 = new Planet()//Planet.name ... 阅读全文

posted @ 2015-10-06 16:30 张缤分 阅读(182) 评论(0) 推荐(0) 编辑

[Training Video - 3] [Groovy in Detail] What is a groovy class ?
摘要:log.info "starting"// we use class to create objects of a classPlanet p1 = new Planet()Planet p2 = new Planet()Planet p3 = new Planet()p1.name = "ear... 阅读全文

posted @ 2015-10-06 16:23 张缤分 阅读(204) 评论(0) 推荐(0) 编辑

[Training Video - 3] [Groovy in Detail] Groovy Offical URL
摘要:http://www.groovy-lang.org/ 阅读全文

posted @ 2015-10-06 16:02 张缤分 阅读(119) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示