Examples of using Client code in English and their translations into Hungarian
{-}
-
Colloquial
-
Official
-
Medicine
-
Ecclesiastic
-
Financial
-
Programming
-
Official/political
-
Computer
Client code protection(CASPOL).
Now, let's see the client code.
Client code Mandatory field*.
Please provide your client code.
The client code deals only with the abstract type.
Let's have a look at the client code.
Incoming Contact ID client code can be sent modified to the IP receiver.
Activity:{Y} GBq/vial Client code.
The Linux NIS+ client code was developed for the GNU C library 2.
Throughout ALL of the client code.
This separation of concerns means that, for example, clients are not concerned with data storage, which remains internal to each server, so that the portability of client code is improved.
Self-describing REST service publishing and client code generation on the. NET platform.
The client code would get an appropriate instance of the DocumentCreator and call its factory methods.
Mariner became open source inMarch 1998 when Netscape released its client code and started the Mozilla project.
Maintenance If your client code talks only in terms of an interface, you can easily change the concrete implementation behind it, using a factory method.
Similar to other online banking systems,the GoldMine® system provides the client code required to registration via e-mail as well as via SMS.
The different factory then creates objects of a different concrete type, but still returns a pointer of the same abstract type as before-thus insulating the client code from change.
Similar to other online banking systems,the GoldMine® system provides the client code required to registration via e-mail as well as via SMS.
NET Framework the concept of type parameters, which make it possible to design classes and methods that defer the specification of oneor more types until the class or method is declared and instantiated by client code.
Write and expose web services in a widely used programming language andwrite client code in that language to invoke web services.
The application supports the management of several client codes(similarly to the Custom[R]s program), so we can handle EKAER declarations separately under several client codes in one database.
Write and expose web services in a widely used programming language andwrite client code in that language to invoke web services.
As the factory only returns an abstract pointer, the client code(that requested the object from the factory) does not know- and is not burdened by- the actual concrete type of the object that was just created.
The specification describes how an EJB interacts with its container and how client code interacts with the container/EJB combination.
This insulates client code from object creation by having clients ask a factory object to create an object of the desired abstract type and to return an abstract pointer to the object.
Objects of a concrete type are indeed created by the factory, but the client code accesses such objects only through their abstract interface.
This is significantly easier than modifying the client code to instantiate a new type, which would require changing every location in the code where a new object is created(as well as making sure that all such code locations also have knowledge of the new concrete type, by including for instance a concrete class header file).
As a rule of thumb, if a programmer can look at nothing but the client code and tell what framework is being used, then the client has a hard-coded dependency on the framework.
If all factory objectsare stored globally in a singleton object, and all client code goes through the singleton to access the proper factory for object creation, then changing factories is as easy as changing the singleton object.