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 javax.xml.stream.events.Comment

                    getContentHandler().characters(characters.getData().toCharArray(), 0, characters.getData().length());
                    break;
                }
                case XMLEvent.COMMENT: {
                    if(null != lexicalHandler) {
                        Comment comment = (Comment)xmlEvent;
                        lexicalHandler.comment(comment.getText().toCharArray(), 0, comment.getText().length());
                    }
                    break;
                }
                case XMLEvent.DTD: {
                    break;
    View Full Code Here

    Examples of kr.or.javacafe.board.domain.Comment


      @RequestMapping(value = "/comment/list/ATC_NO/{atcNo}", method = RequestMethod.GET)
      @ResponseBody
      public List<Comment> commentList(@PathVariable String atcNo) {
        Comment comment = new Comment();
        comment.setAtcNo(atcNo);

        return boardBO.listComent(comment);
      }
    View Full Code Here

    Examples of lombok.ast.Comment

      }
     
      public boolean logBlockComment(String text) {
        if (text.startsWith("/*")) text = text.substring(2);
        if (text.endsWith("*/")) text = text.substring(0, text.length() - 2);
        Comment c = new Comment().astBlockComment(true).astContent(text);
        c.setPosition(new Position(startPos(), currentPos()));
        source.registerComment(getContext(), c);
        return true;
      }
    View Full Code Here

    Examples of mf.org.w3c.dom.Comment

            }
            if (!fIncludeComments || fFilterReject) {
                return;
            }
            if (!fDeferNodeExpansion) {
                Comment comment = fDocument.createComment (text.toString ());

                setCharacterData (false);
                fCurrentNode.appendChild (comment);
                if (fDOMFilter !=null && !fInEntityRef &&
                (fDOMFilter.getWhatToShow () & NodeFilter.SHOW_COMMENT)!= 0) {
    View Full Code Here

    Examples of models.Comment

            // Create a new post
            Post bobPost = new Post(bob, "My first post", "Hello world").save();

            // Post a first comment
            new Comment(bobPost, "Jeff", "Nice post").save();
            new Comment(bobPost, "Tom", "I knew that !").save();

            // Retrieve all comments
            List<Comment> bobPostComments = Comment.q().filter("post in", bobPost).asList();

            // Tests
            assertEquals(2, bobPostComments.size());

            Comment firstComment = bobPostComments.get(0);
            assertNotNull(firstComment);
            assertEquals("Jeff", firstComment.author);
            assertEquals("Nice post", firstComment.content);
            assertNotNull(firstComment.postedAt);

            Comment secondComment = bobPostComments.get(1);
            assertNotNull(secondComment);
            assertEquals("Tom", secondComment.author);
            assertEquals("I knew that !", secondComment.content);
            assertNotNull(secondComment.postedAt);
        }
    View Full Code Here

    Examples of net.baguajie.domains.Comment

        Activity activity = activityRepository.findOne(bean.getActId());
        if(activity==null){
          throw new RuntimeException("Invalid activity id:" + bean.getActId());
        }
        // save comment
        Comment cmt = Comment.from(bean, signInUser);
        cmt.setAct(activity);
        cmt = commentRepository.save(cmt);
       
        // incr commented count of orignal activity
        activityRepository.inc(activity.getId(), "commentedCount", 1);
       
    View Full Code Here

    Examples of net.bican.wordpress.Comment

        page.setDescription("deneme");
        String pg = WP.newPost(page, true);
        Integer commentid = WP.newComment(Integer.valueOf(pg), null,
            "deneme comment", "Can Bican", "http://a.b.c.com", "a@b.c.d");
        assertNotNull(commentid);
        Comment newComment = WP.getComment(commentid);
        assertEquals("deneme comment", newComment.getContent());
        Integer comment_id = newComment.getComment_id();
        WP.deleteComment(comment_id);
        comments = WP.getComments(null, null, null, null);
        Comment found = null;
        if (comments != null)
          for (Comment comment : comments) {
            if (comment.getComment_id().equals(comment_id)) {
              found = comment;
              break;
    View Full Code Here

    Examples of net.fortuna.ical4j.model.property.Comment

        }
        if (StringUtils.isNotBlank(teamEvent.getLocation()) == true) {
          vEvent.getProperties().add(new Location(teamEvent.getLocation()));
        }
        if (StringUtils.isNotBlank(teamEvent.getNote()) == true) {
          vEvent.getProperties().add(new Comment(teamEvent.getNote()));
        }
        final PFUserDO user = PFUserContext.getUser();
        String s = user.getFullname();
        if (user.getOrganization() != null) {
          s += "\n" + user.getOrganization();
    View Full Code Here

    Examples of net.jini.lookup.entry.Comment

                            problemLogger.log(Level.INFO, eStr, e);
                        }//endif
                        Entry[] errorAttrs
                                = new Entry[]
                                            { new FiddlerStatus(StatusType.ERROR),
                                              new Comment(eStr)
                                            };
                        fiddlerImpl.joinMgr.addAttributes(errorAttrs,true);
                    }
                }//endif
            }//end apply
    View Full Code Here

    Examples of net.sf.saxon.instruct.Comment

            checkWithinTemplate();
            super.validate();
        }

        public Expression compile(Executable exec) throws TransformerConfigurationException {
            Comment inst = new Comment();
            compileContent(exec, inst);
            inst.setSeparator(new StringValue(select==null ? "" : " "));
            ExpressionTool.makeParentReferences(inst);
            return inst;
        }
    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.