Interface CtConstructorCall<T>

Type Parameters:
T - created type
All Superinterfaces:
Cloneable, CtAbstractInvocation<T>, CtActualTypeContainer, CtCodeElement, CtElement, CtExpression<T>, CtQueryable, CtStatement, CtTargetedExpression<T,​CtExpression<?>>, CtTypedElement<T>, CtVisitable, FactoryAccessor, Serializable, SourcePositionHolder, TemplateParameter<T>
All Known Subinterfaces:
CtNewClass<T>
All Known Implementing Classes:
CtConstructorCallImpl, CtNewClassImpl

public interface CtConstructorCall<T> extends CtTargetedExpression<T,​CtExpression<?>>, CtAbstractInvocation<T>, CtStatement, CtActualTypeContainer
This code element represents a constructor call. Example:
     new Object();
 
To build a constructor call, see DefaultCoreFactory.createConstructorCall().