Inspector | Message | Severity | Location |
---|---|---|---|
Java Inspector 048 | Copyrights information should be present in each file. | 1 |
1package biz.hammurapi.config;
2
3/**
4 * Component with name.
5 * @author Pavel
6 */
7public interface NamedComponent extends Component {
8
9 /**
10 * Sets component name.
11 * @param name
12 */
13 void setName(String name);
14
15 /**
16 * @return Component name
17 */
18 String getName();
19
20 /**
21 * Component path in container, which is
22 * component's owner path and component name separated by slash.
23 * @return
24 */
25 String getPath();
26}
27