Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

IFContentHandler.java 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.render.intermediate;
  19. import org.xml.sax.Attributes;
  20. import org.xml.sax.ContentHandler;
  21. import org.xml.sax.Locator;
  22. import org.xml.sax.SAXException;
  23. /** intermediate format content handler */
  24. public class IFContentHandler implements ContentHandler {
  25. /** {@inheritDoc} */
  26. public void characters(char[] arg0, int arg1, int arg2) throws SAXException {
  27. // TODO Auto-generated method stub
  28. }
  29. /** {@inheritDoc} */
  30. public void endDocument() throws SAXException {
  31. // TODO Auto-generated method stub
  32. }
  33. /** {@inheritDoc} */
  34. public void endElement(String arg0, String arg1, String arg2)
  35. throws SAXException {
  36. // TODO Auto-generated method stub
  37. }
  38. /** {@inheritDoc} */
  39. public void endPrefixMapping(String arg0) throws SAXException {
  40. // TODO Auto-generated method stub
  41. }
  42. /** {@inheritDoc} */
  43. public void ignorableWhitespace(char[] arg0, int arg1, int arg2)
  44. throws SAXException {
  45. // TODO Auto-generated method stub
  46. }
  47. /** {@inheritDoc} */
  48. public void processingInstruction(String arg0, String arg1)
  49. throws SAXException {
  50. // TODO Auto-generated method stub
  51. }
  52. /** {@inheritDoc} */
  53. public void setDocumentLocator(Locator arg0) {
  54. // TODO Auto-generated method stub
  55. }
  56. /** {@inheritDoc} */
  57. public void skippedEntity(String arg0) throws SAXException {
  58. // TODO Auto-generated method stub
  59. }
  60. /** {@inheritDoc} */
  61. public void startDocument() throws SAXException {
  62. // TODO Auto-generated method stub
  63. }
  64. /** {@inheritDoc} */
  65. public void startElement(String arg0, String arg1, String arg2,
  66. Attributes arg3) throws SAXException {
  67. // TODO Auto-generated method stub
  68. }
  69. /** {@inheritDoc} */
  70. public void startPrefixMapping(String arg0, String arg1)
  71. throws SAXException {
  72. // TODO Auto-generated method stub
  73. }
  74. }