File: ApplicationImpl.java

package info (click to toggle)
lib-xp-java 0.5-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,652 kB
  • ctags: 2,424
  • sloc: java: 8,085; makefile: 53; sh: 17; xml: 7
file content (27 lines) | stat: -rw-r--r-- 1,535 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.jclark.xml.parse.awt;

import java.awt.AWTException;
import com.jclark.xml.parse.*;

/**
 * A default implementation of <code>Application</code>.
 * All methods do nothing.
 * @version $Revision: 1.2 $ $Date: 1998/06/10 09:43:55 $
 */
public class ApplicationImpl implements Application {
  public void startDocument() throws AWTException { }
  public void endDocument() throws AWTException { }
  public void startElement(StartElementEvent event) throws AWTException { }
  public void characterData(CharacterDataEvent event) throws AWTException { }
  public void endElement(EndElementEvent event) throws AWTException { }
  public void processingInstruction(ProcessingInstructionEvent pi) throws AWTException { }
  public void endProlog(EndPrologEvent event) throws AWTException { }
  public void comment(CommentEvent event) throws AWTException { }
  public void startCdataSection(StartCdataSectionEvent event) throws AWTException { }
  public void endCdataSection(EndCdataSectionEvent event) throws AWTException { }
  public void startEntityReference(StartEntityReferenceEvent event) throws AWTException { }
  public void endEntityReference(EndEntityReferenceEvent event) throws AWTException { }
  public void startDocumentTypeDeclaration(StartDocumentTypeDeclarationEvent event) throws AWTException { }
  public void endDocumentTypeDeclaration(EndDocumentTypeDeclarationEvent event) throws AWTException { }
  public void markupDeclaration(MarkupDeclarationEvent event) throws AWTException { }
}