|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| LazyParameter.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core.service.code.impl; | |
| 2 | ||
| 3 | import com.agical.rdoc.core.service.code.Parameter; | |
| 4 | import com.agical.rdoc.core.service.code.Type; | |
| 5 | ||
| 6 | public class LazyParameter implements Parameter { | |
| 7 | ||
| 8 | private final Type type; | |
| 9 | ||
| 10 | 1 | public LazyParameter(Type type) { |
| 11 | 1 | this.type = type; |
| 12 | } | |
| 13 | ||
| 14 | 1 | public Type getType() { |
| 15 | 1 | return type; |
| 16 | } | |
| 17 | ||
| 18 | } |
|
||||||||||