Examples of Comment

  • org.netbeans.modules.exceptions.entity.Comment
    @author Jan Horvath
  • org.objectweb.asm.attrs.Comment
    A non standard attribute used for testing purposes. @author Eric Bruneton
  • org.omg.uml.foundation.core.Comment
  • org.openblend.fejstbuk.domain.Comment
    @author Ales Justin
  • org.opensocial.models.myspace.Comment
    operwiki.myspace.com/index.php?title=OpenSocial_v0.9_ProfileComments @author Jason Cooper
  • org.ow2.asm.attrs.Comment
    A non standard attribute used for testing purposes. @author Eric Bruneton
  • org.pdf4j.saxon.instruct.Comment
    An instruction representing an xsl:comment element in the stylesheet.
  • org.richfaces.photoalbum.model.Comment
    Class for representing Comment Entity. EJB3 Entity Bean @author Andrey Markhel
  • org.snippr.business.entities.Comment
    @author Miguel Gonzalez @author José Manuel Ciges Regueiro @version 20120903
  • org.springframework.roo.addon.roobot.client.model.Comment
  • org.springframework.social.alfresco.api.entities.Comment
    A comment on folders and individual items to give other users information or notes specific to that content. @author jottley
  • org.superbiz.rest.model.Comment
    @author Romain Manni-Bucau
  • org.thymeleaf.dom.Comment

    A Comment node in a Thymeleaf DOM tree.

    @author Daniel Fernández @since 2.0.0
  • org.uned.agonzalo16.bitacora.domain.Comment
  • org.vorbis.jcraft.jorbis.Comment
    @author jkeller1
  • org.w3c.dom.Comment
    This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting ' <!-- ' and ending '--> '. Note that this is the definition of a comment in XML, and, in practice, HTML, although some HTML tools may implement the full SGML comment structure.
  • org.wso2.carbon.dashboard.common.bean.Comment
    The bean represent a comment (meta information) for a gadget
  • org.wso2.carbon.registry.common.beans.utils.Comment
    Represents comments and its metadata. Note that only the Comment.text field needs to be filled when adding new comments. All other attributes are ignored and they are filled with appropriate values for the current context. Therefore, when constructing an instance of this class outside the Registry impl, it is recommended to use new Comment("my comment text") constructor.
  • org.wso2.carbon.registry.core.Comment
    Represents comments and its meta data. Note that only the Comment.text field needs to be filled when adding new comments. All other attributes are ignored and they are filled with appropriate values for the current context. Therefore, when constructing an instance of this class outside the Registry impl, it is recommended to use new Comment("my comment text") constructor.
  • org.xwiki.rest.model.jaxb.Comment
  • org.zkoss.poi.ss.usermodel.Comment
  • ru.org.linux.comment.Comment
    DTO-объект для хранения одного комментария из DAO
  • se.gu.fire.core.Comment
    Represents a comment made regarding an Submission object. When a some user (student, grader or admin) writes a comment regarding a submission, the comment is represented by this class.
  • springblog.pojo.Comment
  • systole.domain.report.template.Comment
    @author jmj
  • tk.vovanok.data.Comment
    @author vovan_000
  • urban.model.Comment
    A line of comment.
  • wblog.domain.Comment
  • weblogic.xml.stream.Comment
    A marker interface for comment data @since Weblogic XML Input Stream 1.0 @version 1.0 @see weblogic.xml.stream.XMLEvent
  • weibo4j.Comment
    A data class representing one single status of a user. @author Yusuke Yamamoto - yusuke at mac.com
  • weibo4j.model.Comment
  • xtc.tree.Comment
    A source code comment. @author Robert Grimm @version $Revision: 1.11 $
  • zendeskapi.models.tickets.Comment
    @author jgroth

  • Examples of com.google.gerrit.extensions.common.Comment

        public static boolean equals(Comment comment1, Comment comment2) {
            if (comment1 == comment2) return true;
            if (comment2 == null || comment1.getClass() != comment2.getClass()) return false;

            Comment that = comment2;

            if (comment1.line != that.line) return false;
            if (comment1.id != null ? !comment1.id.equals(that.id) : that.id != null) return false;
            if (comment1.inReplyTo != null ? !comment1.inReplyTo.equals(that.inReplyTo) : that.inReplyTo != null) return false;
            if (comment1.message != null ? !comment1.message.equals(that.message) : that.message != null) return false;
    View Full Code Here

    Examples of com.google.javascript.jscomp.mozilla.rhino.ast.Comment

        comment.setParsed(true);
        handlePossibleFileOverviewJsDoc(jsDocParser);
      }

      private JSDocInfo handleJsDoc(AstNode node, Node irNode) {
        Comment comment = node.getJsDocNode();
        if (comment != null) {
          JsDocInfoParser jsDocParser = createJsDocInfoParser(comment, irNode);
          comment.setParsed(true);
          if (!handlePossibleFileOverviewJsDoc(jsDocParser)) {
            return jsDocParser.retrieveAndResetParsedJSDocInfo();
          }
        }
        return null;
    View Full Code Here

    Examples of com.google.javascript.jscomp.parsing.parser.trees.Comment

        parsedComments.add(comment);
        handlePossibleFileOverviewJsDoc(jsDocParser);
      }

      private Comment getJsDoc(SourceRange location) {
        Comment closestPreviousComment = null;
        while (currentComment != null &&
            currentComment.location.end.offset <= location.start.offset) {
          if (currentComment.type == Comment.Type.JSDOC) {
            closestPreviousComment = currentComment;
          }
    View Full Code Here

    Examples of com.gtp.domain.Comment

        }
        return "OK";
      }

      public String commentChair() {
        Comment comment = new Comment();
        comment.setBody(body);
        comment.setHeader(header);
        comment.setUser(getAuthenticatedUser());
        commentService.addComment(comment);
        if (freeChair.getComments() == null)
          freeChair.setComments(new ArrayList<Comment>());
        freeChair.getComments().add(comment);
        try {
    View Full Code Here

    Examples of com.ibm.sbt.services.client.connections.blogs.Comment

         
          printWriter.write(sb.toString());
         
          if (commentList != null) {
            for (Iterator<Comment> iter = commentList.iterator(); iter.hasNext(); ) {
              Comment comment = (Comment)iter.next();
             
              sb = new StringBuilder();
              sb.append("\"\"").append(delim);
              sb.append("\"").append(encode(comment.getContent())).append("\"").append(delim);
              sb.append("\"").append(encode(comment.getAuthor().getName())).append("\"").append(delim);
              sb.append("\"").append(encode(comment.getPublished())).append("\"").append(delim);
              sb.append("\"\"").append(delim);
              sb.append("\"").append(encode(comment.getUpdated())).append("\"").append(delim);
              sb.append("\"\"").append(delim);
              sb.append("\"\"").append(delim);
              sb.append("\"\"").append(delim);
              sb.append("\"").append(encode(comment.getTags())).append("\"").append(delim);
              sb.append("\n");
             
              printWriter.write(sb.toString());
            }
          }
    View Full Code Here

    Examples of com.jada.jpa.entity.Comment

          streamWebService(response, jsonString);
          return null;
        }
       
        EntityManager em = JpaConnection.getInstance().getCurrentEntityManager();
        Comment comment = (Comment) em.find(Comment.class, Format.getLong(commentId));

          if (alertType.equals(Constants.ALERT_TYPE_MODERATOR)) {
            comment.setModeration(Constants.VALUE_YES);
            em.persist(comment);
          }
          else {
            Iterator<?> iterator = comment.getAgreeCustomers().iterator();
            while (iterator.hasNext()) {
              Customer c = (Customer) iterator.next();
              if (c.getCustId().equals(customer.getCustId())) {
                iterator.remove();
                break;
              }
            }
            iterator = comment.getDisagreeCustomers().iterator();
            while (iterator.hasNext()) {
              Customer c = (Customer) iterator.next();
              if (c.getCustId().equals(customer.getCustId())) {
                iterator.remove();
                break;
              }
            }
            if (alertType.equals(Constants.ALERT_TYPE_AGREE)) {
              comment.getAgreeCustomers().add(customer);
            }
            else {
              comment.getDisagreeCustomers().add(customer);
            }
          }
         
          JSONEscapeObject jsonResult = new JSONEscapeObject();
        jsonResult.put("status", Constants.WEBSERVICE_STATUS_SUCCESS);
        jsonResult.put("agreeCount", comment.getAgreeCustomers().size());
        jsonResult.put("disagreeCount", comment.getDisagreeCustomers().size());
        jsonResult.put("moderation", String.valueOf(comment.getModeration()));
        streamWebService(response, jsonResult.toHtmlString());
          return null;
        }
    View Full Code Here

    Examples of com.jcabi.github.Comment

         */
        @Test
        public void worksWithMockedData() throws Exception {
            final Repo repo = new MkGithub().repos().create(MkGithubTest.json());
            final Issue issue = repo.issues().create("hey", "how are you?");
            final Comment comment = issue.comments().post("hey, works?");
            MatcherAssert.assertThat(
                new Comment.Smart(comment).body(),
                Matchers.startsWith("hey, ")
            );
            MatcherAssert.assertThat(
    View Full Code Here

    Examples of com.jcraft.jorbis.Comment

            oggSyncState_ = new SyncState();
            oggStreamState_ = new StreamState();
            oggPage_ = new Page();
            oggPacket_ = new Packet();
            vorbisInfo = new Info();
            vorbisComment = new Comment();
            vorbisDspState = new DspState();
            vorbisBlock = new Block(vorbisDspState);
            buffer = null;
            bytes = 0;
            currentBytes = 0L;
    View Full Code Here

    Examples of com.jdkcn.myblog.domain.Comment

        entry = entryService.saveOrUpdate(entry);
      }
     
      @Test
      public void testSaveOrUpdate() throws Exception {
        Comment comment = new Comment();
        comment.setEntry(entry);
        comment.setAuthor(author);
        comment.setContent("Test comment");
        comment.setEmail("tester@gmail.com");
        comment.setIp("127.0.0.1");
        assertNull(comment.getId());
        String commentId = commentService.saveOrUpdate(comment).getId();
        assertNotNull(commentId);
        Comment savedComment = commentService.get(commentId);
        assertEquals("tester@gmail.com", savedComment.getEmail());
      }
    View Full Code Here

    Examples of com.lissenberg.blog.domain.Comment

        @Test
        public void testComments() throws Exception {
            entityTransaction.begin();
            for (int i = 0; i < 100; i++) {
                blogService.saveComment(new Comment(1L, "My name" + i, "Great post. Thanks!" + i));
            }
            entityTransaction.commit();
            List<Comment> comments = blogService.getCommentsForPost(1L);
            assertEquals(100, comments.size());
        }
    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.