All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.biojava.bio.program.sax.NamespaceConfigurationIF Maven / Gradle / Ivy

There is a newer version: 1.9.7
Show newest version
/*
 *                    BioJava development code
 *
 * This code may be freely distributed and modified under the
 * terms of the GNU Lesser General Public Licence.  This should
 * be distributed with the code.  If you do not have a copy,
 * see:
 *
 *      http://www.gnu.org/copyleft/lesser.html
 *
 * Copyright for this code is held jointly by the individual
 * authors.  These should be listed in @author doc comments.
 *
 * For more information on the BioJava project and its aims,
 * or to join the biojava-l mailing list, visit the home page
 * at:
 *
 *      http://www.biojava.org/
 *
 */
package org.biojava.bio.program.sax;



/**
 * Support for SAX2 configuration of namespace support
 * 

* Copyright © 2000 Cambridge Antibody Technology Group plc. * *

* Primary author -

    *
  • Simon Brocklehurst (CAT) *
* Other authors -
    *
  • Tim Dilks (CAT) *
  • Colin Hardman (CAT) *
  • Stuart Johnston (CAT) *
* * This code was first released to the biojava.org project, July 2000. * * @author Cambridge Antibody Technology Group plc (CAT) * @version 1.0 * */ interface NamespaceConfigurationIF { /** * Support SAX2 configuration of namespace support of parser. */ boolean getNamespaces(); /** * Support SAX2 configuration of namespace support of parser. */ boolean getNamespacePrefixes(); /** * Gets the URI for a namespace prefix, given that prefix, * or null if the prefix is not recognised. * * @param poPrefix a String The namespace prefix. */ String getURIFromPrefix(String poPrefix); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy