Contents

cfinterface

Description

Category

Other

Implemented

Usage Syntax

<cfinterface  
	[displayName="String"]
	[extends="String"]
	[hint="String"]
 />

[] = Optional attribute

Attributes

Name Type Required Default Description
displayName String No A value to be displayed when using introspection to show a descriptive name for the interface.
extends String No A comma-delimited list of one or more interfaces that this interface extends. Any CFC that implements an interface must also implement all the functions in the interfaces specified by this property. If an interface extends another interface, and the child interface specifies a function with the same name as one in the parent interface, both functions must have the same attributes; otherwise ColdFusion generates an error.
hint String No

Example Usage