This interface is used for modeling objects.

Namespace: ILOG.Concert
Assembly: ILOG.Concert (in ILOG.Concert.dll) Version: 22.1.0.0

Syntax

C#
public interface IAddable : ICopyable
Visual Basic
Public Interface IAddable _
	Inherits ICopyable

Remarks

Objects of classes implementing this interface can be added to an instance of IModel. Constraint classes, such as IRange, and classes representing optimization objectives, such as IObjective, are examples.

All addable modeling objects can be assigned a name with the method setName(). The name can be queried with the method getName(). Assigning a name is not required. Modeling objects are created without an assigned name unless a name is specified in the construction.

See Also