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 com.tubeonfire.entity.Author

              String userId = req.getParameter("userId");
              String uri = "https://gdata.youtube.com/feeds/api/users/"
                  + userId;
              if (uri != null && uri.length() > 0) {
                if (AuthorModel.getById(uri) == null) {
                  Author author = new Author();
                  author.setUri(uri);
                  String[] spl = uri.split("/");
                  author.setName(spl[spl.length - 1]);
                  author = YoutubeService.getUserProfile(author);
                  author.setStatus(1);
                  author.setBumpPoint(Calendar.getInstance()
                      .getTimeInMillis() / 1000);
                  author.setUpdated(Calendar.getInstance().getTime());
                  AuthorModel.insert(author);
                  com.tubeonfire.model.AuthorModel.clearModelCache();
                }
              }
            }
    View Full Code Here

    Examples of de.flexguse.demo.model.Author

      @Transactional
      @Test
      public void testSaveUserWithBooks() {

        // create the author of the books in the persistence
        Author author = createAuthor();
        authorRepository.save(author);

        /*
         * create 2 books. the books must be persisted before they are assigned
         * to a user.
    View Full Code Here

    Examples of de.fraunhofer.fit.collabreview.core.users.Author

            deleted.setObsoleteDate(revDate);
            logger.debug("Set obsolete: " + deleted);
          } else {
            logger.warn("No latest artifact with name: " + articleName);
          }
          Author author = ((GforgeAuthorManager)collabReview.getRepository().getCollabReview().getAuthorManager()).getAuthor(author_id);
          if (author == null) {
            author = collabReview.getAuthorManager().storeAuthor(author);
            if (author == null) {
              logger.error("Failed to store the author; this will cause further exceptions...");
            }
    View Full Code Here

    Examples of de.micromata.opengis.kml.v_2_2_0.atom.Author

        /**
         * Create an instance of {@link Author}
         *
         */
        public static Author createAtomAuthor() {
            return new Author();
        }
    View Full Code Here

    Examples of domain.blog.Author

      private ExpressionEvaluator evaluator = new ExpressionEvaluator();

      @Test
      public void shouldCompareStringsReturnTrue() {
        boolean value = evaluator.evaluateBoolean("username == 'cbegin'", new Author(1, "cbegin", "******", "cbegin@apache.org", "N/A", Section.NEWS));
        assertEquals(true, value);
      }
    View Full Code Here

    Examples of edu.mayo.bmi.guoqian.claml.Author

        /**
         * Create an instance of {@link Author }
         *
         */
        public Author createAuthor() {
            return new Author();
        }
    View Full Code Here

    Examples of ma.glasnost.orika.test.common.types.TestCaseClasses.Author

        @Test
        public void testBaseCaseWithCollectionTypes() {
         
          List<Book> books = new ArrayList<Book>(4);
         
          Author author1 = new AuthorImpl("Author #1");
          Author author2 = new AuthorImpl("Author #2");
         
          books.add(new BookImpl("Book #1", author1));
          books.add(new BookImpl("Book #2", author1));
          books.add(new BookImpl("Book #3", author2));
          books.add(new BookImpl("Book #4", author2));
    View Full Code Here

    Examples of ma.glasnost.orika.test.property.TestCaseClasses.Author

    *
    */
    public class PublicFieldMappingTestCase {
       
        private Author createAuthor(Class<? extends Author> type) throws InstantiationException, IllegalAccessException {
            Author author = type.newInstance();
            author.setName("Khalil Gebran");
           
            return author;
        }
    View Full Code Here

    Examples of ma.glasnost.orika.test.unenhance.SuperTypeTestCaseClasses.Author

       
      }
     
       
      private Author createAuthor(Class<? extends Author> type) throws InstantiationException, IllegalAccessException {
        Author author = (Author) type.newInstance();
        author.setName("Khalil Gebran");
       
        return author;
      }
    View Full Code Here

    Examples of mediateca.action.beans.Author

        authorsSelected=new ArrayList<String>();
        this.authorsSelected.add("2");
        //String json = JsonUtils.fromJavaToJson(authorsSelected);
       
        authorsList = new ArrayList<Author>();
        authorsList.add(new Author("1", "Alberto", "Vazquez Figueroa"));
        authorsList.add(new Author("2", "Javier", "Sierra"));
        authorsList.add(new Author("3", "Iker", "Jimenez"));
        authorsList.add(new Author("4", "Santiago", "Camacho"));

        authors = new HashMap<String, String>();
        for (Author currentAuthor : authorsList) {
          authors.put(currentAuthor.getId(), currentAuthor.getCompleteName());
        }
    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.