Spec-Zone .ru
спецификации, руководства, описания, API
|
idlj
compiler
maps an OMG IDL attribute to accessor and modifier methods in the
Java programming language.
For example, an interface ball might include the
attribute color. The idlj compiler
would generate a Java programming language method to get the color, and
unless the attribute is readonly
, a method
to set the color.
CORBA attributes correspond closely to JavaBeans properties.
Object
is also the implicit common base type for
object references of IDL interfaces.
org.omg.CORBA.SystemException
(which is a java.lang.RuntimeException
),
and (2) user-defined exceptions, which inherit
from org.omg.CORBA.UserException
(which is a java.lang.Exception
).
.java
files. Prior to J2SDK v1.3, the idlj compiler was known as the idltojava compiler. The idlj compiler supports new CORBA-standard features required for RMI-IIOP. The idlj compiler is placed in the SDK's .bin directory by the installer.
.java
files. Beginning with J2SDK v1.3, the IDL-to-Java language mapping is handled by the idlj compiler, which supports new CORBA-standard features required for RMI-IIOP. The
idltojava
compiler can be downloaded from the
Java Developer Connection (JDC) web site.
NamingContext
objects.
idlj
compiler.
All are part of J2SDK1.3.
oneway
, in which case they cannot return results
(return values or out arguments) or raise exceptions.
Home |