documentbuilder.java

来自「Java的面向对象数据库系统的源代码」· Java 代码 · 共 43 行

JAVA
43
字号
// You can redistribute this software and/or modify it under the terms of// the Ozone Library License version 1 published by ozone-db.org.//// The original code and portions created by SMB are// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.//// $Id: DocumentBuilder.java,v 1.1 2003/04/25 08:11:51 per_nyfelt Exp $package org.ozoneDB.xml.dom4j.io;import org.dom4j.Document;import org.dom4j.DocumentException;import org.ozoneDB.OzoneRemote;import java.io.IOException;import java.io.InputStream;import java.io.Reader;import java.net.SocketAddress;/** * $Id: DocumentBuilder.java,v 1.1 2003/04/25 08:11:51 per_nyfelt Exp $ */public interface DocumentBuilder extends OzoneRemote {    public static final String OBJECT_NAME = "DocumentBuilder";    public Document parse(String text) throws DocumentException;    public Document parse(String text, String objectName) throws DocumentException;    public Document parse(Reader reader) throws DocumentException;    public Document parse(InputStream in) throws DocumentException;    /**     * This will probably not work but something to this effect needs to exist     * in order to send the stream content through the pipe over to the server     */    public SocketAddress prepareStreamParsing() throws IOException;    public Document getResult();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?