Update name references in java docs

Summary: Per title. Tried to only update the things I touched myself.

Reviewed By: jknoxville

Differential Revision: D10028023

fbshipit-source-id: 09b56ea9d19caa277a107e4ea970d3ebb28b2165
This commit is contained in:
Pascal Hartig
2018-09-25 08:46:06 -07:00
committed by Facebook Github Bot
parent a19862d7a2
commit 632628e630
9 changed files with 45 additions and 45 deletions

View File

@@ -4,23 +4,23 @@ title: Mobile Setup
sidebar_label: Mobile Setup
---
## Implement SonarPlugin
## Implement FlipperPlugin
Create a class implementing `SonarPlugin`.
Create a class implementing `FlipperPlugin`.
### Android
```java
public class MySonarPlugin implements SonarPlugin {
private SonarConnection mConnection;
public class MyFlipperPlugin implements FlipperPlugin {
private FlipperConnection mConnection;
@Override
public String getId() {
return "MySonarPlugin";
return "MyFlipperPlugin";
}
@Override
public void onConnect(SonarConnection connection) throws Exception {
public void onConnect(FlipperConnection connection) throws Exception {
mConnection = connection;
}
@@ -57,18 +57,18 @@ public:
};
```
## Using SonarConnection
## Using FlipperConnection
Using the `SonarConnection` object you can register a receiver of a desktop method call and respond with data.
Using the `FlipperConnection` object you can register a receiver of a desktop method call and respond with data.
### Android
```java
connection.receive("getData", new SonarReceiver() {
connection.receive("getData", new FlipperReceiver() {
@Override
public void onReceive(SonarObject params, FlipperResponder responder) throws Exception {
public void onReceive(FlipperObject params, FlipperResponder responder) throws Exception {
responder.success(
new SonarObject.Builder()
new FlipperObject.Builder()
.put("data", MyData.get())
.build());
}
@@ -119,7 +119,7 @@ You don't have to wait for the desktop to request data though, you can also push
```java
connection.send("MyMessage",
new SonarObject.Builder()
new FlipperObject.Builder()
.put("message", "Hello")
.build()
```