buildframework/helium/sf/java/antdata/src/com/nokia/helium/ant/data/AntlibMeta.java
changeset 628 7c4a911dc066
parent 587 85df38eb4012
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
    16  */
    16  */
    17 
    17 
    18 package com.nokia.helium.ant.data;
    18 package com.nokia.helium.ant.data;
    19 
    19 
    20 import java.io.IOException;
    20 import java.io.IOException;
    21 import org.dom4j.DocumentException;
    21 
    22 import org.dom4j.Element;
    22 import org.dom4j.Element;
    23 
    23 
    24 /**
    24 /**
    25  * An Ant library root object.
    25  * An Ant library root object.
    26  */
    26  */
    27 public class AntlibMeta extends RootAntObjectMeta {
    27 public class AntlibMeta extends RootAntObjectMeta {
    28 
    28 
    29     public AntlibMeta(AntFile antFile, Element node) throws DocumentException, IOException {
    29     public AntlibMeta(AntFile antFile, Element node) throws IOException {
    30         super(antFile, node);
    30         super(antFile, node);
    31 
    31 
    32         // Only parse a project comment if it is marked
    32         // Only parse a project comment if it is marked
    33         if (!getComment().isMarkedComment()) {
    33         if (!getComment().isMarkedComment()) {
    34             setComment(getEmptyComment());
    34             setComment(getEmptyComment());