Subversion Repositories eFlore/Applications.del

Rev

Rev 210 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
29 benjamin 1
package org.tela_botanica.del.client.i18n;
2
 
3
import com.google.gwt.core.client.GWT;
4
 
5
public class VocabularyConsumer {
6
 
7
	public VocabularyConsumer() {
8
	}
9
 
10
	public static Vocabulary getVocabulary() {
11
		return (Vocabulary) GWT.create(Vocabulary.class);
12
	}
13
 
14
	public static Messages getMessages() {
15
		return (Messages) GWT.create(Messages.class);
16
	}
17
 
18
}