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 org.uned.agonzalo16.bitacora.domain.Comment

      @Test
      public void testList() {
        Article article = createArticle(createBlog());
        for (int i = 0; i < 100; i++) {
          Comment comment = new Comment();
          comment.setContent("comment " + i);
          comment.setCreationDate(new Date());
          comment.setArticle(article);
          comment.setUser(createUser());

          commentDao.merge(comment);
        }

        List<Comment> allComments = commentDao.findAll();
    View Full Code Here

    Examples of org.vorbis.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;
            oggSyncState_.init();
    View Full Code Here

    Examples of org.w3c.dom.Comment

            throws Exception
        {
            final Document document = createDocument();
            final String name = "meep";
            final Element element = document.createElement( name );
            final Comment comment = document.createComment( "comment" );
            element.appendChild( comment );
            final Configuration configuration = ConfigurationUtil.toConfiguration( element );

            assertEquals( "configuration.getName()", name, configuration.getName() );
            assertEquals( "configuration.getPath()",
    View Full Code Here

    Examples of org.wso2.carbon.dashboard.common.bean.Comment

                //comments = (org.wso2.carbon.registry.core.Comment[])commentList.toArray();

                Comment[] gadgetComments = new Comment[commentList.size()];

                for (int p = 0; p < commentList.size(); p++) {
                    Comment tempCom = new Comment();

                    tempCom.setCommentPath(commentList.get(p).getCommentPath());

                    tempCom.setAuthorUserName(commentList.get(p).getAuthorUserName());
                    tempCom.setCommentText(commentList.get(p).getText());

                    tempCom.setCreateTime(commentList.get(p).getCreatedTime());

                    gadgetComments[p] = tempCom;
                }

                //Arrays.sort(gadgetComments, new CommentSortById());
    View Full Code Here

    Examples of org.wso2.carbon.registry.common.beans.utils.Comment

            try {
                Resource resource = userRegistry.get(path);
                org.wso2.carbon.registry.core.Comment[] c = userRegistry.getComments(path);
                Comment [] comments = new Comment [c.length];
                Comment comment;
                for (int i=0; i <c.length; i++) {
                    comment = new Comment();
                    comment.setAuthorUserName(c[i].getAuthorUserName());
                    comment.setCommentPath(c[i].getCommentPath());
                    comment.setContent(c[i].getContent());
                    Calendar createdDate = Calendar.getInstance();
                    createdDate.setTime(c[i].getCreatedTime());
                    comment.setCreatedTime(createdDate);
                    comment.setDescription(c[i].getDescription());
                    Calendar lastModifiedDate = Calendar.getInstance();
                    // We don't support editing comments as yet.
                    lastModifiedDate.setTime(c[i].getCreatedTime());
                    comment.setLastModified(lastModifiedDate);
                    comment.setMediaType(c[i].getMediaType());
                    comment.setResourcePath(c[i].getResourcePath());
                    comment.setText(c[i].getText());
                    Calendar calendarTime = Calendar.getInstance();
                    calendarTime.setTime(c[i].getTime());
                    comment.setTime(calendarTime);
                    comment.setUser(c[i].getUser());
                    comments[i] = comment;
                }

                commentBean.setComments(comments);
    View Full Code Here

    Examples of org.wso2.carbon.registry.core.Comment

        System.out.println("A resource added to" + resourcePath);

        registry.rateResource(resourcePath, 3);

        System.out.println("Resource rated with 3 stars!");
        Comment comment = new Comment();
        comment.setText("Wow! A comment out there");
        registry.addComment(resourcePath, comment);
        System.out.println("Comment added to resource");

        Resource getResource = registry.get("/abc");
        System.out.println("Resource retrived");
    View Full Code Here

    Examples of org.xwiki.rest.model.jaxb.Comment

            Comments comments = (Comments) unmarshaller.unmarshal(getMethod.getResponseBodyAsStream());

            int numberOfComments = comments.getComments().size();

            Comment comment = objectFactory.createComment();
            comment.setText("Comment");

            PostMethod postMethod = executePostXml(commentsUri, comment, "Admin", "admin");
            Assert.assertEquals(getHttpMethodInfo(postMethod), HttpStatus.SC_CREATED, postMethod.getStatusCode());

            getMethod = executeGet(commentsUri);
    View Full Code Here

    Examples of org.zkoss.poi.ss.usermodel.Comment

        }
        return srcStyle;
      }
     
      private static void copyComment(Cell srcCell, Cell dstCell) {
        final Comment srcComment = srcCell.getCellComment();
        Comment dstComment = dstCell.getCellComment();
        if (srcComment != null) {
          if (dstComment == null) {
            final Worksheet dstSheet = (Worksheet)dstCell.getSheet();
            final Workbook dstBook = dstSheet.getWorkbook();
            final CreationHelper dstFactory = dstBook.getCreationHelper();
            final Drawing drawing = dstSheet.createDrawingPatriarch();
            final ClientAnchor anchor = dstFactory.createClientAnchor();
            dstComment = drawing.createCellComment(anchor);
          }
          dstComment.setString(srcComment.getString());
          dstComment.setAuthor(srcComment.getAuthor());
          dstComment.setVisible(srcComment.isVisible());
          dstCell.setCellComment(dstComment);
        } else { //srcComment is null
          if (dstComment != null) {
            dstCell.removeCellComment();
          }
    View Full Code Here

    Examples of ru.org.linux.comment.Comment

          Topic message = messageDao.getById(url.getMessageId());

          boolean deleted = message.isDeleted();

          if (!deleted && url.isCommentUrl()) {
            Comment comment = commentService.getById(url.getCommentId());

            deleted = comment.isDeleted();
          }

          String urlTitle = linkText!=null?simpleFormat(linkText):StringUtil.escapeHtml(message.getTitle());

          String newUrlHref = url.formatJump(messageDao, secure);
    View Full Code Here

    Examples of se.gu.fire.core.Comment

                        new FacesMessage(FacesMessage.SEVERITY_ERROR,
                            "Empty comments not allowed", null));
                return;
            }

            sub.addComments(new Comment(user, newCommentMap.get(sub.getId())));
            subMan.update(sub);
            getNewCommentMap().remove(sub.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.