()
| 110 | } |
| 111 | |
| 112 | public DDF[] listDDFs() { |
| 113 | List<DDF> ddfs = new ArrayList<DDF>(); |
| 114 | ddfs.addAll(mDDFCache.asMap().values()); |
| 115 | ddfs.addAll(mDDFwithNameCache.asMap().values()); |
| 116 | return ddfs.toArray(new DDF[] {}); |
| 117 | } |
| 118 | |
| 119 | public long size() { |
| 120 | return mDDFCache.size() + mDDFwithNameCache.size(); |
no test coverage detected