Project

General

Profile

« Previous | Next » 

Revision 51171c9d

Added by Andreas Müller over 12 years ago

last updates for Taxon Excel Import and moving all success variables to state

View differences:

cdmlib-io/src/main/java/eu/etaxonomy/cdm/io/common/IoStateBase.java
24 24
	
25 25
	private IO currentIO;
26 26

  
27
	private boolean success;
28

  
27 29
	CONFIG config;
28 30
	
29 31
	/**
......
61 63
	public IO getCurrentIO() {
62 64
		return currentIO;
63 65
	}
66

  
67
	public void setSuccess(boolean success) {
68
		this.success = success;
69
	}
70
	
71
	public void setUnsuccessfull(){
72
		this.success = false;
73
	}
74

  
75
	public boolean isSuccess() {
76
		return success;
77
	}
64 78
	
65 79
	
66 80
}

Also available in: Unified diff