コード例 #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;
 }