All > Technology > Programming > Java
- Business-to-business.
- Browse Related Terms: B2B, ebXML, Java API for XML Registries (JAXR), OASIS, registry provider, UDDI (Universal Description Discovery and Integration), XML registry
All > Technology > Programming > Java
- A JavaBeans component that corresponds to a JSP page that includes JavaServer Faces components. The backing bean defines properties for the components on the page and methods that perform processing for the component. This processing includes event handling, validation, and processing associated with navigation.
- Browse Related Terms: backing bean, binding (JavaServer Faces technology), JavaBeans component, JavaServer Faces event and listener model, JavaServer Faces expression language, JavaServer Faces UI component class, JSP expression language, method-binding expression, value-binding expression
All > Technology > Programming > Java
A non-recursive route through a recursive method.
- Browse Related Terms: base case, class method, direct recursion, indirect recursion, instance method, message passing, mutual recursion, recursion
All > Technology > Programming > Java
The type of items which may be stored in an array - the array's defined type. For instance, in
int[] numbers;
the base type ofnumbers
isint
. Where the base type is a class type, it indicates the lowest super type of objects that may be stored in the array. For instance, inShip[] berths;
only instances of theShip
class may be stored inberths
. If the base type of an array isObject
, instances of any class may be stored in it.- Browse Related Terms: array, base type, deep copy, dynamic type, finalization, garbage collection, heterogeneous collection, homogeneous collection, shallow copy, subarray
All > Technology > Programming > Java
- An authentication mechanism in which a Web server authenticates an entity via a user name and password obtained using the Web application's built-in authentication mechanism.
- Browse Related Terms: anonymous access, Basic authentication, certificate authority, client-certificate authentication, digest authentication, form-based authentication, keystore, mutual authentication, principal, public-key certificate, server certificate, SIM (Subscriber Identity Module), SSL, SSL (Secure Sockets Layer), user (security), user data constraint, WTLS (Wireless Transport Layer Security)
Also listed in:
All > Technology > Programming > Java
A reusable software component that conforms to certain design and naming conventions. The conventions enable beans to be easily combined to create an application using tools that understand the conventions.
- Browse Related Terms: bean, HSB Color Model, JavaBeans, layout manager, life cycle (JavaServer Faces), module, Pipe, radio buttons, RGB Color Model, service element, shortcut key
All > Technology > Programming > Java
- The mechanism whereby data transfer between an entity bean's variables and a resource manager is managed by the entity bean.
- Browse Related Terms: abstract schema, bean-managed persistence, cascade delete, container-managed persistence, conversational state, enterprise bean, Enterprise JavaBeans Query Language (EJB QL), entity bean, home interface, persistence, persistent field, primary key, reentrant entity bean, relationship field, stateful session bean, stateless session bean
All > Technology > Programming > Java
- A transaction whose boundaries are defined by an enterprise bean.
- Browse Related Terms: abstract schema name, activation, actor, bean-managed transaction, business logic, business method, caller principal, create method, EJB, EJB context, EJB home object, EJB module, EJB object, finder method, handle, message-driven bean, method permission, Passivation, remote interface, remove method, transaction attribute
All > Technology > Programming > Java
The methods of a class implement its behavior. A particular object's behavior is a combination of the method definitions of its class and the current state of the object.
- Browse Related Terms: behavior, bridging method, class, class body, deprecated, deprecation, field, inner class, interface, local inner class, logical error, marking interface, member, method body, monitor, Object, one-way messaging, overriding, request-response messaging, Return, runtime stack, static
Also listed in:
All > Technology > Programming > Java
A common difference between machines is the order in which they store the individual bytes of multi-byte numerical data. A big-endian machine stores the higher-order bytes before the lower-order bytes. See little-endian.
- Browse Related Terms: big-endian, CVM (Compact Virtual Machine), JVM, KVM (Kilobyte Virtual Machine), little-endian, scheduler, Thread, virtual machine
Also listed in:
- All > Technology > Programming > Perl
- All > Technology > Storage
- All > Technology > Telecommunications
All > Technology > Programming > Java
Number representation in base 2. In base 2, only the digits
0
and1
are used. Digit positions represent successive powers of 2. See bit.- Browse Related Terms: binary, decimal, hexadecimal, JAR, Modem, Modulation, octal, sound card
Also listed in:
- All > Law > E-Discovery
- All > Technology > Programming > Perl
- All > Technology > Telecommunications
All > Technology > Programming > Java
- See unparsed entity.
- Browse Related Terms: binary entity, Entity, entity reference, external entity, external subset, general entity, local subset, notation, parameter entity, parsed entity, unparsed entity
All > Technology > Programming > Java
An operator taking two operands. Java has many binary operators, such as the arithmetic operators
+
,-
,*
,/
and%
, and the boolean operators&&
,||
and^
, amongst others.An operator that has two arguments.
- Browse Related Terms: arithmetic expression, arithmetic operator, assignment operator, binary operator, boolean expression, conditional operator, De Morgan's Theorem, expression, fully evaluating operator, implicit type conversion, JSP expression, logical operators, operand, operator, precedence rules, quotient, relational operators, short-circuit operator
Also listed in:
- All > Technology > Programming > Perl
All > Technology > Programming > Java
A search of sorted data, in which the middle position is examined first. Search continues with either the left or the right portion of the data, thus eliminating half the remaining search space. This process is repeated at each step, until either the required item is found, or there is no more data to search.
- Browse Related Terms: binary search, FIFO (first in, first out), Image Map, infinite recursion, LIFO (last in, first out), Stack, stack overflow
All > Technology > Programming > Java
- Wiring UI components to back-end data sources such as backing bean properties.
- Browse Related Terms: backing bean, binding (JavaServer Faces technology), JavaBeans component, JavaServer Faces event and listener model, JavaServer Faces expression language, JavaServer Faces UI component class, JSP expression language, method-binding expression, value-binding expression
All > Technology > Programming > Java
- Generating the code needed to process a well-defined portion of XML data.
- Browse Related Terms: absolute filename, asant, binding (XML), build file, Document Object Model, DOM, Extensible Markup Language, Java API for XML Processing (JAXP), kXML, processing instruction, RDF, relative filename, XLL, XML Schema
All > Technology > Programming > Java
The smallest unit of information in a computer, with a value of either 0 or 1.
A binary digit, which can take on two possible values:
0
and1
. Bits are the fundamental building block of both programs and data. Computers regularly move data around in multiples of eight-bit units (bytes for the sake of efficiency).
Also listed in:
- All > Law > E-Discovery
- All > Technology > Defense
- All > Technology > GIS
- All > Technology > Programming > Perl
- All > Technology > Storage
- All > Technology > Telecommunications
All > Technology > Programming > Java
Operators, such as
&
,|
and^
, that are used to examine an manipulate individual bits within the bytes of a data item. The shift operators,<<
,>>
and>>>
, are also bit manipulation operators.- Browse Related Terms: ASCII, atomic, bit manipulation operator, bitwise operator, complement operator, exclusive-or operator, left shift operator, right shift operator, shift operator, sign bit, twos-complement notation
All > Technology > Programming > Java
An operator that manipulates the bits of one or more of its operands individually and in parallel. Examples include the binary logical operators (&, |, ^), the binary shift operators (<<, >>, >>>) and the unary one's complement operator (~).
- Browse Related Terms: ASCII, atomic, bit manipulation operator, bitwise operator, complement operator, exclusive-or operator, left shift operator, right shift operator, shift operator, sign bit, twos-complement notation
All > Technology > Programming > Java
A final variable that is not initialized as part of its declaration. Such a variable must be initialized in either an instance initialization block or all of the constructors for its class before it is used. A static blank final variable must be initialized in a static initialization block.
- Browse Related Terms: blank final variable, declaration and initialization, default initial value, final, final variable, initialization parameter, initializer, uninitialized variable