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.litecoding.smali2java.entity.java.Comment

    import com.litecoding.smali2java.renderer.SmaliRenderer.SmaliBlock;

    public class JavaRenderer {
      public static List<Renderable> generateJavaEntities(SmaliMethod smaliMethod) {
        SmaliBlock block = null;
        Comment errorComment = null;
       
        try {
          block = SmaliRenderer.generateBlocks(smaliMethod);
         
          System.out.println("===[BEGIN OF BLOCK CHAIN]===");
          SmaliRenderer.printBlockChain(block);
          System.out.println("===[END OF BLOCK CHAIN]===");
          System.out.println();
        } catch(Exception e) {
          System.out.println("Exception while generating block");
          e.printStackTrace();
         
          StringWriter sw = new StringWriter();
          e.printStackTrace(new PrintWriter(sw));
          errorComment = new Comment(sw.toString());
        }
       
        List<Renderable> entities = new ArrayList<Renderable>();
        if(errorComment != null) {
          entities.add(errorComment);
          return entities;
        }
       
        if(!block.isPlain()) {
          //for this time we don't support block chains
          entities.add(new Comment("Can't render chain of blocks"));
          return entities;
        }
       
        if(smaliMethod.isConstructor()) {
          entities.addAll(generateConstructor(smaliMethod, block));
          return entities;
        }
       
        entities.add(new Comment("Can't render this method"));
       
        return entities;
      }
    View Full Code Here

    Examples of com.nurkiewicz.jdbcrepository.repositories.Comment

      }

      @Test
      public void shouldGenerateKey() throws Exception {
        //given
        final Comment comment = new Comment(someUser, "Some content", new Date(), 0);

        //when
        repository.save(comment);

        //then
        assertThat(comment.getId()).isNotNull();
      }
    View Full Code Here

    Examples of com.ourlinc.activity.domain.Comment

      @RequestMapping(value = "/deletecomment.jspx")
      String deletecomment(HttpServletRequest request,
          HttpServletResponse response) throws IOException {
        String actId = request.getParameter("actId");
        String comId = request.getParameter("comId");
        Comment com = activityService.getComment(Integer.valueOf(comId));
        if (null == actId) {
          request.setAttribute("errorMsg", "找不到id=" + actId + "的活动");
          return "error";
        }
        if (null == com) {
          request.setAttribute("errorMsg", "找不到id=" + comId + "的评论");
          return "error";
        }
        activityService.deleteComment(com.getId());
        response.sendRedirect("../activity/activity.jspx?actId="
            + URLEncoder.encode(actId, "utf-8"));
        return null;
      }
    View Full Code Here

    Examples of com.ourlinc.helloworld.model.Comment

        List<Comment> result = new ArrayList<Comment>();
        ResultPage<Comment> rp = m_Podi.psCom.startsWith(null);
        rp.setPageSize(128);
        while (rp.gotoPage(rp.getPage() + 1)) {
          while (rp.hasNext()) {
            Comment com = rp.next();
            if (activityId.equals(com.getActivityId())
                && Comment.AVAILABLE == com.getStatus()) {
              result.add(com);
            }
          }
        }
        return ResultPage.OnList.wrap(result);
    View Full Code Here

    Examples of com.puppycrawl.tools.checkstyle.api.Comment

                "/** @see elsewhere ",
                " * {@link List }, {@link  List link text }",
                "   {@link List#add(Object) link text}",
                " * {@link Class link text}",
            };
            final Comment comment = new Comment(text, 1, 4, text[3].length());
            final JavadocTags allTags =
                JavadocUtils.getJavadocTags(comment, JavadocUtils.JavadocTagType.ALL);
            assertEquals(5, allTags.getValidTags().size());
        }
    View Full Code Here

    Examples of com.rapleaf.jack.test_project.database_1.models.Comment

        assertNotNull("Post should be found from db by bigint id", foundPost);

        foundPost = posts.find(postId);
        assertNotNull("Post should be found in cache by bigint id", foundPost);

        Comment c = new Comment(1, "comment content", 1, postId, System.currentTimeMillis(), getDBS());
        assertNotNull("Post should be findable by foreign key", c.getPost());
      }
    View Full Code Here

    Examples of com.redhat.gss.redhat_support_lib.parsers.Comment

          String cmntText = "The file "
              + fileName
              + " exceeds the byte limit to attach a file to a case; therefore, the file was uploaded to "
              + connectionManager.getConfig().getFtpHost() + "as "
              + file.getName();
          Comment comment = new Comment();
          comment.setCaseNumber(caseNumber);
          comment.setPublic(true);
          comment.setText(cmntText);
          Comments comments = new Comments(connectionManager);
          comments.add(comment);
        } else {
          WebResource webResource = connectionManager.getConnection()
              .resource(
    View Full Code Here

    Examples of com.restfb.types.Comment

       *     the content url
       * @return a {#link=Content} object
       */
      public Content getContent(String contentURL) {
        String fbid = URLUtils.getFbId(contentURL);
        Comment comment = getFbClient().getFacebookObjectByID(fbid, Comment.class);
       
        Content content = comment2Content(comment);
        content.setContentUrl(contentURL);
       
        return content;
    View Full Code Here

    Examples of com.skyline.base.model.Comment

        String resourceComment = commentType.toString().toLowerCase() + COMMENT_SUFFIX;
        List<Comment> comments = commentDao.queryCommentByResource(resourceId, page, resourceComment);
        List<Comment> refComments = commentDao.queryRefedCommentByResource(resourceId, resourceComment);
        for (Comment comment : comments) {
          if (comment.getRef() != 0) {
            Comment cursorComment = comment;
            for (Comment refComment : refComments) {
              // TODO: 空指针判断
              if (refComment.getId()!=null&&refComment.getId().equals(cursorComment.getRef())) {
                cursorComment.setRefComment(refComment);
                if (refComment.getRefComment() != null) {
                  break;
                }
                cursorComment = refComment;
              }
    View Full Code Here

    Examples of com.socrata.model.Comment

            try {
                final DatasetInfo publishedView = importer.publish(newDataset.getId());
                TestCase.assertEquals(null, publishedView.getGrants());


                final Comment comment = new Comment();
                comment.setBody("Hello Kitty");
                comment.setTitle("Hello Title");

                Comment retVal = importer.addComment(publishedView.getId(), comment);
                System.out.println(retVal);

            } finally {
                importer.deleteDataset(newDataset.getId());
            }
    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.