예제 #1
0
파일: Element.java 프로젝트: origocms/origo
 protected Element(String type, Class t) {
   this.id = UUID.randomUUID().toString();
   this.type = type;
   this.inputType = t;
 }
예제 #2
0
파일: Element.java 프로젝트: origocms/origo
 protected Element(String type) {
   this.id = UUID.randomUUID().toString();
   this.type = type;
 }