# css-javascript-toolbox/11.9/framework/events/subjects/subject.interface.php

CSS &amp; JavaScript Toolbox, version 11.9. 38 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/11.9/code/framework/events/subjects/subject.interface.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/11.9/raw/framework/events/subjects/subject.interface.php
- Modified: 2024-01-15T08:59:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/css-javascript-toolbox/11.9/code/framework/events/subjects/subject.interface.php#L10-L20`.

```php
<?php
/**
* 
*/

/**
* 
*/
interface CJTEEISubject {
	
	/**
	* put your comment there...
	* 
	* @param mixed $name
	*/
	public function getDefinition($name);
	
	/**
	* put your comment there...
	* 
	* @param mixed $observer
	*/
	public static function getInstance($name, $target, $definition, $includes);
	
	/**
	* put your comment there...
	* 
	*/
	public function getTarget();
	
	/**
	* put your comment there...
	* 
	*/
	public function trigger();
	
} // End interface.

```
