Skip to content

Commit 8c3d45f

Browse files
committed
Bump version in doc comments
1 parent d9c9231 commit 8c3d45f

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

icu4c/source/i18n/unicode/messageformat2_formattable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ class U_I18N_API FunctionOptions : public UObject {
514514
*
515515
* @return The result of merging `this` and `other`.
516516
*
517-
* @internal ICU 77 technology preview
517+
* @internal ICU 78 technology preview
518518
* @deprecated This API is for technology preview only.
519519
*/
520520
FunctionOptions mergeOptions(const FunctionOptions& other, UErrorCode&) const;

icu4c/source/i18n/unicode/messageformat2_function_registry.h

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ namespace message2 {
5959
* if no function was registered under that name. The pointer is not owned
6060
* by the caller.
6161
*
62-
* @internal ICU 77 technology preview
62+
* @internal ICU 78 technology preview
6363
* @deprecated This API is for technology preview only.
6464
*/
6565
Function* getFunction(const FunctionName& functionName) const;
@@ -124,7 +124,7 @@ namespace message2 {
124124
* @param errorCode Input/output error code
125125
* @return A reference to the builder.
126126
*
127-
* @internal ICU 77 technology preview
127+
* @internal ICU 78 technology preview
128128
* @deprecated This API is for technology preview only.
129129
*/
130130
Builder& adoptFunction(const data_model::FunctionName& functionName,
@@ -233,7 +233,7 @@ namespace message2 {
233233
* Class implementing data from contextual options.
234234
* See https://github.com/unicode-org/message-format-wg/pull/846
235235
*
236-
* @internal ICU 77 technology preview
236+
* @internal ICU 78 technology preview
237237
* @deprecated This API is for technology preview only.
238238
*/
239239
class U_I18N_API FunctionContext : public UObject {
@@ -243,7 +243,7 @@ namespace message2 {
243243
*
244244
* @return Locale the context was created with.
245245
*
246-
* @internal ICU 77 technology preview
246+
* @internal ICU 78 technology preview
247247
* @deprecated This API is for technology preview only.
248248
*/
249249
const Locale& getLocale() const { return locale; }
@@ -252,7 +252,7 @@ namespace message2 {
252252
*
253253
* @return A UBiDiDirection indicating the text direction.
254254
*
255-
* @internal ICU 77 technology preview
255+
* @internal ICU 78 technology preview
256256
* @deprecated This API is for technology preview only.
257257
*/
258258
UBiDiDirection getDirection() const { return dir; }
@@ -262,7 +262,7 @@ namespace message2 {
262262
* @return A string to be used in formatting to parts.
263263
* (Formatting to parts is not yet implemented.)
264264
*
265-
* @internal ICU 77 technology preview
265+
* @internal ICU 78 technology preview
266266
* @deprecated This API is for technology preview only.
267267
*/
268268
const UnicodeString& getID() const { return id; }
@@ -282,7 +282,7 @@ namespace message2 {
282282
/**
283283
* Interface that function handler classes must implement.
284284
*
285-
* @internal ICU 77 technology preview
285+
* @internal ICU 78 technology preview
286286
* @deprecated This API is for technology preview only.
287287
*/
288288
class U_I18N_API Function : public UObject {
@@ -298,7 +298,7 @@ namespace message2 {
298298
* @return The function value that is the result of calling this function on
299299
* the arguments.
300300
*
301-
* @internal ICU 77 technology preview
301+
* @internal ICU 78 technology preview
302302
* @deprecated This API is for technology preview only.
303303
*/
304304
virtual LocalPointer<FunctionValue> call(const FunctionContext& context,
@@ -308,7 +308,7 @@ namespace message2 {
308308
/**
309309
* Destructor.
310310
*
311-
* @internal ICU 77 technology preview
311+
* @internal ICU 78 technology preview
312312
* @deprecated This API is for technology preview only.
313313
*/
314314
virtual ~Function();
@@ -327,7 +327,7 @@ namespace message2 {
327327
* mutable state in classes implementing FunctionValue is welcomed
328328
* during the Technology Preview period.
329329
*
330-
* @internal ICU 77 technology preview
330+
* @internal ICU 78 technology preview
331331
* @deprecated This API is for technology preview only.
332332
*/
333333
class U_I18N_API FunctionValue : public UObject {
@@ -340,7 +340,7 @@ namespace message2 {
340340
* @param status Input/output error code
341341
* @return A string.
342342
*
343-
* @internal ICU 77 technology preview
343+
* @internal ICU 78 technology preview
344344
* @deprecated This API is for technology preview only.
345345
*/
346346
virtual UnicodeString formatToString(UErrorCode& status) const {
@@ -356,7 +356,7 @@ namespace message2 {
356356
*
357357
* @return A reference to a message2::Formattable object.
358358
*
359-
* @internal ICU 77 technology preview
359+
* @internal ICU 78 technology preview
360360
* @deprecated This API is for technology preview only.
361361
*/
362362
virtual const Formattable& getOperand() const { return operand; }
@@ -365,7 +365,7 @@ namespace message2 {
365365
*
366366
* @return A reference to the resolved options for this value.
367367
*
368-
* @internal ICU 77 technology preview
368+
* @internal ICU 78 technology preview
369369
* @deprecated This API is for technology preview only.
370370
*/
371371
virtual const FunctionOptions& getResolvedOptions() const { return opts; }
@@ -376,7 +376,7 @@ namespace message2 {
376376
*
377377
* @return True iff this value supports selection.
378378
*
379-
* @internal ICU 77 technology preview
379+
* @internal ICU 78 technology preview
380380
* @deprecated This API is for technology preview only.
381381
*/
382382
virtual UBool isSelectable() const {
@@ -392,7 +392,7 @@ namespace message2 {
392392
*
393393
* @return True iff this value represents an absent operand.
394394
*
395-
* @internal ICU 77 technology preview
395+
* @internal ICU 78 technology preview
396396
* @deprecated This API is for technology preview only.
397397
*/
398398
virtual UBool isNullOperand() const { return false; }
@@ -413,7 +413,7 @@ namespace message2 {
413413
* which must be less than or equal to `keysLen`.
414414
* @param status Input/output error code.
415415
*
416-
* @internal ICU 77 technology preview
416+
* @internal ICU 78 technology preview
417417
* @deprecated This API is for technology preview only.
418418
*/
419419
virtual void selectKeys(const UnicodeString* keys,
@@ -452,22 +452,22 @@ namespace message2 {
452452
/**
453453
* Destructor.
454454
*
455-
* @internal ICU 77 technology preview
455+
* @internal ICU 78 technology preview
456456
* @deprecated This API is for technology preview only.
457457
*/
458458
virtual ~FunctionValue();
459459
protected:
460460
/**
461461
* Operand used to construct this value.
462462
*
463-
* @internal ICU 77 technology preview
463+
* @internal ICU 78 technology preview
464464
* @deprecated This API is for technology preview only.
465465
*/
466466
Formattable operand;
467467
/**
468468
* Resolved options attached to this value.
469469
*
470-
* @internal ICU 77 technology preview
470+
* @internal ICU 78 technology preview
471471
* @deprecated This API is for technology preview only.
472472
*/
473473
FunctionOptions opts;

0 commit comments

Comments
 (0)