View Javadoc
1   package net.avcompris.devops;
2   
3   public interface Link {
4   
5   	String getText();
6   
7   	String getUrl();
8   
9   	Link setText(String text);
10  
11  	Link setUrl(String urt);
12  }