KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > xml > dom4j > OzoneNamespaceCache


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// This file is
5
// Copyright (C) 2003-@year@ Per Nyfelt. All rights reserved.
6
//
7
package org.ozoneDB.xml.dom4j;
8
9 import org.dom4j.Namespace;
10 import org.ozoneDB.OzoneRemote;
11
12 /**
13  * @author Per Nyfelt
14  */

15 public interface OzoneNamespaceCache extends OzoneRemote {
16
17     Namespace get(String JavaDoc prefix, String JavaDoc uri);
18
19     Namespace get(String JavaDoc uri);
20
21     Namespace getXmlNamespace();
22
23     Namespace getNoNamespace();
24 }
25
Popular Tags