Revision c9592525 src/gr/ebs/gss/web/client/rest/GetCommand.java

b/src/gr/ebs/gss/web/client/rest/GetCommand.java
119 119
	public GetCommand(Class<T> theclass, String pathToGet, boolean showLoading, T theCached){
120 120
		setShowLoadingIndicator(showLoading);
121 121
		if(isShowLoadingIndicator())
122
			GSS.get().showLoadingIndicator();
122
			GSS.get().showLoadingIndicator("Getting ",pathToGet);
123 123
		this.aclass = theclass;
124 124
		if(pathToGet.indexOf("?") != -1)
125 125
			path = pathToGet;
......
135 135
	public GetCommand(Class<T> theclass, String aUsername , String pathToGet, boolean showLoading, T theCached){
136 136
		setShowLoadingIndicator(showLoading);
137 137
		if(isShowLoadingIndicator())
138
			GSS.get().showLoadingIndicator();
138
			GSS.get().showLoadingIndicator("Getting ",pathToGet);
139 139
		this.aclass = theclass;
140 140
		path = fixPath(pathToGet);
141 141
		this.username = aUsername;

Also available in: Unified diff