📄 documentbuilder.java
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -