Page MenuHomeSealhub

field-type.js
No OneTemporary

field-type.js

function FieldType(){
}
FieldType.prototype = new function(){
}
var FieldTypeManager = new function(){
var all_field_types_by_name = [];
this.addFieldType = new function(field_type){
if(!(field_type instanceof FieldType)){
var err = new Error("===FieldTypeManager error=== argument passed to addFieldType is not an instance of FieldType");
err.code = "not_a_field_type_instance";
throw err;
}
all_field_types_by_name[field_type.name] = field_type;
}
}

File Metadata

Mime Type
text/plain
Expires
Wed, May 7, 19:39 (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
674671
Default Alt Text
field-type.js (476 B)

Event Timeline