Package buri.ddmsence.ddms.summary

Examples of buri.ddmsence.ddms.summary.Description


    });
    CONSTRUCTOR_BUILDERS.put(Description.class, new IConstructorBuilder() {
      public IDDMSComponent build() throws IOException, InvalidDDMSException {
        String text = readString("the description text [testDescription]");
        SecurityAttributes attr = buildSecurityAttributes("description");
        return (new Description(text, attr));
      }
    });
    CONSTRUCTOR_BUILDERS.put(Dates.class, new IConstructorBuilder() {
      public IDDMSComponent build() throws IOException, InvalidDDMSException {
        String created = readString("the created date [2010]");
View Full Code Here


      components = element.getChildElements(Subtitle.getName(version), namespace);
      for (int i = 0; i < components.size(); i++)
        _subtitles.add(new Subtitle(components.get(i)));
      component = getChild(Description.getName(version));
      if (component != null)
        _description = new Description(component);
      components = element.getChildElements(Language.getName(version), namespace);
      for (int i = 0; i < components.size(); i++)
        _languages.add(new Language(components.get(i)));
      component = getChild(Dates.getName(version));
      if (component != null)
View Full Code Here

      for (int i = 0; i < addressees.size(); i++) {
        _addressees.add(new Addressee(addressees.get(i)));
      }
      Element description = element.getFirstChildElement(Description.getName(getDDMSVersion()), getNamespace());
      if (description != null)
        _description = new Description(description);
      Element taskID = element.getFirstChildElement(TaskID.getName(getDDMSVersion()), getNamespace());
      if (taskID != null)
        _taskID = new TaskID(taskID);
      _securityAttributes = new SecurityAttributes(element);
      validate();
View Full Code Here

      components = element.getChildElements(PointOfContact.getName(version), getNamespace());
      for (int i = 0; i < components.size(); i++)
        _pointOfContacts.add(new PointOfContact(components.get(i)));
      component = element.getFirstChildElement(Description.getName(version), getNamespace());
      if (component != null)
        _description = new Description(component);
      components = element.getChildElements(ProcessingInfo.getName(version), getNamespace());
      for (int i = 0; i < components.size(); i++)
        _processingInfos.add(new ProcessingInfo(components.get(i)));
      component = element.getFirstChildElement(RevisionRecall.getName(getDDMSVersion()), getNamespace());
      if (component != null)
View Full Code Here

TOP

Related Classes of buri.ddmsence.ddms.summary.Description

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.