(Collection<Entity> entityCollection)
| 3143 | } |
| 3144 | |
| 3145 | public void loadEntities(Collection<Entity> entityCollection) |
| 3146 | { |
| 3147 | this.loadedEntityList.addAll(entityCollection); |
| 3148 | |
| 3149 | for (Entity entity : entityCollection) |
| 3150 | { |
| 3151 | this.onEntityAdded(entity); |
| 3152 | } |
| 3153 | } |
| 3154 | |
| 3155 | public void unloadEntities(Collection<Entity> entityCollection) |
| 3156 | { |
no test coverage detected