|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
XTagListener.java | - | - | - | - |
|
1 |
/*
|
|
2 |
* Copyright (c) 2001-2003 The XDoclet team
|
|
3 |
* All rights reserved.
|
|
4 |
*/
|
|
5 |
package xjavadoc.event;
|
|
6 |
|
|
7 |
import java.util.EventListener;
|
|
8 |
|
|
9 |
/**
|
|
10 |
* Describe what this class does
|
|
11 |
*
|
|
12 |
* @author Aslak Hellesøy
|
|
13 |
* @created 30. januar 2002
|
|
14 |
* @todo-javadoc Write javadocs for interface
|
|
15 |
*/
|
|
16 |
public interface XTagListener extends EventListener |
|
17 |
{ |
|
18 |
/**
|
|
19 |
* notify abou tag change
|
|
20 |
*
|
|
21 |
* @param event Describe what the parameter does
|
|
22 |
* @todo-javadoc Write javadocs for method
|
|
23 |
* @todo-javadoc Write javadocs for method parameter
|
|
24 |
*/
|
|
25 |
void tagChanged( XTagEvent event );
|
|
26 |
} |
|
27 |
|
|