Examples of DiscussionRecord


Examples of org.guvnor.common.services.shared.metadata.model.DiscussionRecord

        for ( int i = 0; i < timestamps.size(); i++ ) {
            final Long ts = timestamps.get( i );
            final String author = authors.get( i );
            final String note = notes.get( i );
            result.add( new DiscussionRecord( ts, author, note ) );
        }

        Collections.sort( result, new Comparator<DiscussionRecord>() {
            @Override
            public int compare( final DiscussionRecord o1,
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.