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.jbpm.task.Comment

                        session.write(resultsCmnd);
                        break;
                    }
                    case AddCommentRequest: {
                        response = CommandName.AddCommentResponse;
                        Comment comment = (Comment) cmd.getArguments().get(1);
                        taskSession.addComment((Long) cmd.getArguments().get(0),
                                comment);

                        List args = new ArrayList(1);
                        args.add(comment.getId());
                        Command resultsCmnd = new Command(cmd.getId(),
                                CommandName.AddCommentResponse,
                                args);
                        session.write(resultsCmnd);
                        break;
    View Full Code Here

    Examples of org.jdom.Comment

        public void writeCData(String text) throws IOException {
            this.currentElement.addContent(new CDATA(text));
        }

        public void writeComment(String text) throws IOException {
            this.currentElement.addContent(new Comment(text));
        }
    View Full Code Here

    Examples of org.jdom2.Comment

        public void testRTOutputDocumentFull() {
          Document doc = new Document();
          DocType dt = new DocType("root");
          dt.setInternalSubset(" ");
          doc.addContent(dt);
          doc.addContent(new Comment("This is a document"));
          doc.addContent(new ProcessingInstruction("jdomtest", ""));
          Element e = new Element("root");
          e.addContent(new EntityRef("ref"));
          doc.addContent(e);
          roundTripDocument(doc);
    View Full Code Here

    Examples of org.jsoup.nodes.Comment

        String data = tq.chompTo("->");

        if (data.endsWith("-")) // i.e. was -->
          data = data.substring(0, data.length() - 1);

        Comment comment = new Comment(data, baseUri);
        annotate(comment); // TODO - should annotations even apply to comments?
        lines(comment, data);
        add(comment);
      }
    View Full Code Here

    Examples of org.lealone.dbobject.Comment

            updateWithChildren(session, obj);
        }

        private synchronized void updateWithChildren(Session session, DbObject obj) {
            ArrayList<DbObject> list = obj.getChildren();
            Comment comment = findComment(obj);
            if (comment != null) {
                DbException.throwInternalError();
            }
            update(session, obj);
            // remember that this scans only one level deep!
    View Full Code Here

    Examples of org.mongolink.test.entity.Comment

        @Test
        public void canSerializeToDBOject() throws InvocationTargetException, IllegalAccessException, NoSuchMethodException {
            final BasicDBObject into = new BasicDBObject();
            FakeAggregate entity = new FakeAggregate("te");
            final Comment comment = new Comment("tes");
            entity.setComment(comment);

            propertyMapperForComponent().save(entity, into);

            final BasicDBObject commentDB = (BasicDBObject) into.get("comment");
    View Full Code Here

    Examples of org.mozilla.javascript.ast.Comment

         * Gets the JsDoc comment string attached to this node.
         * @return the comment string or {@code null} if no JsDoc is attached to
         *     this node
         */
        public String getJsDoc() {
            Comment comment = getJsDocNode();
            if (comment != null) {
              return comment.getValue();
            }
            return null;
        }
    View Full Code Here

    Examples of org.netbeans.modules.exceptions.entity.Comment

           
           
            List<Comment> commentList = PersistenceUtils.getAll(em, Comment.class);
            assertEquals("THERE SHOULD BE TWO COMMENTS", 2, commentList.size());
            //first record
            Comment comment = commentList.get(0);
            assertEquals(comments[0],comment.getComment());
           
            comment = commentList.get(1);
            //second record
            assertEquals(comments[1],comment.getComment());
           
            exceptionList = PersistenceUtils.getAll(em, org.netbeans.modules.exceptions.entity.Exceptions.class);
            exception = exceptionList.get(0);
            assertEquals("THERE MUST BE ONE ISSUE", 2, exceptionList.size());
            //check the first one
    View Full Code Here

    Examples of org.objectweb.asm.attrs.Comment

            }

            StringWriter sw = new StringWriter();
            GASMifierClassVisitor cv = new GASMifierClassVisitor(new PrintWriter(sw));
            cr.accept(cv,
                    new Attribute[] { new Comment(), new CodeComment() },
                    ClassReader.EXPAND_FRAMES);

            String generated = sw.toString();

            byte[] generatorClassData;
            try {
                generatorClassData = COMPILER.compile(n, generated);
            } catch (Exception ex) {
                trace(generated);
                throw ex;
            }

            ClassWriter cw = new ClassWriter(0);
            cr.accept(new ClassAdapter(cw) {
                public MethodVisitor visitMethod(
                    final int access,
                    final String name,
                    final String desc,
                    final String signature,
                    final String[] exceptions)
                {
                    return new LocalVariablesSorter(access,
                            desc,
                            super.visitMethod(access,
                                    name,
                                    desc,
                                    signature,
                                    exceptions));
                }
            },
                    new Attribute[] { new Comment(), new CodeComment() },
                    ClassReader.EXPAND_FRAMES);
            cr = new ClassReader(cw.toByteArray());

            String nd = n + "Dump";
            if (n.indexOf('.') != -1) {
    View Full Code Here

    Examples of org.omg.uml.foundation.core.Comment

            final Collection comments = this.metaObject.getComment();
            if (comments != null && !comments.isEmpty())
            {
                for (final Iterator commentIterator = comments.iterator(); commentIterator.hasNext();)
                {
                    final Comment comment = (Comment)commentIterator.next();
                    String commentString = StringUtils.trimToEmpty(comment.getBody());

                    // if there isn't anything in the body, try the name
                    if (StringUtils.isEmpty(commentString))
                    {
                        commentString = StringUtils.trimToEmpty(comment.getName());
                    }
                    documentation.append(StringUtils.trimToEmpty(commentString));
                    documentation.append(SystemUtils.LINE_SEPARATOR);
                }
            }
    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.