| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| DocumentLinkData |
|
| 0.0;0 |
| 1 | // BSD License (http://www.galagosearch.org/license) | |
| 2 | ||
| 3 | package org.galagosearch.core.parse; | |
| 4 | ||
| 5 | import java.util.ArrayList; | |
| 6 | import org.galagosearch.core.types.ExtractedLink; | |
| 7 | ||
| 8 | /** | |
| 9 | * | |
| 10 | * @author trevor | |
| 11 | */ | |
| 12 | public class DocumentLinkData { | |
| 13 | public String identifier; | |
| 14 | public String url; | |
| 15 | public int textLength; | |
| 16 | ||
| 17 | public ArrayList<ExtractedLink> links; | |
| 18 | ||
| 19 | 0 | public DocumentLinkData() { |
| 20 | 0 | links = new ArrayList<ExtractedLink>(); |
| 21 | 0 | identifier = ""; |
| 22 | 0 | url = ""; |
| 23 | 0 | textLength = 0; |
| 24 | 0 | } |
| 25 | } |