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.japidsample.Author

      public static void js() {
        renderJapid();
      }
     
      public static void japider() {
        models.japidsample.Author a = new Author();
        a.name = "me, myself and I, 我就我自己";
        a.birthDate = new Date();
        a.gender = 'M';
        a.publisher = "People's  Daily";
        renderJapid(a);
    View Full Code Here

    Examples of models.japidsample.Author

       *
       */
      public static void renderByPosition() {
        String s = "hello,renderByPosition!";
        int i = 100;
        Author a = new Author();
        a.name = "author1";

        Author2 a2 = new Author2();
        a2.name = "author2";
       
    View Full Code Here

    Examples of net.celisdelafuente.java.Acacia.entity.Author

          TextField fClass = (TextField)bFieldset.getControl("classDescription");
          NumberField fQtty = (NumberField)bFieldset.getControl("quantity");
         
          ConnectionSource conn = (JdbcConnectionSource) GetConnection();
         
          Author a = new Author();
          if(fullNameArr.length > 1) {
            a = a.getByFullName(conn, author, fullNameArr);
            Integer author_id = a.getId();
            if (author_id != 0 && author_id != null) {
              if(fullNameArr.length > 2) {
                if (!a.getLname().equalsIgnoreCase(fullNameArr[1]) ||
                    !a.getMname().equalsIgnoreCase(fullNameArr[2]) ||
                    !a.getName().equalsIgnoreCase(fullNameArr[0]))
                  author.update(a);
              } else if (fullNameArr.length == 2) {
                if (!a.getLname().equalsIgnoreCase(fullNameArr[1]) ||
                    !a.getName().equalsIgnoreCase(fullNameArr[0]))
                  author.update(a);
              }
              author.refresh(a);       
            } else {
              a = new Author(fullNameArr);
              author.create(a);
              author.refresh(a);
            }
          }
         
    View Full Code Here

    Examples of net.relatedwork.shared.dto.Author

            if (n == null) {
                System.out.println("URI INDEX ERROR. uri " + uri + " has more than one associated node.");
                return result;
            }

            Author author = authorAccessHandler.authorFromNode(n);

            if (author == null) {
                System.out.println("Cannot render Author page for node: "+n.toString() +", uri: " + uri);
                return result;
            }
    View Full Code Here

    Examples of net.sf.collabreview.core.users.Author

        if (repository.getArtifact(aid) != null) {
          logger.warn("Artifact is already there, skipping");
          return;
        }
        // store the artifact to the store
        Author author = owner.getOrCreateAuthorForActionData(actionData);
        importProgressInfo.setAtomicWorkUnitDescription("Adding " + aid + " to repository");
        assert repository.getLatestForName(aid.getName(), aid.getBranch()) == null ||
            repository.getLatestForName(aid.getName(), aid.getBranch()).isObsolete();
        Artifact newArtifact = repository.addArtifact(aid, actionData.getDate(), truncatedText(actionData), author);
        // update groupings
    View Full Code Here

    Examples of net.sf.jabref.AuthorList.Author

      public String format(String fieldText) {
        AuthorList a = AuthorList.getAuthorList(fieldText);
        if (a.size() == 0) {
          return fieldText;
        }
        Author first = a.getAuthor(0);
        StringBuffer sb = new StringBuffer();
        sb.append(first.getLastFirst(true));
        for (int i = 1; i < a.size(); i++) {
          sb.append(", ").append(a.getAuthor(i).getFirstLast(true));
        }
        return sb.toString();
      }
    View Full Code Here

    Examples of net.sf.jabref.AuthorList.Author

        if (names != null){
          AuthorList a = AuthorList.getAuthorList(names);
          if (name.intValue() > a.size()){
            throw new VMException("Author Out of Bounds. Number " + name + " invalid for " + names);
          }
          Author author = a.getAuthor(name.intValue() - 1);
         
          stack.push(BibtexNameFormatter.formatName(author, format, vm));
        } else {
          stack.push("");
        }
    View Full Code Here

    Examples of net.xeoh.plugins.base.annotations.meta.Author

                    rval.add(string);
                }
                break;

            case AUTHORS:
                final Author author = plugin.getClass().getAnnotation(Author.class);
                if (author == null) break;
                rval.add(author.name());
                break;

            case VERSION:
                final Version version = plugin.getClass().getAnnotation(Version.class);
                if (version == null) break;
    View Full Code Here

    Examples of nl.siegmann.epublib.domain.Author

      private static List<Author> readAuthors(String authorTag, Element metadataElement) {
        NodeList elements = metadataElement.getElementsByTagNameNS(NAMESPACE_DUBLIN_CORE, authorTag);
        List<Author> result = new ArrayList<Author>(elements.getLength());
        for(int i = 0; i < elements.getLength(); i++) {
          Element authorElement = (Element) elements.item(i);
          Author author = createAuthor(authorElement);
          if (author != null) {
            result.add(author);
          }
        }
        return result;
    View Full Code Here

    Examples of nm.aleksey.domain.Author

      }

      public void delete(Author author) {
        EntityManager em = entityManager();
        try {
          Author attached = em.find(Author.class, author.getId());
          em.remove(attached);
        } catch (Exception e) {
          e.printStackTrace();
        } finally {
          em.close();
    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.