Changeset 34152 in osm for applications/editors/josm/plugins/opendata/includes/org/jopendocument
- Timestamp:
- 2018-04-08T15:13:54+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/ChildCreator.java
r30568 r34152 1 1 /* 2 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. 3 * 3 * 4 4 * Copyright 2008 jOpenDocument, by ILM Informatique. All rights reserved. 5 * 5 * 6 6 * The contents of this file are subject to the terms of the GNU 7 * General Public License Version 3 only ("GPL"). 8 * You may not use this file except in compliance with the License. 7 * General Public License Version 3 only ("GPL"). 8 * You may not use this file except in compliance with the License. 9 9 * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html 10 10 * See the License for the specific language governing permissions and limitations under the License. 11 * 11 * 12 12 * When distributing the software, include this License Header Notice in each file. 13 * 13 * 14 14 */ 15 15 … … 25 25 /** 26 26 * A helper to create children in the schema order. 27 * 27 * 28 28 * @author Sylvain CUAZ 29 29 */ … … 65 65 /** 66 66 * Trouve l'index ou il faut insérer le fils dans ce document. 67 * 67 * 68 68 * @param childName le nom du fils que l'on veut insérer. 69 69 * @return l'index ou il faut l'insérer (s'il est déjà présent son index actuel +1). 70 * @throws IllegalArgumentException if childName is not in {@link #getChildren()}.71 70 */ 72 71 @SuppressWarnings("unchecked") … … 94 93 /** 95 94 * Insère cet élément à la bonne place. The child should not be already present. 96 * 95 * 97 96 * @param child l'élément à insérer, doit être dans TOP_ELEMENTS. 98 97 */ … … 105 104 /** 106 105 * Return the asked child, optionally creating it. 107 * 106 * 108 107 * @param childNS the namespace of the child. 109 108 * @param childName the name of the child.
Note:
See TracChangeset
for help on using the changeset viewer.