|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
EmptyReference.java | - | 0% | 0% | 0% |
|
1 | package org.jboss.cache.pojo.memory; | |
2 | ||
3 | public class EmptyReference extends PersistentReference | |
4 | { | |
5 | ||
6 | 0 | public EmptyReference() |
7 | { | |
8 | 0 | super(null, null, REFERENCE_WEAK); |
9 | } | |
10 | ||
11 | 0 | public Object rebuildReference() throws Exception |
12 | { | |
13 | 0 | return null; |
14 | } | |
15 | ||
16 | } | |
17 |
|