KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mr > core > util > xml > XMLManipulator


1 package org.mr.core.util.xml;
2
3 /*
4  * Copyright 2002 by
5  * <a HREF="http://www.coridan.com">Coridan</a>
6  * <a HREF="mailto: support@coridan.com ">support@coridan.com</a>
7  *
8  * The contents of this file are subject to the Mozilla Public License Version
9  * 1.1 (the "License"); you may not use this file except in compliance with the
10  * License. You may obtain a copy of the License at
11  * http://www.mozilla.org/MPL/
12  *
13  * Software distributed under the License is distributed on an "AS IS" basis,
14  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
15  * for the specific language governing rights and limitations under the
16  * License.
17  *
18  * The Original Code is "MantaRay" (TM).
19  *
20  * The Initial Developer of the Original Code is Coridan.
21  * Portions created by the Initial Developer are Copyright (C) 2006
22  * Coridan Inc. All Rights Reserved.
23  *
24  * Contributor(s): all the names of the contributors are added in the source
25  * code where applicable.
26  *
27  * Alternatively, the contents of this file may be used under the terms of the
28  * LGPL license (the "GNU LESSER GENERAL PUBLIC LICENSE"), in which case the
29  * provisions of LGPL are applicable instead of those above. If you wish to
30  * allow use of your version of this file only under the terms of the LGPL
31  * License and not to allow others to use your version of this file under
32  * the MPL, indicate your decision by deleting the provisions above and
33  * replace them with the notice and other provisions required by the LGPL.
34  * If you do not delete the provisions above, a recipient may use your version
35  * of this file under either the MPL or the GNU LESSER GENERAL PUBLIC LICENSE.
36  
37  *
38  * This library is free software; you can redistribute it and/or modify it
39  * under the terms of the MPL as stated above or under the terms of the GNU
40  * Lesser General Public License as published by the Free Software Foundation;
41  * either version 2.1 of the License, or any later version.
42  *
43  * This library is distributed in the hope that it will be useful, but WITHOUT
44  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
45  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
46  * License for more details.
47  */

48
49  /** User: Moti Tal
50  * Date: Feb 22, 2005
51  * Time: 2:50:20 PM
52  * To change this template use File | Settings | File Templates.
53  */

54 public abstract class XMLManipulator {
55
56     String JavaDoc m_selfName;
57     String JavaDoc m_selfXpath;
58     boolean m_includesSelf;
59
60     public String JavaDoc getDescendantOrSelf(String JavaDoc i_selpXpath){
61         return null;
62     }
63
64     public String JavaDoc[] getDescendantsOrSelf(String JavaDoc i_selpXpath){
65         return null;
66     }
67
68     public String JavaDoc getDescendant(String JavaDoc i_selpXpath){
69         return null;
70     }
71
72     public String JavaDoc[] getDescendants(String JavaDoc i_selpXpath){
73         return null;
74     }
75
76     public String JavaDoc getSelf(String JavaDoc i_xpath){
77         return null;
78     }
79
80 }
81
Popular Tags