Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is client code in java [closed]

I have simple question. Of course before i asked here , i asked Google, but unfortunately i didn't get the answer i want.

I just want to know simple question. What is client code in java (android)? When i asked google, it gave me results about client/network server. I think in this case a client is a program running on my/your computer, and network is a server communicating with client?

I want to know what is a client code in Java? Like in this context: ( Copied from android developers site )

There are two reasons that a service can be run by the system. If someone calls Context.startService() then the system will retrieve the service (creating it and calling its onCreate() method if needed) and then call its onStartCommand(Intent, int, int) method with the arguments supplied by the client.

Is in this case client code like Activity code ..or?

like image 742
rootpanthera Avatar asked Dec 17 '12 10:12

rootpanthera


People also ask

What is a client code in Java?

Client code is application code that invokes a service on Integration Server. It typically performs the following basic tasks: Prompts the user for input values for the service that the client invokes (if the service takes input) Places the input values into an input document. Opens a session on Integration Server.

What is a client code?

The client code is an optional field that allows organizations and law firms that work with multiple clients to group transactions for their own internal billing process.

What is client class in Java with example?

a client of a class is one that uses a reference to access ... fields/methods of that class. Correct but not limited to instances. ... are all of these considered clients if they are in another class? Yes methods and variables are clients of some other class if they reference it.


1 Answers

In this context, client means client of the API, which is simply the caller of the given methods or user of the given classes.

like image 188
Natix Avatar answered Oct 03 '22 23:10

Natix