alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2002 Sun
 * Microsystems, Inc. All Rights Reserved.
 */
package org.netbeans.lib.jmi.xmi;

import org.netbeans.api.xmi.*;
import org.netbeans.api.xmi.sax.*;
import org.xml.sax.*;

import javax.jmi.reflect.*;


public class Consumer extends XMIConsumer {

    private RefPackage extent = null;
    private XMIInputConfig config;
    private XmiSAXReader reader;
    
    // init .....................................................................
    
    public Consumer () {
        this (null);
    }
    
    public Consumer (XMIInputConfig cfg) {
        this.config = new InputConfig ();
        if (cfg != null)
            this.config.setReferenceResolver (cfg.getReferenceResolver ());
    }
    
    // methods ..................................................................
    
    public void setExtent(RefPackage extent) {
        this.extent = extent;
    }
    
    public RefPackage getExtent() {
        return extent;
    }
        
    public XMIInputConfig getConfiguration() {
        return config;
    }

    // ContentHadler implementation .............................................
    
    public void startDocument() throws SAXException {
        if (reader != null)
            throw new SAXException ("Consuming is in process, cannot start a new document.");
        if (extent == null)
            throw new SAXException ("No target extent is set.");
        reader = new XmiSAXReader (config);
        reader.initConsumer (extent);
    }
    
    public void endDocument() throws SAXException {
        check ();
        reader.endDocument ();
        reader = null;
    }
    
    public void characters(char[] ch, int start, int length) throws SAXException {
        check ();
        reader.characters (ch, start, length);
    }

    public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {        
        check ();
        reader.startElement (namespaceURI, localName, qName, atts);
    }
    
    public void endElement(String namespaceURI, String localName, String qName) throws SAXException {
        check ();
        reader.endElement (namespaceURI, localName, qName);
    }
    
    public void endPrefixMapping(String prefix) throws SAXException {
    }
          
    public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException {
    }
 
    public void processingInstruction(String target, String data) throws SAXException {
    }
    
    public void setDocumentLocator(Locator locator) {        
    }
    
    public void skippedEntity(String name) throws SAXException {
    }             
    
    public void startPrefixMapping(String prefix, String uri) throws SAXException {
    }

    // helper methods ...........................................................
    
    private void check () throws SAXException {
        if (reader == null)
            throw new SAXException ("Consumer not started.");
    }
    
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.