aboutsummaryrefslogtreecommitdiff
path: root/java/src
Commit message (Collapse)AuthorAgeFilesLines
* Down integrate from Google internal branch for C++ and Java.Jisi Liu2015-02-2827-210/+1011
| | | | | | | | - Maps for C++ lite - C++ Arena optimizations. - Java Lite runtime code size optimization. Change-Id: I7537a4357c1cb385d23f9e8aa7ffdfeefe079f13
* Merge pull request #216 from cnauroth/Parser-JavaDocJisi Liu2015-02-261-2/+2
|\ | | | | Correct JavaDoc return value documentation for Parser#parseDelimitedFrom...
| * Correct JavaDoc return value documentation for Parser#parseDelimitedFrom.cnauroth2015-02-231-2/+2
| |
* | Propogate onChange() event when getFooBuilder() is on an oneof messageJisi Liu2015-02-231-1/+13
| | | | | | | | | | | | field. Change-Id: Idb5b53da5accd24038a895aba49b684eeee95814
* | Fix Java maps reflection to call onChange to populate changes to parentJisi Liu2015-02-232-89/+132
|/ | | | | | builders. Change-Id: Ibf6ae3c0fe6bc31f74b8018c81a5af461b1c24ea
* Down-integrate from internal code base.Feng Xiao2014-12-092-1/+8
|
* Remove usage of features not supported in Java 1.6.Feng Xiao2014-12-031-3/+2
|
* Merge pull request #102 from fizbin/bytestring_serializableFeng Xiao2014-11-277-1/+90
|\ | | | | Make ByteStrings serializable with java serialization.
| * Add tests for other ByteString subclassesDaniel Martin2014-11-272-0/+37
| |
| * Make ByteStrings serializable with java serialization.Daniel Martin2014-11-255-1/+53
| |
* | Make Java TextFormat.printToUnicodeString() escape newlines.Feng Xiao2014-11-252-6/+15
| | | | | | | | Fix issue #77
* | Fix javadoc warnings.Feng Xiao2014-11-252-14/+14
|/
* Down-integrate from internal code base.Feng Xiao2014-11-203-22/+26
|
* Down-integrate from internal code base (C++ maps support).Feng Xiao2014-11-146-17/+49
|
* Merge branch 'typofixes-vlajos-20141108' of ↵Feng Xiao2014-11-114-7/+7
|\ | | | | | | | | | | | | https://github.com/vlajos/protobuf into typo Conflicts: src/google/protobuf/compiler/java/java_file.cc
| * typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-084-7/+7
| |
* | Down-integrate from internal code base.Feng Xiao2014-11-1055-280/+5347
|/
* Merge pull request #38 from xfxyjwf/fix17Feng Xiao2014-10-032-3/+38
|\ | | | | Fix a bug that causes DynamicMessage.setField() to not work for repeated enum fields.
| * Update verification methods' names.Feng Xiao2014-10-021-6/+8
| |
| * Fix a bug that causes DynamicMessage.setField() to not work for repeatedFeng Xiao2014-10-012-2/+35
| | | | | | | | enum fields.
* | Fix descriptor validation logic for packed enum fields.Feng Xiao2014-10-012-7/+34
|/
* Replace links to code.google.com/protobuf with ↵Feng Xiao2014-10-01100-100/+100
| | | | developers.google.com/protocol-buffers
* 1, Remove unkown field support in jave TextFormatjieluo@google.com2014-07-253-118/+19
| | | | 2, Verifies the EnumValueDscriptor for DynamicMessage.Builder#setField
* add LazyFieldLite.javajieluo@google.com2014-07-191-0/+176
|
* add printUnicode methods in TextFormatjieluo@google.com2014-07-181-0/+20
|
* down integrate to svnjieluo@google.com2014-07-1863-1332/+7578
|
* Fix Java compile issues under JDK 1.5xiaofeng@google.com2012-11-305-17/+15
|
* Down-integrate from internal branchxiaofeng@google.com2012-09-2254-697/+7846
|
* Close resources properly for java tests and examples.liujisi@google.com2011-06-072-6/+15
|
* Allow String to be used as message names.liujisi@google.com2011-05-041-0/+20
|
* Fix incomplete comments.liujisi@google.com2011-04-281-1/+1
|
* Make protobuf java JDK 1.5 compatible.liujisi@google.com2011-04-288-35/+77
|
* Use fully qualified java.lang.Object in protoc java code.liujisi@google.com2011-04-081-1/+5
|
* Fix issue 256: compute the correct size for negative enum values, which need ↵jasonh@google.com2011-02-182-1/+16
| | | | to be sign extended.
* Escape C++ Trigraphs.liujisi@google.com2010-12-211-0/+1
|
* Fix issues: 200 202 211 215 237 246.liujisi@google.com2010-12-063-1/+3
|
* Fix issues: 166 167 172 175 181 188 192 194 195.liujisi@google.com2010-12-031-1/+3
|
* Submit recent changes from internal branch. See CHANGES.txt for more details.liujisi@google.com2010-11-0247-727/+6140
|
* Roll back revision 313. A similar but far more exensive change was made in ↵kenton@google.com2010-09-172-41/+0
| | | | our internal branch, which will be integrated soon.
* Optimize Java string serialization. Patch from Evan Jones.kenton@google.com2010-02-012-0/+41
|
* More Java warning tweaks from Evan Jones.kenton@google.com2010-01-283-4/+6
|
* Fix some Java warnings. Patch from Evan Jones.kenton@google.com2010-01-219-24/+15
|
* Tweak doc comments.kenton@google.com2010-01-084-0/+24
|
* Address comments from various code reviews.kenton@google.com2010-01-071-1/+7
|
* In Java's TextFormat, correcty concatenate adjacent string literals, as C++ ↵kenton@google.com2009-12-233-7/+52
| | | | does. Also fix a bug in handling of single-quoted strings.
* Make extension identifiers final. This improves security when untrusted ↵kenton@google.com2009-12-222-59/+69
| | | | code is present in the same class loader. In order to get around initialization ordering issues, I simply made the constructor for extension identifiers take no arguments and deferred initialization to an internalInit() method, which generated code will always call during init.
* getExtension() on an empty repeated field should return an empty list, not a ↵kenton@google.com2009-12-223-2/+35
| | | | singular default value.
* Clarify that pushLimit() does not limit the number of bytes CodedInputStream ↵kenton@google.com2009-12-221-0/+8
| | | | will read from the underlying InputStream.
* Massive roll-up of changes. See CHANGES.txt.kenton@google.com2009-12-1821-111/+509
|
* Fix Issue 136: the memoized serialized size for packed fields may notjasonh+personal@google.com2009-12-011-0/+22
| | | | | | | | | | | | | be properly set. writeTo() may be invoked without a call to getSerializedSize(), so the generated serialization methods would write a length of 0 for non-empty packed fields. Just call getSerializedSize() at the beginning of writeTo(): although this means that we may compute the byte size needlessly when there are no packed fields, in practice, getSerializedSize() will already have been called - all of the writeTo() wrappers in AbstractMessageLite invoke it. Tested: new unittest case in WireFormatTest.java now passes