Project

General

Profile

1
package eu.dnetlib.functionality.modular.ui.oai;
2

    
3
/*
4
 * Need this class to let angularjs allow edit the content See
5
 * http://stackoverflow.com/questions/13714884/difficulty-with-ng-model-ng-repeat-and-inputs
6
 */
7
public class IndexPath {
8

    
9
	private String path;
10

    
11
	public IndexPath() {
12
		super();
13
		// TODO Auto-generated constructor stub
14
	}
15

    
16
	public IndexPath(final String path) {
17
		super();
18
		this.path = path;
19
	}
20

    
21
	public String getPath() {
22
		return path;
23
	}
24

    
25
	public void setPath(final String path) {
26
		this.path = path;
27
	}
28
}
(1-1/7)