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 Models.Pojo.Author

        @Override
        public Object getValueAt(int rowIndex, int columnIndex) {
          Book book = (Book) list.get(rowIndex);
         
           Author author = book.getAuthor();
         
            switch(columnIndex){
                case 0 : return book.getId();
                case 1 : return book.getName();
                //case 2 : return book.getAuthor_id();
                case 2 : return author.getFull_name();
                case 3 : return book.getPrice();
                case 4 : return book.getTotal_pages();
                   
            }
            return new String();
    View Full Code Here

    Examples of beans.Author

           
            books_node = new SearchBookDecorator(aux).search(this.window_login.getBooks());

            //***************************************************************************************
            for (int i = 0; i < this.window_login.getAuthors().size();i++){
                Author temp = (Author)this.window_login.getAuthors().get(i);
                if (temp!=null){
                    authors_node.add(new javax.swing.tree.DefaultMutableTreeNode(temp.getName()));
                }
            }
            for (int i = 0; i< this.window_login.getReservations().size();i++){
                Reservation temp = (Reservation)this.window_login.getReservations().get(i);
                if (temp!=null){
                    if (temp.getProduct()!=null){
                        reservations_node.add(new javax.swing.tree.DefaultMutableTreeNode(temp.getProduct().getName()));
                    }
                }
            }
            //***************************************************************************************

     
    View Full Code Here

    Examples of com.colorfulsoftware.atom.Author

        // test extension namespaces
        try {
          feed1 = feedDoc.readFeedToBean(basicFeed4);
          List<Author> auths = feed1.getAuthors();
          Author author = auths.remove(0);
          List<Extension> extns = new LinkedList<Extension>();
          extns.add(feedDoc.buildExtension("whats:up", null,
              "nothing special"));
          auths.add(feedDoc.buildAuthor(author.getName(), author.getUri(),
              author.getEmail(), author.getAttributes(), extns));
          feedDoc.buildFeed(feed1.getId(), feed1.getTitle(), feed1
              .getUpdated(), feed1.getRights(), auths, feed1
              .getCategories(), feed1.getContributors(),
              feed1.getLinks(), feed1.getAttributes(), feed1
                  .getExtensions(), feed1.getGenerator(), feed1
                  .getSubtitle(), feed1.getIcon(), feed1.getLogo(),
              feed1.getEntries());
          fail("this should not happen.");
        } catch (Exception e) {
          e.printStackTrace();
          assertTrue(e instanceof AtomSpecException);
          assertEquals(
              e.getMessage(),
              "the following extension prefix(es) ( whats ) are not bound to a namespace declaration. See http://www.w3.org/TR/1999/REC-xml-names-19990114/#ns-decl.");
        }

        try {
          feed1 = feedDoc.readFeedToBean(basicFeed4);
          List<Author> auths = feed1.getAuthors();
          Author author = auths.remove(0);
          List<Extension> extns = new LinkedList<Extension>();
          extns.add(feedDoc.buildExtension("whats:up", null,
              "nothing special"));
          List<Attribute> attrs = feed1.getAttributes();
          attrs.add(feedDoc.buildAttribute("xmlns:whats",
              "http://www.yyy.zzz"));
          auths.add(feedDoc.buildAuthor(author.getName(), author.getUri(),
              author.getEmail(), author.getAttributes(), extns));
          feed1 = feedDoc.buildFeed(feed1.getId(), feed1.getTitle(), feed1
              .getUpdated(), feed1.getRights(), auths, feed1
              .getCategories(), feed1.getContributors(),
              feed1.getLinks(), attrs, feed1.getExtensions(), feed1
                  .getGenerator(), feed1.getSubtitle(), feed1
    View Full Code Here

    Examples of com.force.samples.entity.Author

        tx.commit();
      }

      private static void populateCannedData(EntityManager em) {
       
        Author author = new Author();
        author.setFirstName("JRR");
        author.setLastName("Tolkein");

        Book hobbit = new Book();
        hobbit.setAuthor(author);
        hobbit.setTitle("The Hobbit");
        hobbit.setPublicationDate(new GregorianCalendar(1937, 11, 1).getTime());
        em.persist(hobbit);
       
        Book fotr = new Book();
        fotr.setAuthor(author);
        fotr.setTitle("Fellowship of the Ring");
        fotr.setPublicationDate(new GregorianCalendar(1954, 06, 24).getTime());
        em.persist(fotr);
       
        Book twoTowers = new Book();
        twoTowers.setAuthor(author);
        twoTowers.setTitle("The Two Towers");
        twoTowers.setPublicationDate(new GregorianCalendar(1954, 10, 11).getTime());
        em.persist(twoTowers);
       
        Book rotk = new Book();
        rotk.setAuthor(author);
        rotk.setTitle("Return of the King");
        rotk.setPublicationDate(new GregorianCalendar(1955, 9, 20).getTime());
        em.persist(rotk);
       
        Author rowling = new Author();
        rowling.setFirstName("J.K");
        rowling.setLastName("Rowling");
       
        Book hpps = new Book();
        hpps.setAuthor(rowling);
        hpps.setTitle("Harry Potter and the Philosophers Stone");
        hpps.setPublicationDate(new GregorianCalendar(1997, 5, 30).getTime());
    View Full Code Here

    Examples of com.force.samples.entity.Author

       
        log.info("Creating and persisting entity...");
        EntityTransaction tx = em.getTransaction();
        tx.begin();
       
        Author author = new Author();
        author.setFirstName("JRR");
        author.setLastName("Tolkein");

        Book book = new Book();
        book.setAuthor(author);
        book.setTitle("Fellowship of the Ring");
        book.setPublicationDate(new GregorianCalendar(1954, 06, 24).getTime());
    View Full Code Here

    Examples of com.google.appengine.demos.sticky.client.model.Author

        final UserService userService = UserServiceFactory.getUserService();
        final User user = tryGetCurrentUser(userService);
        final Store.Api api = store.getApi();
        try {
          final Key surfaceKey = getSurfaceKeys(api, user).get(0);
          final UserInfoResult result = new Service.UserInfoResult(new Author(user
              .getEmail(), user.getNickname()), getSurface(api, surfaceKey),
              userService.createLogoutURL(userService.createLoginURL("/")));
          return result;
        } finally {
          api.close();
    View Full Code Here

    Examples of com.java7developer.chapter4.Author

      public static void main() {
        List<Update> lu = new ArrayList<Update>();
        String text = "";
        final Update.Builder ub = new Update.Builder();
        final Author a = new Author("Tallulah");

        for (int i = 0; i < 256; i++) {
          text = text + "X";
          long now = System.currentTimeMillis();
          lu.add(ub.author(a).updateText(text).createTime(now).build());
    View Full Code Here

    Examples of com.saasovation.collaboration.domain.model.collaborator.Author

                    }
                });

            discussion = forum.startDiscussion(
                    DomainRegistry.forumIdentityService(),
                    new Author("jdoe", "John Doe", "jdoe@saasovation.com"),
                    "All About DDD");

            DomainRegistry.discussionRepository().save(discussion);

            assertNotNull(tenant);
    View Full Code Here

    Examples of com.semagia.atomico.dm.impl.Author

         * @param authorName The author's name.
         * @param authorEmail The author's e-mail address.
         * @param authorIRI The author's IRI.
         */
        public DefaultConfiguration(final String authorName, final String authorEmail, final String authorIRI) {
            _author = new Author(authorName, authorEmail, authorIRI);
        }
    View Full Code Here

    Examples of com.softsizo.data.Author

      public void testParse() throws IOException {
        String diff = readFile("src/test/resources/diff-example-1.txt");
        ExtractedData data = new ExtractedData()
            .setRepositoryFilter(new RepositoryFilter(null, null));
        SvnDiffHandler diffParser = new SvnDiffHandler(data);
        ChangeSet changeSet = new ChangeSet(1000, new Author("sergio"));
        diffParser.parse(diff, changeSet);
        assertEquals(1, data.getFiles().size());
        assertEquals(5, data.getFileByFilename("/core/src/core/org/jnode/vm/VmReflection.java").getAddedLoc());
        assertEquals(6, data.getFileByFilename("/core/src/core/org/jnode/vm/VmReflection.java").getDeletedLoc());
      }
    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.