|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| DocumentationContext.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package com.agical.rdoc.core; | |
| 2 | ||
| 3 | import java.io.Serializable; | |
| 4 | ||
| 5 | public interface DocumentationContext extends Serializable { | |
| 6 | ||
| 7 | DocumentationContext NULL = new DocumentationContext() { | |
| 8 | 0 | public void put(String name, Serializable serializable) { |
| 9 | } | |
| 10 | 0 | public Serializable get(String string) { |
| 11 | 0 | return null; |
| 12 | } | |
| 13 | }; | |
| 14 | ||
| 15 | void put(String name, Serializable serializable); | |
| 16 | ||
| 17 | Serializable get(String string); | |
| 18 | ||
| 19 | } |
|
||||||||||