Subversion Repositories eFlore/Applications.cel

Rev

Rev 1542 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1542 Rev 1744
Line 13... Line 13...
13
		String[] codeCompletIntitule = infosReferentiel.split(",");
13
		String[] codeCompletIntitule = infosReferentiel.split(",");
14
		intitule = codeCompletIntitule[1];
14
		intitule = codeCompletIntitule[1];
Line 15... Line 15...
15
		
15
		
16
		String[] codeVersion = codeCompletIntitule[0].split(":");
16
		String[] codeVersion = codeCompletIntitule[0].split(":");
-
 
17
		code = codeVersion[0];
17
		code = codeVersion[0];
18
		if(codeVersion.length > 1) {
18
		version = codeVersion[1];
19
			version = codeVersion[1];
-
 
20
			versionCourte = formaterVersionCourte(version);
-
 
21
		} else {
-
 
22
			version = versionCourte = null;
19
		versionCourte = formaterVersionCourte(version);
23
		}
Line 20... Line 24...
20
	}
24
	}
21
	
25
	
22
	public InfosReferentielNom(String code, String version, String intitule) {
26
	public InfosReferentielNom(String code, String version, String intitule) {