This has no documentation

Version: 1.1.0

Generated: 2024-05-16T16:22:15.480444175

Arguments

message1

message1 - the message to be printed - (java expects a RCharacter)

message2

message2 - will be used for toString - (java expects a RCharacter)

Details

This has no documentation

Methods


Constructor new()

the first constructor is used if there are none annotated

Usage


J = testRapi::JavaApi$get()
instance = J$MoreFeatureTest$new(message1, message2);
        

Arguments

message1 - the message to be printed

- (java expects a RCharacter)

message2 - will be used for toString

- (java expects a RCharacter)

Returns

the new R6 MoreFeatureTest object


Method testLogging()

no title

Usage


J = testRapi::JavaApi$get()
instance = J$MoreFeatureTest$new(message1, message2);
instance$testLogging()
        

Arguments

  • none

Returns

void:


Method throwCatchable()

no title

Usage


J = testRapi::JavaApi$get()
instance = J$MoreFeatureTest$new(message1, message2);
instance$throwCatchable()
        

Arguments

  • none

Returns

RCharacter:


Method printMessage()

no title

Usage


J = testRapi::JavaApi$get()
instance = J$MoreFeatureTest$new(message1, message2);
instance$printMessage()
        

Arguments

  • none

Returns

void:


Method throwRuntime()

no title

Usage


J = testRapi::JavaApi$get()
instance = J$MoreFeatureTest$new(message1, message2);
instance$throwRuntime()
        

Arguments

  • none

Returns

RCharacter:

Examples

## -----------------------------------
## Construct new instance of MoreFeatureTest
## -----------------------------------
if (FALSE) {
J = testRapi::JavaApi$get()
# appropriate parameter values must be provided
instance = J$MoreFeatureTest$new(message1, message2)
}

## -----------------------------------
## Method `MoreFeatureTest$testLogging()`
## -----------------------------------
if (FALSE) {
# appropriate parameter values must be provided
instance$testLogging()
}

## -----------------------------------
## Method `MoreFeatureTest$throwCatchable()`
## -----------------------------------
if (FALSE) {
# appropriate parameter values must be provided
instance$throwCatchable()
}

## -----------------------------------
## Method `MoreFeatureTest$printMessage()`
## -----------------------------------
if (FALSE) {
# appropriate parameter values must be provided
instance$printMessage()
}

## -----------------------------------
## Method `MoreFeatureTest$throwRuntime()`
## -----------------------------------
if (FALSE) {
# appropriate parameter values must be provided
instance$throwRuntime()
}