Revision 7122 trunk/extensions/extPublish/src/org/gvsig/remoteservices/conf/mapserver/MapServer.java

View differences:

MapServer.java
44 44
 *
45 45
 * $Id$
46 46
 * $Log$
47
 * Revision 1.10  2006-09-07 18:11:06  luisw2
47
 * Revision 1.11  2006-09-07 19:16:30  jorpiell
48
 * *** empty log message ***
49
 *
50
 * Revision 1.10  2006/09/07 18:11:06  luisw2
48 51
 * Adding Time to mapserver ...
49 52
 *
50 53
 * Revision 1.9  2006/09/07 16:34:28  luisw2
......
375 378
		public String title;
376 379
		public String status = "ON";
377 380
		public String type = null;
378
		public int transparency = 0;
381
		public int transparency = -1;
379 382
		public ArrayList classList = null;
380 383
		public ArrayList layerList = null;
381 384
		public String data;
......
394 397
			tabIn(); 
395 398
			toMapln("NAME \""+name+"\"");
396 399
			toMapln("STATUS "+status);
397
			toMapln("TRANSPARENCY " + transparency);
400
			if (transparency > -1){
401
				toMapln("TRANSPARENCY " + transparency);
402
			}
398 403
			if (tileIndex != null)
399 404
				toMapln("TILEINDEX \""+tileIndex+"\"");
400 405
			if (tileItem != null)

Also available in: Unified diff