|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| VelocityManagerFactoryImpl.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package com.agical.rdoc.velocity.impl; | |
| 2 | ||
| 3 | import com.agical.rdoc.velocity.VelocityManager; | |
| 4 | import com.agical.rdoc.velocity.VelocityManagerFactory; | |
| 5 | ||
| 6 | public class VelocityManagerFactoryImpl implements VelocityManagerFactory { | |
| 7 | ||
| 8 | 11 | public VelocityManager create() { |
| 9 | 11 | VelocityManagerImpl velocityManagerImpl = new VelocityManagerImpl(); |
| 10 | 11 | return velocityManagerImpl; |
| 11 | } | |
| 12 | ||
| 13 | } |
|
||||||||||