Changeset 309
- Timestamp:
- 04/10/08 00:28:07 (4 years ago)
- Location:
- trunk/docx4j/src/main/java/org/merlin/io
- Files:
-
- 6 edited
-
DOMSerializerEngine.java (modified) (1 diff)
-
IOStreamEngine.java (modified) (1 diff)
-
OutputEngine.java (modified) (1 diff)
-
OutputEngineInputStream.java (modified) (1 diff)
-
ReaderWriterEngine.java (modified) (1 diff)
-
Streams.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/docx4j/src/main/java/org/merlin/io/DOMSerializerEngine.java
r244 r309 14 14 * @author Copyright (c) 2002 Merlin Hughes <merlin@merlin.org> 15 15 * 16 * This program is free software; you can redistribute it and/or 17 * modify it under the terms of the GNU General Public License 18 * as published by the Free Software Foundation; either version 2 19 * of the License, or (at your option) any later version. 16 * org.merlin.io was released by its author under the Apache License, 17 * Version 2.0 (the "License") on 9 April 2008; 18 * you may not use this file except in compliance with the License. 19 * 20 * You may obtain a copy of the License at 21 * 22 * http://www.apache.org/licenses/LICENSE-2.0 23 * 24 * Unless required by applicable law or agreed to in writing, software 25 * distributed under the License is distributed on an "AS IS" BASIS, 26 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 27 * See the License for the specific language governing permissions and 28 * limitations under the License. 29 * 20 30 */ 31 21 32 public class DOMSerializerEngine implements OutputEngine { 22 33 private NodeIterator iterator; -
trunk/docx4j/src/main/java/org/merlin/io/IOStreamEngine.java
r6 r309 9 9 * @author Copyright (c) 2002 Merlin Hughes <merlin@merlin.org> 10 10 * 11 * This program is free software; you can redistribute it and/or 12 * modify it under the terms of the GNU General Public License 13 * as published by the Free Software Foundation; either version 2 14 * of the License, or (at your option) any later version. 11 * org.merlin.io was released by its author under the Apache License, 12 * Version 2.0 (the "License") on 9 April 2008; 13 * you may not use this file except in compliance with the License. 14 * 15 * You may obtain a copy of the License at 16 * 17 * http://www.apache.org/licenses/LICENSE-2.0 18 * 19 * Unless required by applicable law or agreed to in writing, software 20 * distributed under the License is distributed on an "AS IS" BASIS, 21 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 22 * See the License for the specific language governing permissions and 23 * limitations under the License. 24 * 15 25 */ 16 26 public class IOStreamEngine implements OutputEngine { -
trunk/docx4j/src/main/java/org/merlin/io/OutputEngine.java
r6 r309 8 8 * @author Copyright (c) 2002 Merlin Hughes <merlin@merlin.org> 9 9 * 10 * This program is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU General Public License 12 * as published by the Free Software Foundation; either version 2 13 * of the License, or (at your option) any later version. 10 * org.merlin.io was released by its author under the Apache License, 11 * Version 2.0 (the "License") on 9 April 2008; 12 * you may not use this file except in compliance with the License. 13 * 14 * You may obtain a copy of the License at 15 * 16 * http://www.apache.org/licenses/LICENSE-2.0 17 * 18 * Unless required by applicable law or agreed to in writing, software 19 * distributed under the License is distributed on an "AS IS" BASIS, 20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 * See the License for the specific language governing permissions and 22 * limitations under the License. 23 * 14 24 */ 15 25 public interface OutputEngine { -
trunk/docx4j/src/main/java/org/merlin/io/OutputEngineInputStream.java
r6 r309 8 8 * @author Copyright (c) 2002 Merlin Hughes <merlin@merlin.org> 9 9 * 10 * This program is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU General Public License 12 * as published by the Free Software Foundation; either version 2 13 * of the License, or (at your option) any later version. 10 * org.merlin.io was released by its author under the Apache License, 11 * Version 2.0 (the "License") on 9 April 2008; 12 * you may not use this file except in compliance with the License. 13 * 14 * You may obtain a copy of the License at 15 * 16 * http://www.apache.org/licenses/LICENSE-2.0 17 * 18 * Unless required by applicable law or agreed to in writing, software 19 * distributed under the License is distributed on an "AS IS" BASIS, 20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 * See the License for the specific language governing permissions and 22 * limitations under the License. 23 * 14 24 */ 15 25 public class OutputEngineInputStream extends InputStream { -
trunk/docx4j/src/main/java/org/merlin/io/ReaderWriterEngine.java
r6 r309 9 9 * @author Copyright (c) 2002 Merlin Hughes <merlin@merlin.org> 10 10 * 11 * This program is free software; you can redistribute it and/or 12 * modify it under the terms of the GNU General Public License 13 * as published by the Free Software Foundation; either version 2 14 * of the License, or (at your option) any later version. 11 * org.merlin.io was released by its author under the Apache License, 12 * Version 2.0 (the "License") on 9 April 2008; 13 * you may not use this file except in compliance with the License. 14 * 15 * You may obtain a copy of the License at 16 * 17 * http://www.apache.org/licenses/LICENSE-2.0 18 * 19 * Unless required by applicable law or agreed to in writing, software 20 * distributed under the License is distributed on an "AS IS" BASIS, 21 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 22 * See the License for the specific language governing permissions and 23 * limitations under the License. 24 * 15 25 */ 16 26 public class ReaderWriterEngine implements OutputEngine { -
trunk/docx4j/src/main/java/org/merlin/io/Streams.java
r6 r309 8 8 * @author Copyright (c) 2002 Merlin Hughes <merlin@merlin.org> 9 9 * 10 * This program is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU General Public License 12 * as published by the Free Software Foundation; either version 2 13 * of the License, or (at your option) any later version. 10 * org.merlin.io was released by its author under the Apache License, 11 * Version 2.0 (the "License") on 9 April 2008; 12 * you may not use this file except in compliance with the License. 13 * 14 * You may obtain a copy of the License at 15 * 16 * http://www.apache.org/licenses/LICENSE-2.0 17 * 18 * Unless required by applicable law or agreed to in writing, software 19 * distributed under the License is distributed on an "AS IS" BASIS, 20 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 * See the License for the specific language governing permissions and 22 * limitations under the License. 23 * 14 24 */ 15 25 public class Streams {
Note: See TracChangeset
for help on using the changeset viewer.
