Examples of Contributor


Examples of org.jfree.ui.about.Contributor

    setCopyright ("(C)opyright 2006,2007, by Pentaho Corporation and Contributors");
    setLicenceText(Licences.getInstance().getLGPL());

    setContributors(Arrays.asList(new Contributor[]
    {
      new Contributor("Thomas Morgner", "taqua@users.sourceforge.net"),
      new Contributor("Matt Casters", "mattcasters@users.sourceforge.net"),
    }));


    setBootClass(LibLoaderBoot.class.getName());
    setAutoBoot(true);
View Full Code Here

Examples of org.purl.sword.atom.Contributor

    if (deposit != null)
    {
      String obo = deposit.getOnBehalfOf();
      if (obo != null)
      {
        Contributor cont = new Contributor();
        cont.setName(obo);
        entry.addContributor(cont);
      }
    }
  }
View Full Code Here

Examples of org.purl.sword.atom.Contributor

    e.setRel("edit");
    e.setHref("http://www.myrepository.ac.uk/sdl/workflow/my deposit.atom");
    se.addLink(e);
   
    if (deposit.getOnBehalfOf() != null) {
      Contributor c = new Contributor();
      c.setName(deposit.getOnBehalfOf());
      c.setEmail(deposit.getOnBehalfOf() + "@myrepository.ac.uk");
      se.addContributor(c);
    }
   
    Generator generator = new Generator();
    generator.setContent("Stuart's Dummy SWORD Server");
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.