X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmir%2Futil%2FXMLReaderTool.java;h=2bae6d24fa281157cd87f6ae7f72046b64750d96;hb=a64b955661f9f9b70c358f125cf39dc46d05049e;hp=95e4322d8ba22242cc8045c47a52603a3d831d65;hpb=0af4c00cb9990c3d6f365413f00654b2851f6071;p=mir.git diff --git a/source/mir/util/XMLReaderTool.java b/source/mir/util/XMLReaderTool.java index 95e4322d..2bae6d24 100755 --- a/source/mir/util/XMLReaderTool.java +++ b/source/mir/util/XMLReaderTool.java @@ -1,7 +1,5 @@ -package mir.util; - /* - * Copyright (C) 2001, 2002 The Mir-coders group + * Copyright (C) 2001, 2002 The Mir-coders group * * This file is part of Mir. * @@ -20,20 +18,21 @@ package mir.util; * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * In addition, as a special exception, The Mir-coders gives permission to link - * the code of this program with the com.oreilly.servlet library, any library - * licensed under the Apache Software License, The Sun (tm) Java Advanced - * Imaging library (JAI), The Sun JIMI library (or with modified versions of - * the above that use the same license as the above), and distribute linked - * combinations including the two. You must obey the GNU General Public - * License in all respects for all of the code used other than the above - * mentioned libraries. If you modify this file, you may extend this exception - * to your version of the file, but you are not obligated to do so. If you do - * not wish to do so, delete this exception statement from your version. + * the code of this program with any library licensed under the Apache Software License, + * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library + * (or with modified versions of the above that use the same license as the above), + * and distribute linked combinations including the two. You must obey the + * GNU General Public License in all respects for all of the code used other than + * the above mentioned libraries. If you modify this file, you may extend this + * exception to your version of the file, but you are not obligated to do so. + * If you do not wish to do so, delete this exception statement from your version. */ +package mir.util; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; +import java.util.List; import java.util.Map; import java.util.Set; @@ -95,4 +94,45 @@ public class XMLReaderTool { } } + + /** + * Returns the namespace part of a qualified XML Tag name
+ * Example:
+ * getNameSpaceFromQualifiedName("dc:creator");
+ * will return "dc" + * + * @param aQualifiedName + * @return + */ + + public static String getNameSpaceFromQualifiedName(String aQualifiedName) { + List parts = StringRoutines.splitString(aQualifiedName, ":"); + + if (parts.size()<=1) + return null; + else + return (String) parts.get(0); + } + + /** + * Returns the localname part of a qualified XML Tag name
+ * Example:
+ * getLocalNameFromQualifiedName("dc:creator");
+ * will return "creator" + * + * @param aQualifiedName + * @return + */ + + public static String getLocalNameFromQualifiedName(String aQualifiedName) { + List parts = StringRoutines.splitString(aQualifiedName, ":"); + + if (parts.size()<1) + return null; + if (parts.size()==1) + return (String) parts.get(0); + else + return (String) parts.get(1); + } + }