Examples of Author

  • org.apache.any23.plugin.Author
    Reference test class for {@link SpeciesExtractor}. @author Davide Palmisano (dpalmisano@gmail.com)
  • org.apache.aries.samples.blog.api.persistence.Author
  • org.apache.bval.jsr303.example.Author
  • org.apache.camel.dataformat.bindy.model.simple.onetomany.Author
  • org.apache.geronimo.test.jpa.entity.Author
    This class represents a blog post Author
  • org.apache.ibatis.domain.blog.Author
  • org.apache.jackrabbit.ocm.testmodel.version.Author
  • org.apache.torque.test.Author
  • org.apache.torque.test.dbobject.Author
    Author table The skeleton for this class was autogenerated by Torque on: [Wed Feb 27 08:39:08 CET 2013] You should add additional methods to this class to meet the application requirements. This class will only be generated as long as it does not already exist in the output directory.
  • org.apache.wink.jaxrs.test.jaxb.book.Author
  • org.apache.ws.jaxme.test.misc.types.Author
  • org.asciidoctor.ast.Author
  • org.bar.foo.entities.Author
  • org.conserve.objects.Author
    @author Erik Berglund
  • org.dozer.vo.cumulative.Author
    @author Dmitry Buzdin
  • org.hibernate.search.test.performance.model.Author
    @author Tomas Hradec
  • org.jooq.example.db.h2.tables.Author
  • org.jooq.example.db.h2.tables.pojos.Author
  • org.jrest.dao.test.entities.Author
    作者、编著者、编译者 @author Franky
  • org.lexev.bestwisethoughts.client.data.Author
    Represent Author instance of thought @author Alexey Evseev
  • org.objectweb.speedo.pobjects.fetchgroup.Author
    @author Y.Bersihand
  • org.objectweb.speedo.tutorial.pobjects.additional.detach.Author
    @author Y.Bersihand
  • org.ops4j.pax.exam.sample1.model.Author
  • org.ops4j.pax.exam.sample4.model.Author
  • org.ops4j.pax.exam.sample6.model.Author
  • org.purl.sword.atom.Author
    Represents an Author type, as used in ATOM. This class is used as the base class for the different areas of ATOM that represent information about people. This includes the atom:author and atom:contributor elements. @author Neil Taylor
  • org.springframework.data.elasticsearch.entities.Author
    @author Rizwan Idrees @author Mohsin Husen
  • org.wicketstuff.osgi.test.library.model.Author
  • ru.aristar.jnuget.Author
    @author Unlocker
  • timforce.Author

  • Examples of org.ops4j.pax.exam.sample1.model.Author

        @Inject
        private AuthorRepository repo;

        @Test
        public void byAuthor() {
            Author author = new Author();
            author.setFirstName("Heinrich");
            author.setLastName("Heine");
            repo.saveAndFlush(author);
           
            assertThat(repo.count(), is(3L));
        }
    View Full Code Here

    Examples of org.ops4j.pax.exam.sample4.model.Author

        public void fillLibrary() {
            if (getNumBooks() != 0) {
                return;
            }

            Author mann = createAuthor("Thomas", "Mann");
            Author steinbeck = createAuthor("John", "Steinbeck");

            createBook("Buddenbrooks", mann);
            createBook("East of Eden", steinbeck);
        }
    View Full Code Here

    Examples of org.ops4j.pax.exam.sample6.model.Author

        @TransactionAttribute
        public void fillLibrary() {
            if (getNumBooks() != 0) {
                return;
            }
            Author mann = createAuthor("Thomas", "Mann");
            Author steinbeck = createAuthor("John", "Steinbeck");

            createBook("Buddenbrooks", mann);
            createBook("East of Eden", steinbeck);
        }
    View Full Code Here

    Examples of org.purl.sword.atom.Author

      protected void addAuthors()
      {
        if (deposit != null)
        {
          String username = this.deposit.getUsername();
          Author author = new Author();
          author.setName(username);
          entry.addAuthors(author);
        }
      }
    View Full Code Here

    Examples of org.springframework.data.elasticsearch.entities.Author

        // given
        String id = randomAlphanumeric(5);
        Book book = new Book();
        book.setId(id);
        book.setName("xyz");
        Author author = new Author();
        author.setId("1");
        author.setName("ABC");
        book.setAuthor(author);
        // when
        bookRepository.save(book);
        // then
        assertThat(bookRepository.findOne(id), is(notNullValue()));
    View Full Code Here

    Examples of org.wicketstuff.osgi.test.library.model.Author

      public void fillLibrary()
      {
        if (getNumBooks() != 0)
          return;

        Author mann = new Author();
        mann.setFirstName("Thomas");
        mann.setLastName("Mann");

        Author steinbeck = new Author();
        steinbeck.setFirstName("John");
        steinbeck.setLastName("Steinbeck");

        Book buddenbrooks = new Book();
        buddenbrooks.setTitle("Buddenbrooks");
        buddenbrooks.setAuthor(mann);
        mann.getBooks().add(buddenbrooks);

        Book eden = new Book();
        eden.setTitle("East of Eden");
        eden.setAuthor(steinbeck);
        steinbeck.getBooks().add(eden);

        save(mann);
        save(steinbeck);
        save(buddenbrooks);
        save(eden);
    View Full Code Here

    Examples of ru.aristar.jnuget.Author

        public PackageEntry(NuspecFile nuspecFile, Hash packageHash, Long packageSize, Date updateDate) {
            this.nuspecFile = nuspecFile;
            this.title = new Title(nuspecFile.getId());
            getProperties().setNuspec(nuspecFile);
            this.updated = updateDate;
            this.author = new Author(nuspecFile.getAuthors());
            PackageEntry.this.getLinks().add(new Link("edit-media", "Package",
                    "Packages" + getCombineIdAndVersion() + "/$value"));
            PackageEntry.this.getLinks().add(new Link("edit", "Package",
                    "Packages" + getCombineIdAndVersion()));
            this.getProperties().setPackageHash(packageHash.toString());
    View Full Code Here

    Examples of timforce.Author

            // out.println("<td>" + author.getName() + "</td>");

            // Integer authorId = quoteIter.getAuthorId();
            // out.println("<td>" + authorId + "</td>");

            Author author = quoteIter.getAuthor();
            out.println("<td>" + author.getName() + "</td>");
            out.println("</tr>");
          }

          out.println("</table>");
        } else {
    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.