Examples of addSet()


Examples of org.fao.oaipmh.responses.Header.addSet()

    //--- find and add categories (here called sets)

    for (MetadataCategory category : metadata.getCategories())
    {
      h.addSet(category.getName());
    }

    return h;
  }
}
View Full Code Here

Examples of org.fao.oaipmh.responses.ListSetsResponse.addSet()

    for (MetadataCategory rec : metadataCategories)
    {
      String name  = rec.getName();
      String label = rec.getLabel(context.getLanguage());

      res.addSet(new SetInfo(name, label));
    }

    return res;
  }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.