Project

General

Profile

1
package eu.dnetlib.pace.model;
2

    
3
import java.util.List;
4

    
5
/**
6
 * The Interface FieldList.
7
 */
8
public interface FieldList extends List<Field>, Field {
9

    
10
	/**
11
	 * String list.
12
	 * 
13
	 * @return the list
14
	 */
15
	public List<String> stringList();
16

    
17
}
(7-7/15)