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.jooq.example.db.h2.tables.Author

        @Test
        public void testJoin() throws Exception {
            // All of these tables were generated by jOOQ's Maven plugin
            Book b = BOOK.as("b");
            Author a = AUTHOR.as("a");
            BookStore s = BOOK_STORE.as("s");
            BookToBookStore t = BOOK_TO_BOOK_STORE.as("t");

            Result<Record3<String, String, Integer>> result =
            DSL.using(connection)
    View Full Code Here

    Examples of org.jooq.example.db.h2.tables.pojos.Author

            assertEquals(2, service.getAuthors().size());
        }

        @Test
        public void testName() {
            Author author = service.getAuthor(1);
            assertEquals("George", author.getFirstName());
            assertEquals("Orwell", author.getLastName());
        }
    View Full Code Here

    Examples of org.jooq.example.db.h2.tables.pojos.Author

                service.transactional(new Runnable() {
                    @Override
                    public void run() {

                        // This should work normally
                        Author author = service.getAuthor(1);
                        author.setFirstName("John");
                        author.setLastName("Smith");
                        assertEquals(1, service.mergeNames(author));

                        author = service.getAuthor(1);
                        assertEquals("John", author.getFirstName());
                        assertEquals("Smith", author.getLastName());

                        // But this shouldn't work. Authors have books, and there is no cascade delete
                        service.deleteAuthor(1);
                        fail();
                    }
    View Full Code Here

    Examples of org.jrest.dao.test.entities.Author

      }
     
      private static Book getNewBook(String title, float price, int length) {
        PackingInfo info = new PackingInfo("平装", "铜版纸", length);
        List<Author> authors = new ArrayList<Author>();
        authors.add(new Author("gzYangfan"));
       
        Book book = new Book();
        book.setTitle(title);
        book.setSummary("java");
        book.setPrice(price);
    View Full Code Here

    Examples of org.jrest.dao.test.entities.Author

      }
     
      private static Book getNewBook(String title, float price, int length) {
        PackingInfo info = new PackingInfo("平装", "铜版纸", length);
        List<Author> authors = new ArrayList<Author>();
        authors.add(new Author("gzYangfan"));
       
        Book book = new Book();
        book.setTitle(title);
        book.setSummary("java");
        book.setPrice(price);
    View Full Code Here

    Examples of org.jrest.dao.test.entities.Author

      }
     
      private Book getNewBook(String title, float price, int length) {
        PackingInfo info = new PackingInfo("平装", "铜版纸", length);
        List<Author> authors = new ArrayList<Author>();
        authors.add(new Author("gzYangfan"));
       
        Book book = new Book();
        book.setTitle(title);
        book.setSummary("java");
        book.setPrice(price);
    View Full Code Here

    Examples of org.jrest.dao.test.entities.Author

      }
     
      private Book getNewBook(String title, float price, int length) {
        PackingInfo info = new PackingInfo("平装", "铜版纸", length);
        List<Author> authors = new ArrayList<Author>();
        authors.add(new Author("gzYangfan"));
       
        Book book = new Book();
        book.setTitle(title);
        book.setSummary("java");
        book.setPrice(price);
    View Full Code Here

    Examples of org.lexev.bestwisethoughts.client.data.Author

      public void showAuthorDetailes(final String authorName){
        SwingWorker<Author, Void> swingWorker = new SwingWorker<Author, Void>() {
                @Override
                public Author doInBackground() throws IOException{
                  if (authorName == null || authorName.equalsIgnoreCase(Const.K_UNKOWN_AUTHOR_NAME)){
                    return new Author();
                  }
                  Author author = cachedAuthors.getValidValue(authorName);
                if (author!=null){
                  return author;
                }
                author =  webServiceREST.getAuthor(authorName);
                cachedAuthors.addAndSaveToFile(author.getName(), author);
                return author;
                }

                @Override
                public void done() {       
                    try {
                      Author authorAcquired = get();
                    toaster.showToaster(authorAcquired);
                    } catch (InterruptedException ignore) {
                    } catch (ExecutionException e) {
                      if (e.getCause() != null){
                        if (e.getCause().getClass() == UniformInterfaceException.class){
    View Full Code Here

    Examples of org.objectweb.speedo.pobjects.fetchgroup.Author

       * test the definition of a fetch-group in the jdo file with a a.b.c field
       * <field name="a.b.c">
       */
      public void testInheritanceReference() {
        logger.log(BasicLevel.DEBUG, "***************testInheritanceReference*****************");
        Author author1 = new Author("Marx", "Karl");
        Author author2 = new Author("Kissinger", "Henry");
       
        Editor editor1 = new Editor("Plon");
        Editor editor2 = new Editor("Robert");
       
        Style style1 = new Style("act", "action");
    View Full Code Here

    Examples of org.objectweb.speedo.tutorial.pobjects.additional.detach.Author

      public static void usePredefinedFetchGroups(PersistenceManager pm){
        //create a fetch plan
        FetchPlan fp = pm.getFetchPlan();
       
        //create a book
        Author author = new Author("William S. Burroughs");
        Address address = new Address("Fenton Street", "931ZR2", "Leeds");
        Editor editor = new Editor("Mille et Une Nuits", address);
        Book book = new Book("The Yage Letters", author, editor, 1955);
       
        //make the book persistent
    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.