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.eclipse.uml2.Comment

            String commentString = "";
            EList comments = element.getOwnedComments();

            for (Iterator iterator = comments.iterator(); iterator.hasNext();)
            {
                final Comment comment = (Comment)iterator.next();
                if (!commentString.equalsIgnoreCase(""))
                {
                    commentString = commentString + "\n\n";
                }
                commentString = commentString.concat(comment.getBody());
            }
            return cleanText(commentString);
        }
    View Full Code Here

    Examples of org.eclipse.uml2.uml.Comment

       * <!-- begin-user-doc --> <!-- end-user-doc -->
       *
       * @generated
       */
      public void setBase_Comment(Comment newBase_Comment) {
        Comment oldBase_Comment = base_Comment;
        base_Comment = newBase_Comment;
        if(eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.SET, ModelelementsPackage.PROBLEM__BASE_COMMENT, oldBase_Comment, base_Comment));
      }
    View Full Code Here

    Examples of org.eclipse.wst.wsi.internal.core.monitor.config.Comment

          else if (
            (args[argCount].equalsIgnoreCase("-comment"))
              || (args[argCount].equals("-C")))
          {
            argCount++;
            Comment comment = new CommentImpl();
            comment.setText(args[argCount]);
            monitorConfigFromArgs.setComment(comment);
          }

          // -logFile
          else if (
    View Full Code Here

    Examples of org.encuestame.persistence.domain.Comment

             bean.setComment(filterValue(mycomment));
             bean.setCreatedAt(Calendar.getInstance().getTime());
             bean.setParentId(relatedCommentId);
             bean.setId(tweetPollId);
             bean.setType(typeResult);
             final Comment comment = getCommentService().createComment(bean);
             return ConvertDomainBean.convertCommentDomainToBean(comment);
        }
    View Full Code Here

    Examples of org.eurekastreams.server.domain.stream.Comment

        public CommentDTO execute(final InsertActivityCommentRequest inRequest)
        {
            final Activity activity = (Activity) getHibernateSession().load(Activity.class, inRequest.getActivityId());
           
            // create comment and persist to DB.
            Comment comment = new Comment((Person) getHibernateSession().load(Person.class, inRequest.getUserId()),
                    activity,
                    inRequest.getContent().trim());
           
            getEntityManager().persist(comment);
           
            CommentDTO commentDTO = new CommentDTO();
            commentDTO.setActivityId(inRequest.getActivityId());
            commentDTO.setAuthorId(inRequest.getUserId());
            commentDTO.setId(comment.getId());
            commentDTO.setTimeSent(comment.getTimeSent());
            commentDTO.setBody(inRequest.getContent());
           
            //fully popluate and cache the commentDTO
            commentDTOPopulator.execute(commentDTO, getCache());
           
    View Full Code Here

    Examples of org.h2.engine.Comment

            }
            if (column || objectType == DbObject.TABLE_OR_VIEW || objectType == DbObject.USER
                    || objectType == DbObject.INDEX || objectType == DbObject.CONSTRAINT) {
                db.update(session, object);
            } else {
                Comment comment = db.findComment(object);
                if (comment == null) {
                    if (text == null) {
                        // reset a non-existing comment - nothing to do
                    } else {
                        int id = getObjectId();
                        comment = new Comment(db, id, object);
                        comment.setCommentText(text);
                        db.addDatabaseObject(session, comment);
                    }
                } else {
                    if (text == null) {
                        db.removeDatabaseObject(session, comment);
                    } else {
                        comment.setCommentText(text);
                        db.update(session, comment);
                    }
                }
            }
            return 0;
    View Full Code Here

    Examples of org.j2cms.model.comment.Comment

        } catch (RuntimeException e) {
          e.printStackTrace();
        }
      }
      @Test public void save(){
        Comment comment = new Comment();
        comment.setContent("评论1");
        commentService.save(comment);
      }
    View Full Code Here

    Examples of org.javalite.activejdbc.test_models.Comment

        public void shouldRemovePolymorphicChildren() {
            deleteAndPopulateTables("articles", "posts", "comments");
            Article a = Article.findById(1);
            a.add(Comment.create("author", "ipolevoy", "content", "this is just a test comment text"));
            a.add(Comment.create("author", "rkinderman", "content", "this is another test comment text"));
            Comment c = (Comment) Comment.findAll().limit(1).orderBy("id").get(0);
            a.remove(c);
            a(Comment.findAll().size()).shouldBeEqual(1);
        }
    View Full Code Here

    Examples of org.jboss.errai.codegen.Comment

      @Override
      public String toJavaString() {
        StringBuilder builder = new StringBuilder(25);
        if (fieldComment != null) {
          builder.append(new Comment(fieldComment).generate(null)).append('\n');
        }

        if (!annotations.isEmpty()) {
          for (Annotation a : getAnnotations()) {
            builder.append(new AnnotationLiteral(a).getCanonicalString(Context.create())).append(" ");
    View Full Code Here

    Examples of org.jbpm.graph.exe.Comment

      }

      // comments /////////////////////////////////////////////////////////////////

      public void addComment(String message) {
        addComment(new Comment(message));
      }
    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.