The StringDef interface represents a bounded string type. A StringDef object is unnamed.
module CORBA {
interface StringDef : IDLType {
attribute unsigned long bound;
};
};
StringDef objects are anonymous. Its bound attribute specifiies the string bound which must be greater than 0. Unbounded strings are primitive types. You can change the bound of a StringDef by changing its bound attribute.
This specifies the bound of the string. It cannot be set to 0.
attribute unsigned long bound;