KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > webjmx > tags > ILocatorTag


1 /*
2  * Copyright (C) WebJMX.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the WebJMX License version 2.0.
6  * See the terms of the WebJMX License in the documentation provided with this software.
7  */

8 /*
9  * ILocatorTag.java
10  *
11  * Created on December 30, 2001, 10:45 PM
12  */

13
14 package org.webjmx.tags;
15
16 /** This interface identifies tags which have a "locator" property.
17  *
18  * @author John Aronson
19  */

20 public interface ILocatorTag
21 {
22
23     /** Getter for property locator.
24      * @return Value of property locator.
25      */

26     public String JavaDoc getLocator();
27     
28     /** Setter for property locator.
29      * @param locator New value of property locator.
30      */

31     public void setLocator(String JavaDoc locator);
32     
33 }
34
35
Popular Tags