summaryrefslogtreecommitdiff
path: root/cpp/src/slice2java/GenCompat.cpp
Commit message (Collapse)AuthorAge
* Added Ice::UserException::ice_getSlicedData and ↵Benoit Foucher2017-07-06
| | | | Ice::UnkownSlicedValue::ice_id methods
* Fixed ICE-8217 - added ice_getSlicedData method to Ice values and ↵Benoit Foucher2017-07-05
| | | | Ice::SlicedData::clear method to break cyclic references
* ICE-8051 - Suppress deprecation warningsJoe George2017-06-15
|
* No longer generate javadoc for Disp classes (ICE-7167)Bernard Normier2017-06-15
|
* Fixed most javadoc warningsBernard Normier2017-06-15
|
* Remove excessive empty linesJoe George2017-06-07
|
* Fix (ICE-7762) - Change dispatch bool return valueJose2017-04-10
|
* Removed trailing whitespace from Slice files and generated codeBernard Normier2017-03-29
|
* Update IceSSL::ConnectionInfo to use native certs and remove ↵Jose2017-03-20
| | | | NativeConnectionInfo
* Fixed ICE-3710 - optional routing tablesBenoit Foucher2017-03-04
|
* ICE-7506 - Update copyright to 2017Joe George2017-02-13
|
* Improved readValue/readProxy methods and streaming helpersBenoit Foucher2017-02-09
|
* Make Slice enums scopedBernard Normier2017-02-08
| | | | Add new cpp:scoped and objc:scoped metadata directives
* Slice compilers now emit deprecated warning for classes with operations ↵Bernard Normier2017-02-04
| | | | | | (ICE-7557) Refactored suppress-warning implementation
* Rework warning suppression to use global meta dataJose2017-02-03
|
* Add --no-warn option to Slice compilersJose2017-02-01
|
* Fixed ICE-7493 - Support for java try-with and Python with statements for ↵Benoit Foucher2017-01-30
| | | | the Ice.Communicator
* java:UserException metadata for both local and remote operationsBernard Normier2017-01-19
|
* Renamed Slice/keyword test to clash, and added identifier-clash testBernard Normier2017-01-06
|
* Added missing escape for "result" parameterBernard Normier2016-11-17
|
* Resync stream API for generated structs/enums in Java and C#Bernard Normier2016-11-17
|
* Replaced double-underscores in java and java-compatBernard Normier2016-11-17
|
* Replaced slice compiler options --ice, --underscore and --dll-export byBernard Normier2016-10-31
| | | | | global metadata directives (ice-prefix, underscore, cpp:dll-export:SYMBOL and objc:dll-export:SYMBOL) Added new cs:tie and java:tie metadata
* Refactored string literal generation and updated identityToString formatBernard Normier2016-10-25
|
* Ported interceptor and ICE-6980 changes to java-compatBenoit Foucher2016-08-30
|
* Major changes in Java:Mark Spruiell2016-08-23
- Moved existing Java mapping sources to java-compat subdirectory - Added new "Java 8" mapping in java subdirectory - Significant features of Java 8 mapping: - All classes in com.zeroc package (e.g., com.zeroc.Ice.Communicator) - New AMI mapping that uses java.util.concurrent.CompletableFuture - New AMD mapping that uses java.util.concurrent.CompletionStage - New mapping for out parameters - "holder" types have been eliminated - New mapping for optional types that uses JDK classes from java.util (e.g., java.util.Optional) - "TIE" classes are no longer supported or necessary; servant classes now only need to implement a generated interface - Moved IceGrid GUI to new mapping - The "Java Compat" mapping is provided only for backward compatibility to ease migration to Ice 3.7. The Slice compiler supports a new --compat option to generate code for this mapping. However, users are encouraged to migrate to the new mapping as soon as possible.