/** * Document.java * Copyright 2010 by Michael Peter Christen * First released 22.4.2010 at http://yacy.net * * This file is part of YaCy Content Integration * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program in the file COPYING.LESSER. * If not, see <http://www.gnu.org/licenses/>. */ package net.yacy.cider.document; public class Document { /* public Date lexer_steering_moddate(); public Date lexer_steering_loaddate(); public Date lexer_steering_freshdate(); public URI lexer_steering_referrer(); public String lexer_steering_md5(); public int lexer_steering_size(); public int lexer_data_wordCount(); public int lexer_references_llocal(); public int lexer_references_lother(); public int lexer_references_limage(); public int lexer_references_laudio(); public int lexer_references_lvideo(); public int lexer_references_lapp(); public boolean isOlder(final URI other); public String dc_language() { } public String dc_title() { } public String dc_creator() { } public String dc_subject(final char separator) { } public String dc_description() { } public String dc_publisher() { } public String dc_format() { } public String dc_identifier() { } public URI dc_source() { } public String getCharset() { } public String[] getSectionTitles() { } public InputStream getText() { } public byte[] getTextBytes() { } public long getTextLength() { } public Iterator<StringBuilder> getSentences(final boolean pre) { } public List<String> getKeywords() { } public Map<URI, String> getAnchors() { } public Map<URI, String> getHyperlinks() { } public Map<URI, String> getAudiolinks() { } public Map<URI, String> getVideolinks() { } public HashMap<String, ImageEntry> getImages() { } public Map<URI, String> getApplinks() { } public Map<String, String> getEmaillinks() { } public URI getFavicon() { } public int inboundLinks() { } public int outboundLinks() { } public boolean indexingDenied() { } */ }