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 facebook4j.Comment

                JSONArray list = json.getJSONArray("data");
                final int size = list.length();
                ResponseList<Comment> comments = new ResponseListImpl<Comment>(size, json);
                for (int i = 0; i < size; i++) {
                    JSONObject commentJSONObject = list.getJSONObject(i);
                    Comment comment = new CommentJSONImpl(commentJSONObject);
                    if (conf.isJSONStoreEnabled()) {
                        DataObjectFactoryUtil.registerJSONObject(comment, commentJSONObject);
                    }
                    comments.add(comment);
                }
    View Full Code Here

    Examples of fb4java.beans.Comment

          int commentsSize = commentArray.length();
          if (commentsSize > 0) {
              ArrayList<Comment> commentList = new ArrayList<Comment>();
              for (int b = 0; b < commentsSize; b++) {
            JSONObject comment = commentArray.getJSONObject(b);
            Comment co = new Comment();
            co.fromid = comment.getLong("fromid");
            co.time = new Date(comment.getLong("time") * 1000);
            co.message = comment.getString("text");
            co.id = comment.getString("id");
            commentList.add(co);
    View Full Code Here

    Examples of gherkin.formatter.model.Comment

            stash.reset();
        }

        @Override
        public void comment(String comment, Integer line) {
            stash.comment(new Comment(comment, line));
        }
    View Full Code Here

    Examples of httl.ast.Comment

              || message.startsWith("#{") || message.startsWith("#!{"))) {
            int i = message.indexOf('{');
            directives.add(new ValueDirective((Expression) expressionParser.parse(message.substring(i + 1, message.length() - 1),
                offset + i + 1), message.startsWith("$!") || message.startsWith("#!"), offset));
          } else if (message.startsWith("##")) {
            directives.add(new Comment(message.substring(2), false, offset));
          } else if ((message.startsWith("#*") && message.endsWith("*#"))) {
            directives.add(new Comment(message.substring(2, message.length() - 2), true, offset));
          } else {
            boolean literal;
            if (message.startsWith("#[") && message.endsWith("]#")) {
              message = message.substring(2, message.length() - 2);
              literal = true;
    View Full Code Here

    Examples of hu.jokeman.xparser.cldc11.document.nodes.Comment

        public void addComment (String content) throws DocumentBuilderException {
            XMLNode currentNode = peek ();
            if (currentNode instanceof Element ||
                    currentNode instanceof Document) {
                currentNode.addChild (new Comment (content));
            } else {
                throw new DocumentBuilderException (
                        "Comments not allowed here.");
            }
        }
    View Full Code Here

    Examples of hu.jokeman.xparser.impl.document.nodes.Comment

        public void addComment (String content) throws DocumentBuilderException {
            XMLNode currentNode = peek ();
            if (currentNode instanceof Element ||
                    currentNode instanceof Document) {
                currentNode.addChild (new Comment (content));
            } else {
                throw new DocumentBuilderException (
                        "Comments not allowed here.");
            }
        }
    View Full Code Here

    Examples of hu.lacimol.tutorial.todo.model.Comment

        final Todo todo = ao.create(Todo.class);
        todo.setDescription("Some todo");
        todo.save();

        Comment comment = ao.create(Comment.class);
        comment.setTodo(todo);
        comment.setText("Comment text 3");
        comment.save();

        comment = ao.create(Comment.class);
        comment.setTodo(todo);
        comment.setText("Comment text 4");
        comment.save();

        ao.flushAll(); // clear all caches

        final List<Todo> all = todoService.findAll();
        assertEquals(2, all.size());
    View Full Code Here

    Examples of it.stefanobertini.zebra.cpcl.labelmode.Comment

    public class CommentTest {

        @Test
        public void test() {
      Comment command = new Comment("This is a comment.");

      CommandOutputBuilder output = new CommandOutputBuilder();
      output.printLn("; This is a comment.");

      assertCommand(output, command);
    View Full Code Here

    Examples of japa.parser.ast.Comment

    public class CompilationUnitBuilder {

        private CompilationUnit cu = new CompilationUnit();

        public CompilationUnitBuilder buildComment(String commentStr) {
            Comment comment = new JavadocComment(commentStr);
            if (null != cu.getComments()) {
                cu.getComments().add(comment);
            } else {
                cu.setComment(comment);
            }
    View Full Code Here

    Examples of japa.parser.ast.comments.Comment

                    }
                }
            }

            // at this point I create an ordered list of all remaining comments and children
            Comment previousComment = null;
            attributedComments = new LinkedList<Comment>();
            List<Node> childrenAndComments = new LinkedList<Node>();
            childrenAndComments.addAll(children);
            childrenAndComments.addAll(commentsToAttribute);
            sortByBeginPosition(childrenAndComments, _doNotConsiderAnnotationsAsNodeStartForCodeAttribution);

            for (Node thing : childrenAndComments){
                if (thing instanceof Comment){
                    previousComment = (Comment)thing;
                    if (!previousComment.isOrphan())
                    {
                        previousComment = null;
                    }
                } else {
                    if (previousComment != null && !thing.hasComment()){
    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.