summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl')
-rw-r--r--TAO/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl b/TAO/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl
index 15c32fe82b3..e65b1ea7794 100644
--- a/TAO/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl
+++ b/TAO/CIAO/tests/IDL3/Components/ComplexComponent/Attributes/Attributes.idl
@@ -13,37 +13,37 @@ module Attributes
attribute float test;
attribute long testA, testB;
};
-
+
component Bar
{
readonly attribute float test1;
readonly attribute long testB, testC;
};
-
+
exception FooException
{
};
-
+
exception BarException
{
};
-
+
component FooRaises
{
attribute float test2 getraises (FooException);
};
-
+
component BarRaises
{
attribute float test3 setraises (BarException);
};
-
+
component FooBarRaises
{
- attribute float test4
+ attribute float test4
getraises (FooException) setraises (BarException);
};
-
+
component ROFooRaises
{
readonly attribute float test5 raises (FooException);