Revision 27828

View differences:

branches/v2_0_0_prep/libraries/libGPE-GML/src/org/gvsig/gpe/gml/warnings/GMLWarningInfo.java
76 76
	private ListBaseException warning;
77 77
		
78 78
	public GMLWarningInfo(){
79
		warning=new GMLExceptionList();
79
		warning=new GMLExceptionList("", "", 0);
80 80
	}
81 81
	
82 82
	/**
branches/v2_0_0_prep/libraries/libGPE-GML/src/org/gvsig/gpe/gml/exceptions/GMLExceptionList.java
66 66
// PARA WARNINGS YA VEREMOS SI SE USA
67 67
//***********************************
68 68
public class GMLExceptionList extends ListBaseException{
69

  
70
	
71 69
	/**
72
	 * 
70
	 * @param message
71
	 * @param key
72
	 * @param code
73 73
	 */
74
	public GMLExceptionList(String message, String key, long code) {
75
		super(message, key, code);		
76
	}
77

  
78

  
74 79
	private static final long serialVersionUID = -2229510058574520019L;
75 80

  
81
	
82
	
76 83
	protected Map values() {
77 84
		// TODO Auto-generated method stub
78 85
		return null;
branches/v2_0_0_prep/libraries/libGPE-KML/src/org/gvsig/gpe/kml/warnings/WarningList.java
70 70
 */
71 71
public class WarningList extends ListBaseException {
72 72

  
73
	/**
74
	 * @param message
75
	 * @param key
76
	 * @param code
77
	 */
78
	public WarningList(String message, String key, long code) {
79
		super(message, key, code);		
80
	}
81

  
73 82
	protected Map values() {
74 83
		// TODO Auto-generated method stub
75 84
		return null;
branches/v2_0_0_prep/libraries/libGPE-KML/src/org/gvsig/gpe/kml/warnings/WarningsContainer.java
72 72
	private ListBaseException warning = null;
73 73
	
74 74
	public WarningsContainer(){
75
		warning = new WarningList();
75
		warning = new WarningList("","",0);
76 76
	}
77 77
	
78 78
	/*

Also available in: Unified diff