Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 26 → Rev 27

/trunk/www/.gwt-tmp/compiler/org.tela_botanica.cel2/compilations/988CE8F83B1C8FC04BE50AEEF5C78932
New file
0,0 → 1,20198
var _, N8000000000000000_longLit = [0, -9223372036854775808], P0_longLit = [0, 0], P1000000_longLit = [16777216, 0], P7fffffffffffffff_longLit = [4294967295, 9223372032559808512];
function equals_14(other){
return (this == null?null:this) === (other == null?null:other);
}
 
function getClass_230(){
return Ljava_lang_Object_2_classLit;
}
 
function hashCode_15(){
return this.$H || (this.$H = ++sNextHashId);
}
 
function toString_21(){
return (this.typeMarker$ == nullMethod || this.typeId$ == 2?this.getClass$():Lcom_google_gwt_core_client_JavaScriptObject_2_classLit).typeName + '@' + toPowerOfTwoString(this.typeMarker$ == nullMethod || this.typeId$ == 2?this.hashCode$():this.$H || (this.$H = ++sNextHashId), 4);
}
 
function Object_0(){
}
 
_ = Object_0.prototype = {};
_.equals$ = equals_14;
_.getClass$ = getClass_230;
_.hashCode$ = hashCode_15;
_.toString$ = toString_21;
_.toString = function(){
return this.toString$();
}
;
_.typeMarker$ = nullMethod;
_.typeId$ = 1;
function $cancel(this$static){
if (!this$static.running) {
return;
}
$remove_10(animations, this$static);
$onCancel(this$static);
this$static.started = false;
this$static.running = false;
}
 
function $onCancel(this$static){
if (this$static.started) {
$onComplete(this$static);
}
}
 
function $run(this$static, duration, startTime){
$cancel(this$static);
this$static.running = true;
this$static.duration = duration;
this$static.startTime = startTime;
if ($update(this$static, (new Date()).getTime())) {
return;
}
if (!animations) {
animations = $ArrayList(new ArrayList());
animationTimer = ($clinit() , $clinit_57() , new Animation$1());
}
$add_8(animations, this$static);
if (animations.size == 1) {
$schedule(animationTimer, 25);
}
}
 
function $update(this$static, curTime){
var finished, progress;
finished = curTime >= this$static.startTime + this$static.duration;
if (this$static.started && !finished) {
progress = (curTime - this$static.startTime) / this$static.duration;
$onUpdate(this$static, (1 + Math.cos(3.141592653589793 + progress * 3.141592653589793)) / 2);
return false;
}
if (!this$static.started && curTime >= this$static.startTime) {
this$static.started = true;
this$static.offsetHeight = parseInt(this$static.curPanel.element['offsetHeight']) || 0;
this$static.offsetWidth = parseInt(this$static.curPanel.element['offsetWidth']) || 0;
this$static.curPanel.element.style['overflow'] = 'hidden';
$onUpdate(this$static, (1 + Math.cos(3.141592653589793)) / 2);
}
if (finished) {
$onComplete(this$static);
this$static.started = false;
this$static.running = false;
return true;
}
return false;
}
 
function getClass_1(){
return Lcom_google_gwt_animation_client_Animation_2_classLit;
}
 
function updateAnimations(){
var animation, animation$array, animation$index, animation$max, curAnimations, curTime;
curAnimations = initDim(_3Lcom_google_gwt_animation_client_Animation_2_classLit, 233, 46, animations.size, 0);
curAnimations = dynamicCast($toArray(animations, curAnimations), 2);
curTime = (new Date()).getTime();
for (animation$array = curAnimations , animation$index = 0 , animation$max = animation$array.length; animation$index < animation$max; ++animation$index) {
animation = animation$array[animation$index];
if (animation.running && $update(animation, curTime)) {
$remove_10(animations, animation);
}
}
if (animations.size > 0) {
$schedule(animationTimer, 25);
}
}
 
function Animation(){
}
 
_ = Animation.prototype = new Object_0();
_.getClass$ = getClass_1;
_.typeId$ = 3;
_.duration = -1;
_.running = false;
_.startTime = -1;
_.started = false;
var animationTimer = null, animations = null;
function $clinit_57(){
$clinit_57 = nullMethod;
timers = $ArrayList(new ArrayList());
addWindowCloseListener(new Timer$1());
}
 
function $cancel_1(this$static){
if (this$static.isRepeating) {
$wnd.clearInterval(this$static.timerId);
}
else {
$wnd.clearTimeout(this$static.timerId);
}
$remove_10(timers, this$static);
}
 
function $fireImpl(this$static){
if (!this$static.isRepeating) {
$remove_10(timers, this$static);
}
this$static.run();
}
 
function $schedule(this$static, delayMillis){
if (delayMillis <= 0) {
throw $IllegalArgumentException(new IllegalArgumentException(), 'must be positive');
}
$cancel_1(this$static);
this$static.isRepeating = false;
this$static.timerId = createTimeout(this$static, delayMillis);
$add_8(timers, this$static);
}
 
function createTimeout(timer, delay){
return $wnd.setTimeout(function(){
timer.fire();
}
, delay);
}
 
function fire(){
$fireImpl(this);
}
 
function getClass_29(){
return Lcom_google_gwt_user_client_Timer_2_classLit;
}
 
function Timer(){
}
 
_ = Timer.prototype = new Object_0();
_.fire = fire;
_.getClass$ = getClass_29;
_.typeId$ = 4;
_.isRepeating = false;
_.timerId = 0;
var timers;
function $clinit(){
$clinit = nullMethod;
$clinit_57();
}
 
function getClass_0(){
return Lcom_google_gwt_animation_client_Animation$1_2_classLit;
}
 
function run(){
updateAnimations();
}
 
function Animation$1(){
}
 
_ = Animation$1.prototype = new Timer();
_.getClass$ = getClass_0;
_.run = run;
_.typeId$ = 5;
function $initCause(this$static, cause){
if (this$static.cause) {
throw $IllegalStateException(new IllegalStateException(), "Can't overwrite cause");
}
if (cause == this$static) {
throw $IllegalArgumentException(new IllegalArgumentException(), 'Self-causation not permitted');
}
this$static.cause = cause;
return this$static;
}
 
function $printStackTrace(this$static){
var causeMessage, currentCause, msg;
msg = $StringBuffer(new StringBuffer());
currentCause = this$static;
while (currentCause) {
causeMessage = currentCause.detailMessage;
if (currentCause != this$static) {
$append_1(msg.builder, 'Caused by: ');
}
$append_0(msg, currentCause.getClass$().typeName);
$append_1(msg.builder, ': ');
$append_1(msg.builder, causeMessage == null?'(No exception detail)':causeMessage);
$append_1(msg.builder, '\n');
currentCause = currentCause.cause;
}
}
 
function $toString_3(this$static){
var className, msg;
className = this$static.getClass$().typeName;
msg = this$static.detailMessage;
if (msg != null) {
return className + ': ' + msg;
}
else {
return className;
}
}
 
function getClass_235(){
return Ljava_lang_Throwable_2_classLit;
}
 
function toString_25(){
return $toString_3(this);
}
 
function Throwable(){
}
 
_ = Throwable.prototype = new Object_0();
_.getClass$ = getClass_235;
_.toString$ = toString_25;
_.typeId$ = 6;
_.cause = null;
_.detailMessage = null;
function $Exception(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function getClass_220(){
return Ljava_lang_Exception_2_classLit;
}
 
function Exception(){
}
 
_ = Exception.prototype = new Throwable();
_.getClass$ = getClass_220;
_.typeId$ = 7;
function $RuntimeException(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function getClass_231(){
return Ljava_lang_RuntimeException_2_classLit;
}
 
function RuntimeException(){
}
 
_ = RuntimeException.prototype = new Exception();
_.getClass$ = getClass_231;
_.typeId$ = 8;
function $JavaScriptException(this$static, e){
$Exception(this$static, '(' + getName(e) + '): ' + getDescription(e) + (e != null && (e.typeMarker$ != nullMethod && e.typeId$ != 2)?getProperties0(dynamicCastJso(e)):''));
getName(e);
getDescription(e);
getException(e);
return this$static;
}
 
function getClass_2(){
return Lcom_google_gwt_core_client_JavaScriptException_2_classLit;
}
 
function getDescription(e){
if (e != null && (e.typeMarker$ != nullMethod && e.typeId$ != 2)) {
return getDescription0(dynamicCastJso(e));
}
else {
return e + '';
}
}
 
function getDescription0(e){
return e == null?null:e.message;
}
 
function getException(e){
if (e != null && (e.typeMarker$ != nullMethod && e.typeId$ != 2)) {
return dynamicCastJso(e);
}
else {
return null;
}
}
 
function getName(e){
if (e == null) {
return 'null';
}
else if (e != null && (e.typeMarker$ != nullMethod && e.typeId$ != 2)) {
return getName0(dynamicCastJso(e));
}
else if (e != null && canCast(e.typeId$, 1)) {
return 'String';
}
else {
return (e.typeMarker$ == nullMethod || e.typeId$ == 2?e.getClass$():Lcom_google_gwt_core_client_JavaScriptObject_2_classLit).typeName;
}
}
 
function getName0(e){
return e == null?null:e.name;
}
 
function getProperties0(e){
var result_0 = '';
try {
for (prop in e) {
if (prop != 'name' && (prop != 'message' && prop != 'toString')) {
try {
result_0 += '\n ' + prop + ': ' + e[prop];
}
catch (ignored) {
}
}
}
}
catch (ignored) {
}
return result_0;
}
 
function JavaScriptException(){
}
 
_ = JavaScriptException.prototype = new RuntimeException();
_.getClass$ = getClass_2;
_.typeId$ = 9;
function createFunction(){
return function(){
}
;
}
 
function equals__devirtual$(this$static, other){
return this$static.typeMarker$ == nullMethod || this$static.typeId$ == 2?this$static.equals$(other):(this$static == null?null:this$static) === (other == null?null:other);
}
 
function hashCode__devirtual$(this$static){
return this$static.typeMarker$ == nullMethod || this$static.typeId$ == 2?this$static.hashCode$():this$static.$H || (this$static.$H = ++sNextHashId);
}
 
function getHashCode(o){
return o.$H || (o.$H = ++sNextHashId);
}
 
var sNextHashId = 0;
function $getFirstChildElement(elem){
var child = elem.firstChild;
while (child && child.nodeType != 1)
child = child.nextSibling;
return child;
}
 
function $getParentElement(elem){
var parent = elem.parentNode;
if (parent == null) {
return null;
}
if (parent.nodeType != 1)
parent = null;
return parent;
}
 
function $setInnerText(elem, text){
while (elem.firstChild) {
elem.removeChild(elem.firstChild);
}
if (text != null) {
elem.appendChild($doc.createTextNode(text));
}
}
 
function $getAbsoluteLeft(elem){
if (Element.prototype.getBoundingClientRect) {
return elem.getBoundingClientRect().left + ($clinit_63() , documentRoot).scrollLeft | 0;
}
else {
return $doc.getBoxObjectFor(elem).screenX - $doc.getBoxObjectFor($doc.documentElement).screenX;
}
}
 
function $getAbsoluteTop(elem){
if (Element.prototype.getBoundingClientRect) {
return elem.getBoundingClientRect().top + ($clinit_63() , documentRoot).scrollTop | 0;
}
else {
return $doc.getBoxObjectFor(elem).screenY - $doc.getBoxObjectFor($doc.documentElement).screenY;
}
}
 
function $isOrHasChild(parent, child){
return parent === child || !!(parent.compareDocumentPosition(child) & 16);
}
 
function $Request(this$static, xmlHttpRequest, timeoutMillis, callback){
if (!xmlHttpRequest) {
throw new NullPointerException();
}
if (!callback) {
throw new NullPointerException();
}
if (timeoutMillis < 0) {
throw new IllegalArgumentException();
}
this$static.timeoutMillis = timeoutMillis;
this$static.xmlHttpRequest = xmlHttpRequest;
if (timeoutMillis > 0) {
this$static.timer = $Request$2(new Request$2(), this$static, callback);
$schedule(this$static.timer, timeoutMillis);
}
else {
this$static.timer = null;
}
return this$static;
}
 
function $cancel_0(this$static){
var xmlHttp;
if (this$static.xmlHttpRequest) {
xmlHttp = this$static.xmlHttpRequest;
this$static.xmlHttpRequest = null;
xmlHttp.onreadystatechange = nullFunc;
xmlHttp.abort();
$cancelTimer(this$static);
}
}
 
function $cancelTimer(this$static){
if (this$static.timer) {
$cancel_1(this$static.timer);
}
}
 
function $fireOnResponseReceivedImpl(this$static, callback){
var errorMsg, exception, response_0, xmlHttp, response;
if (!this$static.xmlHttpRequest) {
return;
}
$cancelTimer(this$static);
xmlHttp = this$static.xmlHttpRequest;
this$static.xmlHttpRequest = null;
errorMsg = getBrowserSpecificFailure(xmlHttp);
if (errorMsg != null) {
exception = $RuntimeException(new RuntimeException(), errorMsg);
callback.onError(this$static, exception);
}
else {
response_0 = (response = $Request$1(new Request$1(), xmlHttp) , response);
callback.onResponseReceived(this$static, response_0);
}
}
 
function $fireOnTimeout(this$static, callback){
if (!this$static.xmlHttpRequest) {
return;
}
$cancel_0(this$static);
callback.onError(this$static, $RequestTimeoutException(new RequestTimeoutException(), this$static.timeoutMillis));
}
 
function fireOnResponseReceived(callback){
$fireOnResponseReceivedImpl(this, callback);
}
 
function getClass_11(){
return Lcom_google_gwt_http_client_Request_2_classLit;
}
 
function Request(){
}
 
_ = Request.prototype = new Object_0();
_.fireOnResponseReceived = fireOnResponseReceived;
_.getClass$ = getClass_11;
_.typeId$ = 0;
_.timeoutMillis = 0;
_.timer = null;
_.xmlHttpRequest = null;
function getClass_12(){
return Lcom_google_gwt_http_client_Response_2_classLit;
}
 
function Response(){
}
 
_ = Response.prototype = new Object_0();
_.getClass$ = getClass_12;
_.typeId$ = 0;
function $Request$1(this$static, val$xmlHttpRequest){
this$static.val$xmlHttpRequest = val$xmlHttpRequest;
return this$static;
}
 
function getClass_4(){
return Lcom_google_gwt_http_client_Request$1_2_classLit;
}
 
function Request$1(){
}
 
_ = Request$1.prototype = new Response();
_.getClass$ = getClass_4;
_.typeId$ = 0;
_.val$xmlHttpRequest = null;
function $clinit_13(){
$clinit_13 = nullMethod;
$clinit_57();
}
 
function $Request$2(this$static, this$0, val$callback){
$clinit_13();
this$static.this$0 = this$0;
this$static.val$callback = val$callback;
return this$static;
}
 
function getClass_5(){
return Lcom_google_gwt_http_client_Request$2_2_classLit;
}
 
function run_0(){
$fireOnTimeout(this.this$0, this.val$callback);
}
 
function Request$2(){
}
 
_ = Request$2.prototype = new Timer();
_.getClass$ = getClass_5;
_.run = run_0;
_.typeId$ = 10;
_.this$0 = null;
_.val$callback = null;
function $clinit_15(){
$clinit_15 = nullMethod;
GET = $RequestBuilder$Method(new RequestBuilder$Method(), 'GET');
POST = $RequestBuilder$Method(new RequestBuilder$Method(), 'POST');
$HTTPRequestImpl(new HTTPRequestImpl());
}
 
function $RequestBuilder(this$static, httpMethod, url){
$clinit_15();
$RequestBuilder_0(this$static, !httpMethod?null:httpMethod.name_0, url);
return this$static;
}
 
function $RequestBuilder_0(this$static, httpMethod, url){
$clinit_15();
throwIfEmptyOrNull('httpMethod', httpMethod);
throwIfEmptyOrNull('url', url);
this$static.httpMethod = httpMethod;
this$static.url = url;
return this$static;
}
 
function $doSend(this$static, requestData, callback){
var openError, request, requestPermissionException, sendError, xmlHttpRequest;
xmlHttpRequest = new XMLHttpRequest();
openError = open(xmlHttpRequest, this$static.httpMethod, this$static.url, true);
if (openError != null) {
requestPermissionException = $RequestPermissionException(new RequestPermissionException(), this$static.url);
$initCause(requestPermissionException, $RequestException(new RequestException(), openError));
throw requestPermissionException;
}
setRequestHeader(xmlHttpRequest, 'Content-Type', 'text/plain; charset=utf-8');
request = $Request(new Request(), xmlHttpRequest, this$static.timeoutMillis, callback);
sendError = send(xmlHttpRequest, request, requestData, callback);
if (sendError != null) {
throw $RequestException(new RequestException(), sendError);
}
return request;
}
 
function $sendRequest(this$static, requestData, callback){
throwIfNull('callback', callback);
return $doSend(this$static, requestData, callback);
}
 
function getClass_7(){
return Lcom_google_gwt_http_client_RequestBuilder_2_classLit;
}
 
function RequestBuilder(){
}
 
_ = RequestBuilder.prototype = new Object_0();
_.getClass$ = getClass_7;
_.typeId$ = 0;
_.httpMethod = null;
_.timeoutMillis = 0;
_.url = null;
var GET, POST;
function $RequestBuilder$Method(this$static, name){
this$static.name_0 = name;
return this$static;
}
 
function getClass_6(){
return Lcom_google_gwt_http_client_RequestBuilder$Method_2_classLit;
}
 
function toString_1(){
return this.name_0;
}
 
function RequestBuilder$Method(){
}
 
_ = RequestBuilder$Method.prototype = new Object_0();
_.getClass$ = getClass_6;
_.toString$ = toString_1;
_.typeId$ = 0;
_.name_0 = null;
function $RequestException(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function getClass_8(){
return Lcom_google_gwt_http_client_RequestException_2_classLit;
}
 
function RequestException(){
}
 
_ = RequestException.prototype = new Exception();
_.getClass$ = getClass_8;
_.typeId$ = 11;
function $RequestPermissionException(this$static, url){
this$static.detailMessage = 'The URL ' + url + ' is invalid or violates the same-origin security restriction';
return this$static;
}
 
function getClass_9(){
return Lcom_google_gwt_http_client_RequestPermissionException_2_classLit;
}
 
function RequestPermissionException(){
}
 
_ = RequestPermissionException.prototype = new RequestException();
_.getClass$ = getClass_9;
_.typeId$ = 12;
function $RequestTimeoutException(this$static, timeoutMillis){
this$static.detailMessage = 'A request timeout has expired after ' + ('' + timeoutMillis) + ' ms';
return this$static;
}
 
function getClass_10(){
return Lcom_google_gwt_http_client_RequestTimeoutException_2_classLit;
}
 
function RequestTimeoutException(){
}
 
_ = RequestTimeoutException.prototype = new RequestException();
_.getClass$ = getClass_10;
_.typeId$ = 13;
function throwIfEmptyOrNull(name, value){
throwIfNull(name, value);
if (0 == $trim(value).length) {
throw $IllegalArgumentException(new IllegalArgumentException(), name + ' cannot be empty');
}
}
 
function throwIfNull(name, value){
if (null == value) {
throw $NullPointerException(new NullPointerException(), name + ' cannot be null');
}
}
 
function getBrowserSpecificFailure(xmlHttpRequest){
try {
if (xmlHttpRequest.status === undefined) {
return 'XmlHttpRequest.status == undefined, please see Safari bug ' + 'http://bugs.webkit.org/show_bug.cgi?id=3810 for more details';
}
return null;
}
catch (e) {
return 'Unable to read XmlHttpRequest.status; likely causes are a ' + 'networking error or bad cross-domain request. Please see ' + 'https://bugzilla.mozilla.org/show_bug.cgi?id=238559 for more ' + 'details';
}
}
 
function open(xmlHttpRequest, httpMethod, url, async){
try {
xmlHttpRequest.open(httpMethod, url, async);
return null;
}
catch (e) {
return e.message || e.toString();
}
}
 
function send(xmlHttpRequest, httpRequest, requestData, callback){
xmlHttpRequest.onreadystatechange = function(){
if (xmlHttpRequest.readyState == 4) {
$wnd.setTimeout(function(){
xmlHttpRequest.onreadystatechange = nullFunc;
}
, 0);
httpRequest.fireOnResponseReceived(callback);
}
}
;
try {
xmlHttpRequest.send(requestData);
return null;
}
catch (e) {
xmlHttpRequest.onreadystatechange = nullFunc;
return e.message || e.toString();
}
}
 
function setRequestHeader(xmlHttpRequest, header, value){
try {
xmlHttpRequest.setRequestHeader(header, value);
return null;
}
catch (e) {
return e.message || e.toString();
}
}
 
function $clinit_24(){
$clinit_24 = nullMethod;
cache = $HashMap(new HashMap());
}
 
function $Dictionary(this$static, name){
$clinit_24();
if (name == null || $equals_1('', name)) {
throw $IllegalArgumentException(new IllegalArgumentException(), 'Cannot create a Dictionary with a null or empty name');
}
this$static.label = 'Dictionary ' + name;
$attach(this$static, name);
if (!this$static.dict) {
throw $MissingResourceException(new MissingResourceException(), "Cannot find JavaScript object with the name '" + name + "'");
}
return this$static;
}
 
function $addKeys(this$static, s){
for (x in this$static.dict) {
s.add_2(x);
}
}
 
function $attach(this$static, name){
try {
if (typeof $wnd[name] != 'object') {
resourceErrorBadType(name);
}
this$static.dict = $wnd[name];
}
catch (e) {
resourceErrorBadType(name);
}
}
 
function $get(this$static, key){
var value = this$static.dict[key];
if (value == null || !Object.prototype.hasOwnProperty.call(this$static.dict, key)) {
this$static.resourceError(key);
}
return String(value);
}
 
function getClass_13(){
return Lcom_google_gwt_i18n_client_Dictionary_2_classLit;
}
 
function getDictionary(name){
$clinit_24();
var target;
target = dynamicCast($get_2(cache, name), 3);
if (!target) {
target = $Dictionary(new Dictionary(), name);
$put(cache, name, target);
}
return target;
}
 
function resourceError(key){
var error, s_0, s;
s_0 = (s = $HashSet(new HashSet()) , $addKeys(this, s) , s);
error = "Cannot find '" + key + "' in " + this;
if (s_0.map.size < 20) {
error += '\n keys found: ' + s_0;
}
throw $MissingResourceException(new MissingResourceException(), error);
}
 
function resourceErrorBadType(name){
throw $MissingResourceException(new MissingResourceException(), "'" + name + "' is not a JavaScript object and cannot be used as a Dictionary");
}
 
function toString_2(){
return this.label;
}
 
function Dictionary(){
}
 
_ = Dictionary.prototype = new Object_0();
_.getClass$ = getClass_13;
_.resourceError = resourceError;
_.toString$ = toString_2;
_.typeId$ = 14;
_.dict = null;
_.label = null;
var cache;
function getClass_21(){
return Lcom_google_gwt_json_client_JSONValue_2_classLit;
}
 
function isArray_0(){
return null;
}
 
function isObject_0(){
return null;
}
 
function isString_0(){
return null;
}
 
function JSONValue(){
}
 
_ = JSONValue.prototype = new Object_0();
_.getClass$ = getClass_21;
_.isArray = isArray_0;
_.isObject = isObject_0;
_.isString = isString_0;
_.typeId$ = 0;
function $JSONArray(this$static, arr){
this$static.jsArray = arr;
return this$static;
}
 
function $get_0(this$static, index){
var v = this$static.jsArray[index];
var func = ($clinit_32() , typeMap)[typeof v];
return func?func(v):throwUnknownTypeException(typeof v);
}
 
function equals_0(other){
if (!(other != null && canCast(other.typeId$, 4))) {
return false;
}
return this.jsArray == dynamicCast(other, 4).jsArray;
}
 
function getClass_14(){
return Lcom_google_gwt_json_client_JSONArray_2_classLit;
}
 
function hashCode_1(){
return getHashCode(this.jsArray);
}
 
function isArray(){
return this;
}
 
function toString_3(){
var c, i, sb;
sb = $StringBuffer(new StringBuffer());
$append_1(sb.builder, '[');
for (i = 0 , c = this.jsArray.length; i < c; ++i) {
if (i > 0) {
$append_1(sb.builder, ',');
}
$append(sb, $get_0(this, i));
}
$append_1(sb.builder, ']');
return $toString_2(sb.builder);
}
 
function JSONArray(){
}
 
_ = JSONArray.prototype = new JSONValue();
_.equals$ = equals_0;
_.getClass$ = getClass_14;
_.hashCode$ = hashCode_1;
_.isArray = isArray;
_.toString$ = toString_3;
_.typeId$ = 15;
_.jsArray = null;
function $clinit_27(){
$clinit_27 = nullMethod;
FALSE = $JSONBoolean(new JSONBoolean(), false);
TRUE = $JSONBoolean(new JSONBoolean(), true);
}
 
function $JSONBoolean(this$static, value){
$clinit_27();
this$static.value = value;
return this$static;
}
 
function getClass_15(){
return Lcom_google_gwt_json_client_JSONBoolean_2_classLit;
}
 
function getInstance(b){
$clinit_27();
if (b) {
return TRUE;
}
else {
return FALSE;
}
}
 
function toString_4(){
return $clinit_302() , '' + this.value;
}
 
function JSONBoolean(){
}
 
_ = JSONBoolean.prototype = new JSONValue();
_.getClass$ = getClass_15;
_.toString$ = toString_4;
_.typeId$ = 16;
_.value = false;
var FALSE, TRUE;
function $JSONException(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function $JSONException_0(this$static, cause){
this$static.detailMessage = !cause?null:$toString_3(cause);
this$static.cause = cause;
return this$static;
}
 
function getClass_16(){
return Lcom_google_gwt_json_client_JSONException_2_classLit;
}
 
function JSONException(){
}
 
_ = JSONException.prototype = new RuntimeException();
_.getClass$ = getClass_16;
_.typeId$ = 17;
function $clinit_29(){
$clinit_29 = nullMethod;
instance = ($clinit_29() , new JSONNull());
}
 
function getClass_17(){
return Lcom_google_gwt_json_client_JSONNull_2_classLit;
}
 
function toString_5(){
return 'null';
}
 
function JSONNull(){
}
 
_ = JSONNull.prototype = new JSONValue();
_.getClass$ = getClass_17;
_.toString$ = toString_5;
_.typeId$ = 0;
var instance;
function $JSONNumber(this$static, value){
this$static.value = value;
return this$static;
}
 
function equals_1(other){
if (!(other != null && canCast(other.typeId$, 5))) {
return false;
}
return this.value == dynamicCast(other, 5).value;
}
 
function getClass_18(){
return Lcom_google_gwt_json_client_JSONNumber_2_classLit;
}
 
function hashCode_2(){
return ~~Math.max(Math.min($Double(new Double(), this.value).value, 2147483647), -2147483648);
}
 
function toString_6(){
return this.value + '';
}
 
function JSONNumber(){
}
 
_ = JSONNumber.prototype = new JSONValue();
_.equals$ = equals_1;
_.getClass$ = getClass_18;
_.hashCode$ = hashCode_2;
_.toString$ = toString_6;
_.typeId$ = 18;
_.value = 0;
function $JSONObject(this$static, jsValue){
this$static.jsObject = jsValue;
return this$static;
}
 
function $addAllKeys(this$static, s){
var jsObject = this$static.jsObject;
for (var key in jsObject) {
s.add_2(key);
}
}
 
function $get_1(this$static, key){
var v, func;
if (key == null) {
throw new NullPointerException();
}
return v = this$static.jsObject[key] , func = ($clinit_32() , typeMap)[typeof v] , func?func(v):throwUnknownTypeException(typeof v);
}
 
function equals_2(other){
if (!(other != null && canCast(other.typeId$, 6))) {
return false;
}
return this.jsObject == dynamicCast(other, 6).jsObject;
}
 
function getClass_19(){
return Lcom_google_gwt_json_client_JSONObject_2_classLit;
}
 
function hashCode_3(){
return getHashCode(this.jsObject);
}
 
function isObject(){
return this;
}
 
function toString_7(){
var first, key, key$iterator, keys, sb;
sb = $StringBuffer(new StringBuffer());
$append_1(sb.builder, '{');
first = true;
keys = $ArrayList(new ArrayList());
$addAllKeys(this, keys);
for (key$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), keys); key$iterator.i < key$iterator.this$0.size_0();) {
key = dynamicCast($next_1(key$iterator), 1);
if (first) {
first = false;
}
else {
$append_1(sb.builder, ', ');
}
$append_0(sb, escapeValue(key));
$append_1(sb.builder, ':');
$append(sb, $get_1(this, key));
}
$append_1(sb.builder, '}');
return $toString_2(sb.builder);
}
 
function JSONObject(){
}
 
_ = JSONObject.prototype = new JSONValue();
_.equals$ = equals_2;
_.getClass$ = getClass_19;
_.hashCode$ = hashCode_3;
_.isObject = isObject;
_.toString$ = toString_7;
_.typeId$ = 19;
_.jsObject = null;
function $clinit_32(){
$clinit_32 = nullMethod;
typeMap = {'boolean':createBoolean, number:createNumber, string:createString, object:createObject_0, 'function':createObject_0, undefined:createUndefined};
}
 
function createBoolean(v){
return getInstance(v);
}
 
function createNumber(v){
return $JSONNumber(new JSONNumber(), v);
}
 
function createObject_0(o){
if (!o) {
return $clinit_29() , instance;
}
var v = o.valueOf?o.valueOf():o;
if (v !== o) {
var func = typeMap[typeof v];
return func?func(v):throwUnknownTypeException(typeof v);
}
else if (o instanceof Array || o instanceof $wnd.Array) {
return $JSONArray(new JSONArray(), o);
}
else {
return $JSONObject(new JSONObject(), o);
}
}
 
function createString(v){
return $JSONString(new JSONString(), v);
}
 
function createUndefined(){
return null;
}
 
function parse(jsonString){
var v, func;
$clinit_32();
var $e0, ex;
if (jsonString == null) {
throw new NullPointerException();
}
if (jsonString.length == 0) {
throw $IllegalArgumentException(new IllegalArgumentException(), 'empty argument');
}
try {
return v = eval('(' + jsonString + ')') , func = typeMap[typeof v] , func?func(v):throwUnknownTypeException(typeof v);
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 7)) {
ex = $e0;
throw $JSONException_0(new JSONException(), ex);
}
else
throw $e0;
}
}
 
function throwUnknownTypeException(typeString){
$clinit_32();
throw $JSONException(new JSONException(), "Unexpected typeof result '" + typeString + "'; please report this bug to the GWT team");
}
 
var typeMap;
function $clinit_33(){
var out;
$clinit_33 = nullMethod;
escapeTable = (out = ['\\u0000', '\\u0001', '\\u0002', '\\u0003', '\\u0004', '\\u0005', '\\u0006', '\\u0007', '\\b', '\\t', '\\n', '\\u000B', '\\f', '\\r', '\\u000E', '\\u000F', '\\u0010', '\\u0011', '\\u0012', '\\u0013', '\\u0014', '\\u0015', '\\u0016', '\\u0017', '\\u0018', '\\u0019', '\\u001A', '\\u001B', '\\u001C', '\\u001D', '\\u001E', '\\u001F'] , out[34] = '\\"' , out[92] = '\\\\' , out);
}
 
function $JSONString(this$static, value){
$clinit_33();
if (value == null) {
throw new NullPointerException();
}
this$static.value = value;
return this$static;
}
 
function equals_3(other){
if (!(other != null && canCast(other.typeId$, 8))) {
return false;
}
return $equals_1(this.value, dynamicCast(other, 8).value);
}
 
function escapeValue(toEscape){
$clinit_33();
var s = toEscape.replace(/[\x00-\x1F"\\]/g, function(x_0){
var lookedUp;
return lookedUp = escapeTable[x_0.charCodeAt(0)] , lookedUp == null?x_0:lookedUp;
}
);
return '"' + s + '"';
}
 
function getClass_20(){
return Lcom_google_gwt_json_client_JSONString_2_classLit;
}
 
function hashCode_4(){
return getHashCode_0(this.value);
}
 
function isString(){
return this;
}
 
function toString_8(){
return escapeValue(this.value);
}
 
function JSONString(){
}
 
_ = JSONString.prototype = new JSONValue();
_.equals$ = equals_3;
_.getClass$ = getClass_20;
_.hashCode$ = hashCode_4;
_.isString = isString;
_.toString$ = toString_8;
_.typeId$ = 20;
_.value = null;
var escapeTable;
function createFromSeed(seedType, length){
var seedArray = [null, 0, false, [0, 0]];
var value = seedArray[seedType];
var array = new Array(length);
for (var i = 0; i < length; ++i) {
array[i] = value;
}
return array;
}
 
function getClass_22(){
return this.arrayClass$;
}
 
function initDim(arrayClass, typeId, queryId, length, seedType){
var result_0;
result_0 = createFromSeed(seedType, length);
initValues(arrayClass, typeId, queryId, result_0);
return result_0;
}
 
function initDims_0(arrayClasses, typeIdExprs, queryIdExprs, dimExprs, index, count, seedType){
var i, isLastDim, length, result_0;
length = dimExprs[index];
isLastDim = index == count - 1;
result_0 = createFromSeed(isLastDim?seedType:0, length);
initValues(arrayClasses[index], typeIdExprs[index], queryIdExprs[index], result_0);
if (!isLastDim) {
++index;
for (i = 0; i < length; ++i) {
result_0[i] = initDims_0(arrayClasses, typeIdExprs, queryIdExprs, dimExprs, index, count, seedType);
}
}
return result_0;
}
 
function initValues(arrayClass, typeId, queryId, array){
if (!protoTypeArray_0) {
protoTypeArray_0 = new Array_0();
}
wrapArray(array, protoTypeArray_0);
array.arrayClass$ = arrayClass;
array.typeId$ = typeId;
array.queryId$ = queryId;
return array;
}
 
function setCheck(array, index, value){
if (value != null) {
if (array.queryId$ > 0 && !canCastUnsafe(value.typeId$, array.queryId$)) {
throw new ArrayStoreException();
}
if (array.queryId$ < 0 && (value.typeMarker$ == nullMethod || value.typeId$ == 2)) {
throw new ArrayStoreException();
}
}
return array[index] = value;
}
 
function wrapArray(array, protoTypeArray){
for (var i in protoTypeArray) {
var toCopy = protoTypeArray[i];
if (toCopy) {
array[i] = toCopy;
}
}
return array;
}
 
function Array_0(){
}
 
_ = Array_0.prototype = new Object_0();
_.getClass$ = getClass_22;
_.typeId$ = 0;
_.arrayClass$ = null;
_.length = 0;
_.queryId$ = 0;
var protoTypeArray_0 = null;
function canCast(srcId, dstId){
return srcId && !!typeIdArray[srcId][dstId];
}
 
function canCastUnsafe(srcId, dstId){
return srcId && typeIdArray[srcId][dstId];
}
 
function dynamicCast(src, dstId){
if (src != null && !canCastUnsafe(src.typeId$, dstId)) {
throw new ClassCastException();
}
return src;
}
 
function dynamicCastJso(src){
if (src != null && (src.typeMarker$ == nullMethod || src.typeId$ == 2)) {
throw new ClassCastException();
}
return src;
}
 
function instanceOf(src, dstId){
return src != null && canCast(src.typeId$, dstId);
}
 
function round_int(x_0){
return ~~Math.max(Math.min(x_0, 2147483647), -2147483648);
}
 
var typeIdArray = [{}, {}, {1:1, 53:1, 54:1, 55:1}, {46:1}, {12:1}, {12:1}, {9:1, 53:1}, {9:1, 53:1}, {9:1, 53:1}, {7:1, 9:1, 53:1}, {12:1}, {9:1, 53:1, 66:1}, {9:1, 53:1, 66:1}, {9:1, 53:1, 66:1}, {3:1}, {4:1}, {67:1}, {9:1, 53:1}, {5:1}, {6:1}, {8:1}, {9:1, 53:1}, {12:1}, {12:1}, {13:1}, {24:1}, {14:1, 17:1, 24:1}, {14:1, 17:1, 24:1}, {14:1, 17:1, 24:1}, {14:1, 17:1, 24:1}, {14:1, 17:1, 20:1, 24:1}, {14:1, 17:1, 20:1, 24:1}, {14:1, 17:1, 20:1, 24:1}, {45:1}, {45:1, 53:1}, {45:1, 53:1}, {14:1, 17:1, 24:1}, {11:1, 14:1, 17:1, 24:1}, {11:1, 14:1, 17:1, 24:1}, {14:1, 17:1, 24:1}, {11:1, 14:1, 16:1, 17:1, 24:1}, {14:1, 17:1, 20:1, 22:1, 23:1, 24:1}, {14:1, 17:1, 20:1, 22:1, 23:1, 24:1}, {14:1, 17:1, 19:1, 20:1, 21:1, 22:1, 23:1, 24:1}, {16:1}, {45:1, 53:1}, {53:1, 55:1}, {53:1, 55:1}, {46:1}, {10:1}, {14:1, 17:1, 18:1, 24:1}, {13:1}, {14:1, 17:1, 18:1, 24:1}, {10:1}, {33:1}, {33:1, 47:1}, {33:1}, {33:1}, {33:1}, {33:1, 47:1}, {33:1, 47:1}, {33:1}, {33:1, 48:1}, {33:1}, {33:1, 48:1, 49:1}, {33:1}, {33:1}, {33:1}, {33:1}, {33:1, 37:1}, {33:1, 37:1}, {33:1}, {33:1, 34:1}, {33:1, 50:1}, {35:1}, {33:1}, {33:1, 61:1}, {33:1, 56:1, 61:1}, {33:1, 37:1}, {33:1, 70:1}, {33:1, 38:1}, {33:1, 38:1}, {33:1, 38:1}, {33:1, 38:1}, {33:1}, {33:1, 47:1}, {33:1, 38:1}, {33:1, 38:1}, {33:1, 47:1}, {33:1}, {14:1, 17:1, 24:1, 44:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {10:1}, {10:1}, {10:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {33:1, 47:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {33:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 44:1}, {14:1, 17:1, 24:1, 44:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 44:1}, {14:1, 17:1, 24:1, 44:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {33:1}, {33:1}, {33:1, 47:1, 51:1}, {33:1, 47:1, 51:1, 52:1}, {33:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {33:1, 62:1}, {33:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {33:1}, {33:1}, {33:1, 47:1}, {33:1, 47:1}, {33:1, 47:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1}, {33:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {33:1, 34:1, 71:1}, {33:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {9:1, 53:1}, {9:1, 53:1}, {9:1, 53:1}, {9:1, 53:1}, {42:1, 53:1, 55:1}, {9:1, 53:1}, {53:1}, {41:1, 53:1, 55:1}, {40:1, 53:1, 55:1}, {9:1, 53:1}, {9:1, 53:1}, {9:1, 53:1}, {39:1, 53:1, 55:1}, {53:1, 55:1, 57:1}, {9:1, 53:1}, {9:1, 53:1, 73:1}, {54:1}, {54:1}, {9:1, 53:1}, {59:1}, {59:1}, {60:1}, {60:1}, {58:1}, {58:1}, {58:1}, {60:1}, {43:1, 53:1, 55:1}, {53:1, 59:1}, {53:1, 60:1}, {58:1}, {9:1, 53:1}, {9:1, 53:1}, {45:1, 53:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {53:1, 59:1, 63:1}, {53:1, 59:1, 64:1}, {53:1, 59:1, 68:1}, {53:1, 59:1, 74:1}, {53:1, 59:1, 76:1}, {69:1}, {75:1}, {77:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {16:1}, {15:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {15:1}, {11:1, 14:1, 16:1, 17:1, 24:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {33:1, 38:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {33:1, 38:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1}, {14:1, 17:1, 24:1}, {14:1, 17:1, 24:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {33:1, 38:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 24:1, 25:1, 26:1, 72:1}, {14:1, 17:1, 19:1, 20:1, 21:1, 22:1, 23:1, 24:1}, {15:1}, {15:1}, {33:1, 38:1}, {14:1, 17:1, 24:1, 25:1, 26:1}, {2:1, 31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {27:1}, {65:1}, {28:1, 31:1}, {29:1, 31:1}, {30:1, 31:1}, {31:1}, {28:1, 29:1, 30:1, 31:1, 32:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1}, {31:1, 78:1}];
function caught(e){
if (e != null && canCast(e.typeId$, 9)) {
return e;
}
return $JavaScriptException(new JavaScriptException(), e);
}
 
function add_0(a, b){
var newHigh, newLow;
newHigh = a[1] + b[1];
newLow = a[0] + b[0];
return create(newLow, newHigh);
}
 
function addTimes(accum, a, b){
if (a == 0) {
return accum;
}
if (b == 0) {
return accum;
}
return add_0(accum, create(a * b, 0));
}
 
function compare_0(a, b){
var nega, negb;
if (a[0] == b[0] && a[1] == b[1]) {
return 0;
}
nega = a[1] < 0;
negb = b[1] < 0;
if (nega && !negb) {
return -1;
}
if (!nega && negb) {
return 1;
}
if (sub(a, b)[1] < 0) {
return -1;
}
else {
return 1;
}
}
 
function create(valueLow, valueHigh){
var diffHigh, diffLow;
valueHigh %= 1.8446744073709552E19;
valueLow %= 1.8446744073709552E19;
diffHigh = valueHigh % 4294967296;
diffLow = Math.floor(valueLow / 4294967296) * 4294967296;
valueHigh = valueHigh - diffHigh + diffLow;
valueLow = valueLow - diffLow + diffHigh;
while (valueLow < 0) {
valueLow += 4294967296;
valueHigh -= 4294967296;
}
while (valueLow > 4294967295) {
valueLow -= 4294967296;
valueHigh += 4294967296;
}
valueHigh = valueHigh % 1.8446744073709552E19;
while (valueHigh > 9223372032559808512) {
valueHigh -= 1.8446744073709552E19;
}
while (valueHigh < -9223372036854775808) {
valueHigh += 1.8446744073709552E19;
}
return [valueLow, valueHigh];
}
 
function div_0(a, b){
var approx, deltaRem, deltaResult, halfa, rem, result_0;
if (b[0] == 0 && b[1] == 0) {
throw $ArithmeticException(new ArithmeticException(), '/ by zero');
}
if (a[0] == 0 && a[1] == 0) {
return $clinit_40() , ZERO;
}
if (eq(a, ($clinit_40() , MIN_VALUE))) {
if (eq(b, ONE) || eq(b, NEG_ONE)) {
return MIN_VALUE;
}
halfa = shr(a, 1);
approx = shl(div_0(halfa, b), 1);
rem = sub(a, mul(b, approx));
return add_0(approx, div_0(rem, b));
}
if (eq(b, MIN_VALUE)) {
return ZERO;
}
if (a[1] < 0) {
if (b[1] < 0) {
return div_0(neg(a), neg(b));
}
else {
return neg(div_0(neg(a), b));
}
}
if (b[1] < 0) {
return neg(div_0(a, neg(b)));
}
result_0 = ZERO;
rem = a;
while (compare_0(rem, b) >= 0) {
deltaResult = fromDouble(Math.floor(toDoubleRoundDown(rem) / toDoubleRoundUp(b)));
if (deltaResult[0] == 0 && deltaResult[1] == 0) {
deltaResult = ONE;
}
deltaRem = mul(deltaResult, b);
result_0 = add_0(result_0, deltaResult);
rem = sub(rem, deltaRem);
}
return result_0;
}
 
function eq(a, b){
return a[0] == b[0] && a[1] == b[1];
}
 
function fromDouble(value){
if (isNaN(value)) {
return $clinit_40() , ZERO;
}
if (value < -9223372036854775808) {
return $clinit_40() , MIN_VALUE;
}
if (value >= 9223372036854775807) {
return $clinit_40() , MAX_VALUE;
}
if (value > 0) {
return create(Math.floor(value), 0);
}
else {
return create(Math.ceil(value), 0);
}
}
 
function fromInt(value){
var rebase, result_0;
if (value > -129 && value < 128) {
rebase = value + 128;
result_0 = ($clinit_39() , boxedValues)[rebase];
if (result_0 == null) {
result_0 = boxedValues[rebase] = internalFromInt(value);
}
return result_0;
}
return internalFromInt(value);
}
 
function internalFromInt(value){
if (value >= 0) {
return [value, 0];
}
else {
return [value + 4294967296, -4294967296];
}
}
 
function lowBits_0(a){
if (a[0] >= 2147483648) {
return ~~Math.max(Math.min(a[0] - 4294967296, 2147483647), -2147483648);
}
else {
return ~~Math.max(Math.min(a[0], 2147483647), -2147483648);
}
}
 
function makeFromBits(highBits, lowBits){
var high, low;
high = highBits * 4294967296;
low = lowBits;
if (lowBits < 0) {
low += 4294967296;
}
return [low, high];
}
 
function mod(a, b){
return sub(a, mul(div_0(a, b), b));
}
 
function mul(a, b){
var a1, a2, a3, a4, b1, b2, b3, b4, res;
if (a[0] == 0 && a[1] == 0) {
return $clinit_40() , ZERO;
}
if (b[0] == 0 && b[1] == 0) {
return $clinit_40() , ZERO;
}
if (eq(a, ($clinit_40() , MIN_VALUE))) {
return multByMinValue(b);
}
if (eq(b, MIN_VALUE)) {
return multByMinValue(a);
}
if (a[1] < 0) {
if (b[1] < 0) {
return mul(neg(a), neg(b));
}
else {
return neg(mul(neg(a), b));
}
}
if (b[1] < 0) {
return neg(mul(a, neg(b)));
}
if (compare_0(a, TWO_PWR_24) < 0 && compare_0(b, TWO_PWR_24) < 0) {
return create((a[1] + a[0]) * (b[1] + b[0]), 0);
}
a3 = a[1] % 281474976710656;
a4 = a[1] - a3;
a1 = a[0] % 65536;
a2 = a[0] - a1;
b3 = b[1] % 281474976710656;
b4 = b[1] - b3;
b1 = b[0] % 65536;
b2 = b[0] - b1;
res = ZERO;
res = addTimes(res, a4, b1);
res = addTimes(res, a3, b2);
res = addTimes(res, a3, b1);
res = addTimes(res, a2, b3);
res = addTimes(res, a2, b2);
res = addTimes(res, a2, b1);
res = addTimes(res, a1, b4);
res = addTimes(res, a1, b3);
res = addTimes(res, a1, b2);
res = addTimes(res, a1, b1);
return res;
}
 
function multByMinValue(a){
if ((lowBits_0(a) & 1) == 1) {
return $clinit_40() , MIN_VALUE;
}
else {
return $clinit_40() , ZERO;
}
}
 
function neg(a){
var newHigh, newLow;
if (eq(a, ($clinit_40() , MIN_VALUE))) {
return MIN_VALUE;
}
newHigh = -a[1];
newLow = -a[0];
if (newLow > 4294967295) {
newLow -= 4294967296;
newHigh += 4294967296;
}
if (newLow < 0) {
newLow += 4294967296;
newHigh -= 4294967296;
}
return [newLow, newHigh];
}
 
function pwrAsDouble(n_0){
if (n_0 <= 30) {
return 1 << n_0;
}
else {
return pwrAsDouble(30) * pwrAsDouble(n_0 - 30);
}
}
 
function shl(a, n_0){
var diff, newHigh, newLow, twoToN;
n_0 &= 63;
if (eq(a, ($clinit_40() , MIN_VALUE))) {
if (n_0 == 0) {
return a;
}
else {
return ZERO;
}
}
if (a[1] < 0) {
return neg(shl(neg(a), n_0));
}
twoToN = pwrAsDouble(n_0);
newHigh = a[1] * twoToN % 1.8446744073709552E19;
newLow = a[0] * twoToN;
diff = newLow - newLow % 4294967296;
newHigh += diff;
newLow -= diff;
if (newHigh >= 9223372036854775807) {
newHigh -= 1.8446744073709552E19;
}
return [newLow, newHigh];
}
 
function shr(a, n_0){
var newHigh, newLow, shiftFact;
n_0 &= 63;
shiftFact = pwrAsDouble(n_0);
newHigh = a[1] / shiftFact;
newLow = Math.floor(a[0] / shiftFact);
return create(newLow, newHigh);
}
 
function shru(a, n_0){
var sr;
n_0 &= 63;
sr = shr(a, n_0);
if (a[1] < 0) {
sr = add_0(sr, shl(($clinit_40() , TWO), 63 - n_0));
}
return sr;
}
 
function sub(a, b){
var newHigh, newLow;
newHigh = a[1] - b[1];
newLow = a[0] - b[0];
return create(newLow, newHigh);
}
 
function toDouble(a){
return a[1] + a[0];
}
 
function toDoubleRoundDown(a){
var diff, magnitute, toSubtract;
magnitute = round_int(Math.log(a[1]) / ($clinit_40() , LN_2));
if (magnitute <= 48) {
return a[1] + a[0];
}
else {
diff = magnitute - 48;
toSubtract = (1 << diff) - 1;
return a[1] + (a[0] - toSubtract);
}
}
 
function toDoubleRoundUp(a){
var diff, magnitute, toAdd;
magnitute = round_int(Math.log(a[1]) / ($clinit_40() , LN_2));
if (magnitute <= 48) {
return a[1] + a[0];
}
else {
diff = magnitute - 48;
toAdd = (1 << diff) - 1;
return a[1] + (a[0] + toAdd);
}
}
 
function toString_9(a){
var digits, rem, res, zeroesNeeded;
if (a[0] == 0 && a[1] == 0) {
return '0';
}
if (eq(a, ($clinit_40() , MIN_VALUE))) {
return '-9223372036854775808';
}
if (a[1] < 0) {
return '-' + toString_9(neg(a));
}
rem = a;
res = '';
while (!(rem[0] == 0 && rem[1] == 0)) {
digits = '' + lowBits_0(mod(rem, fromInt(1000000000)));
rem = div_0(rem, fromInt(1000000000));
if (!(rem[0] == 0 && rem[1] == 0)) {
zeroesNeeded = 9 - digits.length;
for (; zeroesNeeded > 0; --zeroesNeeded) {
digits = '0' + digits;
}
}
res = digits + res;
}
return res;
}
 
function xor(a, b){
return makeFromBits(~~Math.max(Math.min(a[1] / 4294967296, 2147483647), -2147483648) ^ ~~Math.max(Math.min(b[1] / 4294967296, 2147483647), -2147483648), lowBits_0(a) ^ lowBits_0(b));
}
 
function $clinit_39(){
$clinit_39 = nullMethod;
boxedValues = initDim(_3_3D_classLit, 262, 27, 256, 0);
}
 
var boxedValues;
function $clinit_40(){
$clinit_40 = nullMethod;
LN_2 = Math.log(2);
MAX_VALUE = P7fffffffffffffff_longLit;
MIN_VALUE = N8000000000000000_longLit;
NEG_ONE = fromInt(-1);
ONE = fromInt(1);
TWO = fromInt(2);
TWO_PWR_24 = P1000000_longLit;
ZERO = fromInt(0);
}
 
var LN_2, MAX_VALUE, MIN_VALUE, NEG_ONE, ONE, TWO, TWO_PWR_24, ZERO;
function $CommandCanceledException(this$static){
return this$static;
}
 
function getClass_23(){
return Lcom_google_gwt_user_client_CommandCanceledException_2_classLit;
}
 
function CommandCanceledException(){
}
 
_ = CommandCanceledException.prototype = new RuntimeException();
_.getClass$ = getClass_23;
_.typeId$ = 21;
function $CommandExecutor(this$static){
this$static.cancellationTimer = $CommandExecutor$1(new CommandExecutor$1(), this$static);
this$static.commands = $ArrayList(new ArrayList());
this$static.executionTimer = $CommandExecutor$2(new CommandExecutor$2(), this$static);
this$static.iterator = $CommandExecutor$CircularIterator(new CommandExecutor$CircularIterator(), this$static);
return this$static;
}
 
function $doCommandCanceled(this$static){
var cmd;
cmd = $getLast(this$static.iterator);
$remove(this$static.iterator);
if (cmd != null && canCast(cmd.typeId$, 10)) {
$CommandCanceledException(new CommandCanceledException(), dynamicCast(cmd, 10));
}
else {
}
this$static.executing = false;
$maybeStartExecutionTimer(this$static);
}
 
function $doExecuteCommands(this$static, startTimeMillis){
var command, element, wasCanceled;
wasCanceled = false;
try {
this$static.executing = true;
this$static.iterator.end = this$static.commands.size;
$schedule(this$static.cancellationTimer, 10000);
while ($hasNext(this$static.iterator)) {
element = $next(this$static.iterator);
try {
if (element == null) {
return;
}
if (element != null && canCast(element.typeId$, 10)) {
command = dynamicCast(element, 10);
command.execute();
}
else {
}
}
finally {
wasCanceled = this$static.iterator.last == -1;
if (wasCanceled) {
return;
}
$remove(this$static.iterator);
}
if ((new Date()).getTime() - startTimeMillis >= 100) {
return;
}
}
}
finally {
if (!wasCanceled) {
$cancel_1(this$static.cancellationTimer);
this$static.executing = false;
$maybeStartExecutionTimer(this$static);
}
}
}
 
function $maybeStartExecutionTimer(this$static){
if (this$static.commands.size != 0 && !this$static.executionTimerPending && !this$static.executing) {
this$static.executionTimerPending = true;
$schedule(this$static.executionTimer, 1);
}
}
 
function $submit(this$static, command){
$add_8(this$static.commands, command);
$maybeStartExecutionTimer(this$static);
}
 
function getClass_27(){
return Lcom_google_gwt_user_client_CommandExecutor_2_classLit;
}
 
function CommandExecutor(){
}
 
_ = CommandExecutor.prototype = new Object_0();
_.getClass$ = getClass_27;
_.typeId$ = 0;
_.executing = false;
_.executionTimerPending = false;
function $clinit_45(){
$clinit_45 = nullMethod;
$clinit_57();
}
 
function $CommandExecutor$1(this$static, this$0){
$clinit_45();
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_24(){
return Lcom_google_gwt_user_client_CommandExecutor$1_2_classLit;
}
 
function run_1(){
if (!this.this$0.executing) {
return;
}
$doCommandCanceled(this.this$0);
}
 
function CommandExecutor$1(){
}
 
_ = CommandExecutor$1.prototype = new Timer();
_.getClass$ = getClass_24;
_.run = run_1;
_.typeId$ = 22;
_.this$0 = null;
function $clinit_46(){
$clinit_46 = nullMethod;
$clinit_57();
}
 
function $CommandExecutor$2(this$static, this$0){
$clinit_46();
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_25(){
return Lcom_google_gwt_user_client_CommandExecutor$2_2_classLit;
}
 
function run_2(){
this.this$0.executionTimerPending = false;
$doExecuteCommands(this.this$0, (new Date()).getTime());
}
 
function CommandExecutor$2(){
}
 
_ = CommandExecutor$2.prototype = new Timer();
_.getClass$ = getClass_25;
_.run = run_2;
_.typeId$ = 23;
_.this$0 = null;
function $CommandExecutor$CircularIterator(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function $getLast(this$static){
return $get_3(this$static.this$0.commands, this$static.last);
}
 
function $hasNext(this$static){
return this$static.next < this$static.end;
}
 
function $next(this$static){
var command;
this$static.last = this$static.next;
command = $get_3(this$static.this$0.commands, this$static.next++);
if (this$static.next >= this$static.end) {
this$static.next = 0;
}
return command;
}
 
function $remove(this$static){
$remove_9(this$static.this$0.commands, this$static.last);
--this$static.end;
if (this$static.last <= this$static.next) {
if (--this$static.next < 0) {
this$static.next = 0;
}
}
this$static.last = -1;
}
 
function getClass_26(){
return Lcom_google_gwt_user_client_CommandExecutor$CircularIterator_2_classLit;
}
 
function hasNext(){
return this.next < this.end;
}
 
function next_0(){
return $next(this);
}
 
function CommandExecutor$CircularIterator(){
}
 
_ = CommandExecutor$CircularIterator.prototype = new Object_0();
_.getClass$ = getClass_26;
_.hasNext = hasNext;
_.next_0 = next_0;
_.typeId$ = 0;
_.end = 0;
_.last = -1;
_.next = 0;
_.this$0 = null;
function addEventPreview(preview){
$maybeInitializeEventSystem();
if (!sEventPreviewStack) {
sEventPreviewStack = $ArrayList(new ArrayList());
}
$add_8(sEventPreviewStack, preview);
}
 
function dispatchEventImpl(evt, elem, listener){
var prevCurrentEvent;
if (elem == sCaptureElem) {
if ($eventGetTypeInt(evt) == 8192) {
sCaptureElem = null;
}
}
prevCurrentEvent = currentEvent;
currentEvent = evt;
try {
listener.onBrowserEvent(evt);
}
finally {
currentEvent = prevCurrentEvent;
}
}
 
function previewEvent(evt){
var preview, ret;
ret = true;
if (!!sEventPreviewStack && sEventPreviewStack.size > 0) {
preview = dynamicCast($get_3(sEventPreviewStack, sEventPreviewStack.size - 1), 11);
if (!(ret = preview.onEventPreview(evt))) {
evt.cancelBubble = true;
evt.preventDefault();
}
}
return ret;
}
 
function releaseCapture(elem){
if (!!sCaptureElem && elem == sCaptureElem) {
sCaptureElem = null;
}
$maybeInitializeEventSystem();
$releaseCaptureImpl(elem);
}
 
function removeEventPreview(preview){
if (sEventPreviewStack) {
$remove_10(sEventPreviewStack, preview);
}
}
 
function setCapture(elem){
sCaptureElem = elem;
$maybeInitializeEventSystem();
captureElem = elem;
}
 
function sinkEvents(elem, eventBits){
$maybeInitializeEventSystem();
$sinkEventsImpl(elem, eventBits);
$sinkEventsMozilla(elem, eventBits);
}
 
var currentEvent = null, sCaptureElem = null, sEventPreviewStack = null;
function $clinit_51(){
$clinit_51 = nullMethod;
commandExecutor = $CommandExecutor(new CommandExecutor());
}
 
function addCommand(cmd){
$clinit_51();
if (!cmd) {
throw $NullPointerException(new NullPointerException(), 'cmd cannot be null');
}
$submit(commandExecutor, cmd);
}
 
var commandExecutor;
function $clinit_54(){
$clinit_54 = nullMethod;
httpRequest_0 = $HTTPRequestImpl(new HTTPRequestImpl());
}
 
var httpRequest_0;
function getClass_28(){
return Lcom_google_gwt_user_client_Timer$1_2_classLit;
}
 
function onWindowClosed(){
while (($clinit_57() , timers).size > 0) {
$cancel_1(dynamicCast($get_3(timers, 0), 12));
}
}
 
function onWindowClosing(){
return null;
}
 
function Timer$1(){
}
 
_ = Timer$1.prototype = new Object_0();
_.getClass$ = getClass_28;
_.onWindowClosed = onWindowClosed;
_.onWindowClosing = onWindowClosing;
_.typeId$ = 24;
function addWindowCloseListener(listener){
maybeInitializeHandlers();
if (!closingListeners) {
closingListeners = $ArrayList(new ArrayList());
}
$add_8(closingListeners, listener);
}
 
function fireClosedImpl(){
var listener, listener$iterator;
if (closingListeners) {
for (listener$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), closingListeners); listener$iterator.i < listener$iterator.this$0.size_0();) {
listener = dynamicCast($next_1(listener$iterator), 13);
listener.onWindowClosed();
}
}
}
 
function fireClosingImpl(){
var listener, listener$iterator, msg, ret;
ret = null;
if (closingListeners) {
for (listener$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), closingListeners); listener$iterator.i < listener$iterator.this$0.size_0();) {
listener = dynamicCast($next_1(listener$iterator), 13);
msg = listener.onWindowClosing();
ret = msg;
}
}
return ret;
}
 
function init(){
__gwt_initHandlers(function(){
}
, function(){
return fireClosingImpl();
}
, function(){
fireClosedImpl();
}
);
}
 
function maybeInitializeHandlers(){
if (!handlersAreInitialized) {
init();
handlersAreInitialized = true;
}
}
 
var closingListeners = null, handlersAreInitialized = false;
function $eventGetTypeInt(evt){
switch (evt.type) {
case 'blur':
return 4096;
case 'change':
return 1024;
case 'click':
return 1;
case 'dblclick':
return 2;
case 'focus':
return 2048;
case 'keydown':
return 128;
case 'keypress':
return 256;
case 'keyup':
return 512;
case 'load':
return 32768;
case 'losecapture':
return 8192;
case 'mousedown':
return 4;
case 'mousemove':
return 64;
case 'mouseout':
return 32;
case 'mouseover':
return 16;
case 'mouseup':
return 8;
case 'scroll':
return 16384;
case 'error':
return 65536;
case 'mousewheel':
return 131072;
case 'DOMMouseScroll':
return 131072;
case 'contextmenu':
return 262144;
}
}
 
function $maybeInitializeEventSystem(){
if (!eventSystemIsInitialized) {
$initEventSystem();
$initSyntheticMouseUpEvents();
eventSystemIsInitialized = true;
}
}
 
function isMyListener(object){
return object != null && canCast(object.typeId$, 14) && !(object != null && (object.typeMarker$ != nullMethod && object.typeId$ != 2));
}
 
var eventSystemIsInitialized = false;
function $eventGetFromElement(evt){
if (evt.type == 'mouseover')
return evt.relatedTarget;
if (evt.type == 'mouseout')
return evt.target;
return null;
}
 
function $eventGetToElement(evt){
if (evt.type == 'mouseover')
return evt.target;
if (evt.type == 'mouseout')
return evt.relatedTarget;
return null;
}
 
function $getChild(elem, index){
var count = 0, child = elem.firstChild;
while (child) {
var next = child.nextSibling;
if (child.nodeType == 1) {
if (index == count)
return child;
++count;
}
child = next;
}
return null;
}
 
function $initEventSystem(){
dispatchCapturedMouseEvent = function(evt){
if (dispatchCapturedEvent(evt)) {
var cap = captureElem;
if (cap && cap.__listener) {
if (isMyListener(cap.__listener)) {
dispatchEventImpl(evt, cap, cap.__listener);
evt.stopPropagation();
}
}
}
}
;
dispatchCapturedEvent = function(evt){
if (!previewEvent(evt)) {
evt.stopPropagation();
evt.preventDefault();
return false;
}
return true;
}
;
dispatchEvent_0 = function(evt){
var listener, curElem = this;
while (curElem && !(listener = curElem.__listener)) {
curElem = curElem.parentNode;
}
if (curElem && curElem.nodeType != 1) {
curElem = null;
}
if (listener) {
if (isMyListener(listener)) {
dispatchEventImpl(evt, curElem, listener);
}
}
}
;
$wnd.addEventListener('click', dispatchCapturedMouseEvent, true);
$wnd.addEventListener('dblclick', dispatchCapturedMouseEvent, true);
$wnd.addEventListener('mousedown', dispatchCapturedMouseEvent, true);
$wnd.addEventListener('mouseup', dispatchCapturedMouseEvent, true);
$wnd.addEventListener('mousemove', dispatchCapturedMouseEvent, true);
$wnd.addEventListener('mouseover', dispatchCapturedMouseEvent, true);
$wnd.addEventListener('mouseout', dispatchCapturedMouseEvent, true);
$wnd.addEventListener('mousewheel', dispatchCapturedMouseEvent, true);
$wnd.addEventListener('keydown', dispatchCapturedEvent, true);
$wnd.addEventListener('keyup', dispatchCapturedEvent, true);
$wnd.addEventListener('keypress', dispatchCapturedEvent, true);
}
 
function $releaseCaptureImpl(elem){
if (elem === captureElem) {
captureElem = null;
}
}
 
function $sinkEventsImpl(elem, bits){
var chMask = (elem.__eventBits || 0) ^ bits;
elem.__eventBits = bits;
if (!chMask)
return;
if (chMask & 1)
elem.onclick = bits & 1?dispatchEvent_0:null;
if (chMask & 2)
elem.ondblclick = bits & 2?dispatchEvent_0:null;
if (chMask & 4)
elem.onmousedown = bits & 4?dispatchEvent_0:null;
if (chMask & 8)
elem.onmouseup = bits & 8?dispatchEvent_0:null;
if (chMask & 16)
elem.onmouseover = bits & 16?dispatchEvent_0:null;
if (chMask & 32)
elem.onmouseout = bits & 32?dispatchEvent_0:null;
if (chMask & 64)
elem.onmousemove = bits & 64?dispatchEvent_0:null;
if (chMask & 128)
elem.onkeydown = bits & 128?dispatchEvent_0:null;
if (chMask & 256)
elem.onkeypress = bits & 256?dispatchEvent_0:null;
if (chMask & 512)
elem.onkeyup = bits & 512?dispatchEvent_0:null;
if (chMask & 1024)
elem.onchange = bits & 1024?dispatchEvent_0:null;
if (chMask & 2048)
elem.onfocus = bits & 2048?dispatchEvent_0:null;
if (chMask & 4096)
elem.onblur = bits & 4096?dispatchEvent_0:null;
if (chMask & 8192)
elem.onlosecapture = bits & 8192?dispatchEvent_0:null;
if (chMask & 16384)
elem.onscroll = bits & 16384?dispatchEvent_0:null;
if (chMask & 32768)
elem.onload = bits & 32768?dispatchEvent_0:null;
if (chMask & 65536)
elem.onerror = bits & 65536?dispatchEvent_0:null;
if (chMask & 131072)
elem.onmousewheel = bits & 131072?dispatchEvent_0:null;
if (chMask & 262144)
elem.oncontextmenu = bits & 262144?dispatchEvent_0:null;
}
 
var captureElem = null, dispatchCapturedEvent = null, dispatchCapturedMouseEvent = null, dispatchEvent_0 = null;
function $initSyntheticMouseUpEvents(){
$wnd.addEventListener('mouseout', function(evt){
var cap = $wnd.__captureElem;
if (cap && !evt.relatedTarget) {
if ('html' == evt.target.tagName.toLowerCase()) {
var muEvent = $doc.createEvent('MouseEvents');
muEvent.initMouseEvent('mouseup', true, true, $wnd, 0, evt.screenX, evt.screenY, evt.clientX, evt.clientY, evt.ctrlKey, evt.altKey, evt.shiftKey, evt.metaKey, evt.button, null);
cap.dispatchEvent(muEvent);
}
}
}
, true);
$wnd.addEventListener('DOMMouseScroll', dispatchCapturedMouseEvent, true);
}
 
function $sinkEventsMozilla(elem, bits){
if (bits & 131072) {
elem.addEventListener('DOMMouseScroll', dispatchEvent_0, false);
}
}
 
function $clinit_63(){
$clinit_63 = nullMethod;
documentRoot = $getDocumentRoot(($clinit_63() , new DocumentRootImpl()));
}
 
function $getDocumentRoot(){
return $doc.compatMode == 'CSS1Compat'?$doc.documentElement:$doc.body;
}
 
function getClass_30(){
return Lcom_google_gwt_user_client_impl_DocumentRootImpl_2_classLit;
}
 
function DocumentRootImpl(){
}
 
_ = DocumentRootImpl.prototype = new Object_0();
_.getClass$ = getClass_30;
_.typeId$ = 0;
var documentRoot;
function $HTTPRequestImpl(this$static){
nullFunc = createFunction();
return this$static;
}
 
function $asyncGetImpl(this$static, url, handler){
var xmlHttp = this$static.doCreateXmlHTTPRequest();
try {
xmlHttp.open('GET', url, true);
xmlHttp.setRequestHeader('Content-Type', 'text/plain; charset=utf-8');
xmlHttp.onreadystatechange = function(){
if (xmlHttp.readyState == 4) {
$wnd.setTimeout(function(){
xmlHttp.onreadystatechange = nullFunc;
}
, 0);
handler.onCompletion(xmlHttp.responseText || '');
}
}
;
xmlHttp.send('');
return true;
}
catch (e) {
xmlHttp.onreadystatechange = nullFunc;
return false;
}
}
 
function doCreateXmlHTTPRequest(){
return new XMLHttpRequest();
}
 
function getClass_31(){
return Lcom_google_gwt_user_client_impl_HTTPRequestImpl_2_classLit;
}
 
function HTTPRequestImpl(){
}
 
_ = HTTPRequestImpl.prototype = new Object_0();
_.doCreateXmlHTTPRequest = doCreateXmlHTTPRequest;
_.getClass$ = getClass_31;
_.typeId$ = 0;
var nullFunc = null;
function $replaceElement(this$static, elem){
if (this$static.element) {
$replaceNode(this$static.element, elem);
}
this$static.element = elem;
}
 
function $replaceNode(node, newNode){
var p = node.parentNode;
if (!p) {
return;
}
p.insertBefore(newNode, node);
p.removeChild(node);
}
 
function $setSize(this$static, width, height){
this$static.getElement().style['width'] = width;
this$static.getElement().style['height'] = height;
}
 
function $sinkEvents(this$static, eventBitsToAdd){
sinkEvents(this$static.element, eventBitsToAdd | (this$static.element.__eventBits || 0));
}
 
function $toString_1(this$static){
var temp, tempDiv;
if (!this$static.getElement()) {
return '(null handle)';
}
return temp = this$static.getElement().cloneNode(true) , tempDiv = $doc.createElement('DIV') , tempDiv.appendChild(temp) , outer = tempDiv.innerHTML , temp.innerHTML = '' , outer;
}
 
function getClass_58(){
return Lcom_google_gwt_user_client_ui_UIObject_2_classLit;
}
 
function getElement(){
return this.element;
}
 
function setHeight_0(height){
this.getElement().style['height'] = height;
}
 
function setStyleName(elem, style, add){
var begin, end, idx, last, lastPos, newClassName, oldStyle;
if (!elem) {
throw $RuntimeException(new RuntimeException(), 'Null widget handle. If you are creating a composite, ensure that initWidget() has been called.');
}
style = $trim(style);
if (style.length == 0) {
throw $IllegalArgumentException(new IllegalArgumentException(), 'Style names cannot be empty');
}
oldStyle = elem['className'] == null?null:String(elem['className']);
idx = oldStyle.indexOf(style);
while (idx != -1) {
if (idx == 0 || oldStyle.charCodeAt(idx - 1) == 32) {
last = idx + style.length;
lastPos = oldStyle.length;
if (last == lastPos || last < lastPos && oldStyle.charCodeAt(last) == 32) {
break;
}
}
idx = oldStyle.indexOf(style, idx + 1);
}
if (add) {
if (idx == -1) {
if (oldStyle.length > 0) {
oldStyle += ' ';
}
elem['className'] = oldStyle + style;
}
}
else {
if (idx != -1) {
begin = $trim(oldStyle.substr(0, idx - 0));
end = $trim($substring(oldStyle, idx + style.length));
if (begin.length == 0) {
newClassName = end;
}
else if (end.length == 0) {
newClassName = begin;
}
else {
newClassName = begin + ' ' + end;
}
elem['className'] = newClassName;
}
}
}
 
function setStylePrimaryName(elem, style){
if (!elem) {
throw $RuntimeException(new RuntimeException(), 'Null widget handle. If you are creating a composite, ensure that initWidget() has been called.');
}
style = $trim(style);
if (style.length == 0) {
throw $IllegalArgumentException(new IllegalArgumentException(), 'Style names cannot be empty');
}
updatePrimaryAndDependentStyleNames(elem, style);
}
 
function setWidth_0(width){
this.getElement().style['width'] = width;
}
 
function toString_10(){
return $toString_1(this);
}
 
function updatePrimaryAndDependentStyleNames(elem, newPrimaryStyle){
var classes = elem.className.split(/\s+/);
if (!classes) {
return;
}
var oldPrimaryStyle = classes[0];
var oldPrimaryStyleLen = oldPrimaryStyle.length;
classes[0] = newPrimaryStyle;
for (var i = 1, n_0 = classes.length; i < n_0; i++) {
var name = classes[i];
if (name.length > oldPrimaryStyleLen && (name.charAt(oldPrimaryStyleLen) == '-' && name.indexOf(oldPrimaryStyle) == 0)) {
classes[i] = newPrimaryStyle + name.substring(oldPrimaryStyleLen);
}
}
elem.className = classes.join(' ');
}
 
function UIObject(){
}
 
_ = UIObject.prototype = new Object_0();
_.getClass$ = getClass_58;
_.getElement = getElement;
_.setHeight_1 = setHeight_0;
_.setWidth_0 = setWidth_0;
_.toString$ = toString_10;
_.typeId$ = 25;
_.element = null;
function $onAttach(this$static){
if (this$static.attached) {
throw $IllegalStateException(new IllegalStateException(), "Should only call onAttach when the widget is detached from the browser's document");
}
this$static.attached = true;
this$static.getElement().__listener = this$static;
this$static.doAttachChildren();
this$static.onLoad();
}
 
function $onDetach(this$static){
if (!this$static.attached) {
throw $IllegalStateException(new IllegalStateException(), "Should only call onDetach when the widget is attached to the browser's document");
}
try {
this$static.onUnload();
}
finally {
this$static.doDetachChildren();
this$static.getElement().__listener = null;
this$static.attached = false;
}
}
 
function $removeFromParent(this$static){
if (this$static.parent) {
this$static.parent.remove_1(this$static);
}
else if (this$static.parent) {
throw $IllegalStateException(new IllegalStateException(), "This widget's parent does not implement HasWidgets");
}
}
 
function $replaceElement_0(this$static, elem){
if (this$static.attached) {
this$static.element.__listener = null;
}
$replaceElement(this$static, elem);
if (this$static.attached) {
this$static.element.__listener = this$static;
}
}
 
function $setParent(this$static, parent){
var oldParent;
oldParent = this$static.parent;
if (!parent) {
if (!!oldParent && oldParent.attached) {
this$static.onDetach();
}
this$static.parent = null;
}
else {
if (oldParent) {
throw $IllegalStateException(new IllegalStateException(), 'Cannot set a new parent without first clearing the old parent');
}
this$static.parent = parent;
if (parent.attached) {
this$static.onAttach();
}
}
}
 
function doAttachChildren_2(){
}
 
function doDetachChildren_2(){
}
 
function getClass_61(){
return Lcom_google_gwt_user_client_ui_Widget_2_classLit;
}
 
function isAttached(){
return this.attached;
}
 
function onAttach(){
$onAttach(this);
}
 
function onBrowserEvent_2(event_0){
}
 
function onDetach_0(){
$onDetach(this);
}
 
function onLoad_0(){
}
 
function onUnload_0(){
}
 
function Widget(){
}
 
_ = Widget.prototype = new UIObject();
_.doAttachChildren = doAttachChildren_2;
_.doDetachChildren = doDetachChildren_2;
_.getClass$ = getClass_61;
_.isAttached = isAttached;
_.onAttach = onAttach;
_.onBrowserEvent = onBrowserEvent_2;
_.onDetach = onDetach_0;
_.onLoad = onLoad_0;
_.onUnload = onUnload_0;
_.typeId$ = 26;
_.attached = false;
_.parent = null;
function $adopt(this$static, child){
$setParent(child, this$static);
}
 
function add_2(child){
throw $UnsupportedOperationException(new UnsupportedOperationException(), 'This panel does not support no-arg add()');
}
 
function doAttachChildren_1(){
var child, it;
for (it = this.iterator_0(); it.hasNext();) {
child = dynamicCast(it.next_0(), 17);
child.onAttach();
}
}
 
function doDetachChildren_1(){
var child, it;
for (it = this.iterator_0(); it.hasNext();) {
child = dynamicCast(it.next_0(), 17);
child.onDetach();
}
}
 
function getClass_48(){
return Lcom_google_gwt_user_client_ui_Panel_2_classLit;
}
 
function onLoad(){
}
 
function onUnload(){
}
 
function Panel(){
}
 
_ = Panel.prototype = new Widget();
_.add_1 = add_2;
_.doAttachChildren = doAttachChildren_1;
_.doDetachChildren = doDetachChildren_1;
_.getClass$ = getClass_48;
_.onLoad = onLoad;
_.onUnload = onUnload;
_.typeId$ = 27;
function $add_0(this$static, child, container){
$removeFromParent(child);
$add_1(this$static.children, child);
container.appendChild(child.getElement());
$setParent(child, this$static);
}
 
function $remove_1(this$static, w){
var elem;
if (w.parent != this$static) {
return false;
}
$setParent(w, null);
elem = w.getElement();
$getParentElement(elem).removeChild(elem);
$remove_4(this$static.children, w);
return true;
}
 
function getClass_36(){
return Lcom_google_gwt_user_client_ui_ComplexPanel_2_classLit;
}
 
function iterator_0(){
return $WidgetCollection$WidgetIterator(new WidgetCollection$WidgetIterator(), this.children);
}
 
function remove_1(w){
return $remove_1(this, w);
}
 
function ComplexPanel(){
}
 
_ = ComplexPanel.prototype = new Panel();
_.getClass$ = getClass_36;
_.iterator_0 = iterator_0;
_.remove_1 = remove_1;
_.typeId$ = 28;
function $add(this$static, w){
$add_0(this$static, w, this$static.element);
}
 
function $remove_0(this$static, w){
var removed;
removed = $remove_1(this$static, w);
if (removed) {
changeToStaticPositioning(w.getElement());
}
return removed;
}
 
function add_1(w){
$add_0(this, w, this.element);
}
 
function changeToStaticPositioning(elem){
elem.style['left'] = '';
elem.style['top'] = '';
elem.style['position'] = '';
}
 
function getClass_32(){
return Lcom_google_gwt_user_client_ui_AbsolutePanel_2_classLit;
}
 
function remove_0(w){
return $remove_0(this, w);
}
 
function AbsolutePanel(){
}
 
_ = AbsolutePanel.prototype = new ComplexPanel();
_.add_1 = add_1;
_.getClass$ = getClass_32;
_.remove_1 = remove_0;
_.typeId$ = 29;
function $addClickListener(this$static, listener){
if (!this$static.clickListeners) {
this$static.clickListeners = $ClickListenerCollection(new ClickListenerCollection());
sinkEvents(this$static.element, 1 | (this$static.element.__eventBits || 0));
}
$add_8(this$static.clickListeners, listener);
}
 
function getClass_40(){
return Lcom_google_gwt_user_client_ui_FocusWidget_2_classLit;
}
 
function onBrowserEvent(event_0){
if ($eventGetTypeInt(event_0) == 1) {
if (this.clickListeners) {
$fireClick(this.clickListeners, this);
}
}
}
 
function FocusWidget(){
}
 
_ = FocusWidget.prototype = new Widget();
_.getClass$ = getClass_40;
_.onBrowserEvent = onBrowserEvent;
_.typeId$ = 30;
_.clickListeners = null;
function $ButtonBase(this$static, elem){
this$static.element = elem;
this$static.element.tabIndex = 0;
return this$static;
}
 
function getClass_33(){
return Lcom_google_gwt_user_client_ui_ButtonBase_2_classLit;
}
 
function ButtonBase(){
}
 
_ = ButtonBase.prototype = new FocusWidget();
_.getClass$ = getClass_33;
_.typeId$ = 31;
function $Button(this$static){
$ButtonBase(this$static, $doc.createElement('button'));
adjustType(this$static.element);
this$static.element['className'] = 'gwt-Button';
return this$static;
}
 
function adjustType(button){
if (button.type == 'submit') {
try {
button.setAttribute('type', 'button');
}
catch (e) {
}
}
}
 
function getClass_34(){
return Lcom_google_gwt_user_client_ui_Button_2_classLit;
}
 
function Button(){
}
 
_ = Button.prototype = new ButtonBase();
_.getClass$ = getClass_34;
_.typeId$ = 32;
function $advanceToFind(iter, o){
var t;
while (iter.hasNext()) {
t = iter.next_0();
if (o == null?t == null:equals__devirtual$(o, t)) {
return iter;
}
}
return null;
}
 
function $toString_4(this$static){
var comma, iter, sb;
sb = $StringBuffer(new StringBuffer());
comma = null;
$append_1(sb.builder, '[');
iter = this$static.iterator_0();
while (iter.hasNext()) {
if (comma != null) {
$append_1(sb.builder, comma);
}
else {
comma = ', ';
}
$append_0(sb, '' + iter.next_0());
}
$append_1(sb.builder, ']');
return $toString_2(sb.builder);
}
 
function add_5(o){
throw $UnsupportedOperationException(new UnsupportedOperationException(), 'Add not supported on this collection');
}
 
function contains(o){
var iter;
iter = $advanceToFind(this.iterator_0(), o);
return !!iter;
}
 
function getClass_237(){
return Ljava_util_AbstractCollection_2_classLit;
}
 
function toString_26(){
return $toString_4(this);
}
 
function AbstractCollection(){
}
 
_ = AbstractCollection.prototype = new Object_0();
_.add_2 = add_5;
_.contains = contains;
_.getClass$ = getClass_237;
_.toString$ = toString_26;
_.typeId$ = 0;
function add_7(obj){
this.add_0(this.size_0(), obj);
return true;
}
 
function add_6(index, element){
throw $UnsupportedOperationException(new UnsupportedOperationException(), 'Add not supported on this list');
}
 
function checkIndex(index, size){
if (index < 0 || index >= size) {
indexOutOfBounds(index, size);
}
}
 
function equals_16(o){
var elem, elemOther, iter, iterOther, other;
if ((o == null?null:o) === (this == null?null:this)) {
return true;
}
if (!(o != null && canCast(o.typeId$, 45))) {
return false;
}
other = dynamicCast(o, 45);
if (this.size_0() != other.size_0()) {
return false;
}
iter = this.iterator_0();
iterOther = other.iterator_0();
while (iter.i < iter.this$0.size_0()) {
elem = $next_1(iter);
elemOther = $next_1(iterOther);
if (!(elem == null?elemOther == null:equals__devirtual$(elem, elemOther))) {
return false;
}
}
return true;
}
 
function getClass_244(){
return Ljava_util_AbstractList_2_classLit;
}
 
function hashCode_17(){
var iter, k, obj;
k = 1;
iter = this.iterator_0();
while (iter.i < iter.this$0.size_0()) {
obj = $next_1(iter);
k = 31 * k + (obj == null?0:hashCode__devirtual$(obj));
k = ~~k;
}
return k;
}
 
function indexOutOfBounds(index, size){
throw $IndexOutOfBoundsException(new IndexOutOfBoundsException(), 'Index: ' + index + ', Size: ' + size);
}
 
function iterator_5(){
return $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this);
}
 
function remove_4(index){
throw $UnsupportedOperationException(new UnsupportedOperationException(), 'Remove not supported on this list');
}
 
function AbstractList(){
}
 
_ = AbstractList.prototype = new AbstractCollection();
_.add_2 = add_7;
_.add_0 = add_6;
_.equals$ = equals_16;
_.getClass$ = getClass_244;
_.hashCode$ = hashCode_17;
_.iterator_0 = iterator_5;
_.remove_0 = remove_4;
_.typeId$ = 33;
function $ArrayList(this$static){
this$static.array = initDim(_3Ljava_lang_Object_2_classLit, 260, 0, 0, 0);
this$static.size = 0;
return this$static;
}
 
function $ArrayList_0(this$static, initialCapacity){
this$static.array = initDim(_3Ljava_lang_Object_2_classLit, 260, 0, 0, 0);
this$static.size = 0;
$ensureCapacity(this$static, initialCapacity);
return this$static;
}
 
function $add_8(this$static, o){
setCheck(this$static.array, this$static.size++, o);
return true;
}
 
function $add_7(this$static, index, o){
if (index < 0 || index > this$static.size) {
indexOutOfBounds(index, this$static.size);
}
this$static.array.splice(index, 0, o);
++this$static.size;
}
 
function $clear(this$static){
this$static.array = initDim(_3Ljava_lang_Object_2_classLit, 260, 0, 0, 0);
this$static.size = 0;
}
 
function $ensureCapacity(this$static, capacity){
if (capacity > this$static.size) {
this$static.array.length = capacity;
}
}
 
function $get_3(this$static, index){
checkIndex(index, this$static.size);
return this$static.array[index];
}
 
function $indexOf_5(this$static, o, index){
for (; index < this$static.size; ++index) {
if (equalsWithNullCheck(o, this$static.array[index])) {
return index;
}
}
return -1;
}
 
function $remove_9(this$static, index){
var previous;
previous = (checkIndex(index, this$static.size) , this$static.array[index]);
this$static.array.splice(index, 1);
--this$static.size;
return previous;
}
 
function $remove_10(this$static, o){
var i;
i = $indexOf_5(this$static, o, 0);
if (i == -1) {
return false;
}
$remove_9(this$static, i);
return true;
}
 
function $toArray(this$static, out){
var i, a, result_0;
if (out.length < this$static.size) {
out = (a = out , result_0 = createFromSeed(0, this$static.size) , initValues(a.arrayClass$, a.typeId$, a.queryId$, result_0) , result_0);
}
for (i = 0; i < this$static.size; ++i) {
setCheck(out, i, this$static.array[i]);
}
if (out.length > this$static.size) {
setCheck(out, this$static.size, null);
}
return out;
}
 
function add_9(o){
return setCheck(this.array, this.size++, o) , true;
}
 
function add_8(index, o){
$add_7(this, index, o);
}
 
function contains_2(o){
return $indexOf_5(this, o, 0) != -1;
}
 
function get_4(index){
return checkIndex(index, this.size) , this.array[index];
}
 
function getClass_250(){
return Ljava_util_ArrayList_2_classLit;
}
 
function remove_5(index){
return $remove_9(this, index);
}
 
function size_4(){
return this.size;
}
 
function ArrayList(){
}
 
_ = ArrayList.prototype = new AbstractList();
_.add_2 = add_9;
_.add_0 = add_8;
_.contains = contains_2;
_.get_0 = get_4;
_.getClass$ = getClass_250;
_.remove_0 = remove_5;
_.size_0 = size_4;
_.typeId$ = 34;
_.array = null;
_.size = 0;
function $ClickListenerCollection(this$static){
this$static.array = initDim(_3Ljava_lang_Object_2_classLit, 260, 0, 0, 0);
this$static.size = 0;
return this$static;
}
 
function $fireClick(this$static, sender){
var listener, listener$iterator;
for (listener$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this$static); listener$iterator.i < listener$iterator.this$0.size_0();) {
listener = dynamicCast($next_1(listener$iterator), 15);
listener.onClick(sender);
}
}
 
function getClass_35(){
return Lcom_google_gwt_user_client_ui_ClickListenerCollection_2_classLit;
}
 
function ClickListenerCollection(){
}
 
_ = ClickListenerCollection.prototype = new ArrayList();
_.getClass$ = getClass_35;
_.typeId$ = 35;
function $remove_2(this$static, w){
if (this$static.widget_0 != w) {
return false;
}
$setParent(w, null);
this$static.getContainerElement().removeChild(w.getElement());
this$static.widget_0 = null;
return true;
}
 
function $setWidget_0(this$static, w){
if (w == this$static.widget_0) {
return;
}
if (w) {
$removeFromParent(w);
}
if (this$static.widget_0) {
this$static.remove_1(this$static.widget_0);
}
this$static.widget_0 = w;
if (w) {
this$static.getContainerElement().appendChild(this$static.widget_0.getElement());
$setParent(w, this$static);
}
}
 
function add_3(w){
if (this.getWidget()) {
throw $IllegalStateException(new IllegalStateException(), 'SimplePanel can only contain one child widget');
}
this.setWidget(w);
}
 
function getClass_57(){
return Lcom_google_gwt_user_client_ui_SimplePanel_2_classLit;
}
 
function getContainerElement_1(){
return this.element;
}
 
function getWidget_0(){
return this.widget_0;
}
 
function iterator_2(){
return $SimplePanel$1(new SimplePanel$1(), this);
}
 
function remove_3(w){
return $remove_2(this, w);
}
 
function setWidget_1(w){
$setWidget_0(this, w);
}
 
function SimplePanel(){
}
 
_ = SimplePanel.prototype = new Panel();
_.add_1 = add_3;
_.getClass$ = getClass_57;
_.getContainerElement = getContainerElement_1;
_.getWidget = getWidget_0;
_.iterator_0 = iterator_2;
_.remove_1 = remove_3;
_.setWidget = setWidget_1;
_.typeId$ = 36;
_.widget_0 = null;
function $clinit_96(){
$clinit_96 = nullMethod;
$clinit_115();
}
 
function $blur(elt){
if (elt.blur && elt != $doc.body) {
elt.blur();
}
}
 
function $hide(this$static){
if (!this$static.showing) {
return;
}
this$static.showing = false;
$setState(this$static.resizeAnimation, false);
}
 
function $maybeUpdateSize(this$static){
var w;
w = this$static.widget_0;
if (w) {
if (this$static.desiredHeight != null) {
w.setHeight_1(this$static.desiredHeight);
}
if (this$static.desiredWidth != null) {
w.setWidth_0(this$static.desiredWidth);
}
}
}
 
function $onEventPreview(this$static, event_0){
var allow, eventTargetsPopup, target, type;
target = event_0.target;
eventTargetsPopup = !!target && $isOrHasChild(this$static.element, target);
type = $eventGetTypeInt(event_0);
switch (type) {
case 128:
{
allow = this$static.onKeyDownPreview((event_0.which || (event_0.keyCode || 0)) & 65535, (event_0.shiftKey?1:0) | (event_0.metaKey?8:0) | (event_0.ctrlKey?2:0) | (event_0.altKey?4:0));
return allow && (eventTargetsPopup || !this$static.modal);
}
 
case 512:
{
allow = ((event_0.which || (event_0.keyCode || 0)) & 65535 , (event_0.shiftKey?1:0) | (event_0.metaKey?8:0) | (event_0.ctrlKey?2:0) | (event_0.altKey?4:0) , true);
return allow && (eventTargetsPopup || !this$static.modal);
}
 
case 256:
{
allow = ((event_0.which || (event_0.keyCode || 0)) & 65535 , (event_0.shiftKey?1:0) | (event_0.metaKey?8:0) | (event_0.ctrlKey?2:0) | (event_0.altKey?4:0) , true);
return allow && (eventTargetsPopup || !this$static.modal);
}
 
case 4:
case 8:
case 64:
case 1:
case 2:
{
if (sCaptureElem) {
return true;
}
if (!eventTargetsPopup && this$static.autoHide && type == 4) {
$hide(this$static);
return true;
}
break;
}
 
case 2048:
{
if (this$static.modal && !eventTargetsPopup && !!target) {
$blur(target);
return false;
}
}
 
}
return !this$static.modal || eventTargetsPopup;
}
 
function $setPopupPosition(this$static, left, top){
var elem, style, style_0;
if (left < 0) {
left = 0;
}
if (top < 0) {
top = 0;
}
this$static.leftPosition = left;
this$static.topPosition = top;
left -= (style = $wnd.getComputedStyle($doc.documentElement, '') , parseInt(style.marginLeft) + parseInt(style.borderLeftWidth));
top -= (style_0 = $wnd.getComputedStyle($doc.documentElement, '') , parseInt(style_0.marginTop) + parseInt(style_0.borderTopWidth));
elem = this$static.element;
elem.style['left'] = left + 'px';
elem.style['top'] = top + 'px';
}
 
function $setWidget(this$static, w){
$setWidget_0(this$static, w);
$maybeUpdateSize(this$static);
}
 
function $show(this$static){
if (this$static.showing) {
return;
}
this$static.showing = true;
addEventPreview(this$static);
$setState(this$static.resizeAnimation, true);
}
 
function getClass_52(){
return Lcom_google_gwt_user_client_ui_PopupPanel_2_classLit;
}
 
function getContainerElement_0(){
return $getContainerElement($getFirstChildElement(this.element));
}
 
function onDetach(){
removeEventPreview(this);
$onDetach(this);
}
 
function onEventPreview_0(event_0){
return $onEventPreview(this, event_0);
}
 
function onKeyDownPreview(key, modifiers){
return true;
}
 
function setHeight(height){
this.desiredHeight = height;
$maybeUpdateSize(this);
if (height.length == 0) {
this.desiredHeight = null;
}
}
 
function setWidget_0(w){
$setWidget_0(this, w);
$maybeUpdateSize(this);
}
 
function setWidth(width){
this.desiredWidth = width;
$maybeUpdateSize(this);
if (width.length == 0) {
this.desiredWidth = null;
}
}
 
function PopupPanel(){
}
 
_ = PopupPanel.prototype = new SimplePanel();
_.getClass$ = getClass_52;
_.getContainerElement = getContainerElement_0;
_.onDetach = onDetach;
_.onEventPreview = onEventPreview_0;
_.onKeyDownPreview = onKeyDownPreview;
_.setHeight_1 = setHeight;
_.setWidget = setWidget_0;
_.setWidth_0 = setWidth;
_.typeId$ = 37;
_.autoHide = false;
_.desiredHeight = null;
_.desiredWidth = null;
_.leftPosition = -1;
_.modal = false;
_.showing = false;
_.topPosition = -1;
function $clinit_72(){
$clinit_72 = nullMethod;
$clinit_96();
}
 
function doAttachChildren(){
$onAttach(this.decPanel);
}
 
function doDetachChildren(){
$onDetach(this.decPanel);
}
 
function getClass_37(){
return Lcom_google_gwt_user_client_ui_DecoratedPopupPanel_2_classLit;
}
 
function getWidget(){
return this.decPanel.widget_0;
}
 
function iterator_1(){
return $SimplePanel$1(new SimplePanel$1(), this.decPanel);
}
 
function remove_2(w){
return $remove_2(this.decPanel, w);
}
 
function setWidget(w){
$setWidget_0(this.decPanel, w);
$maybeUpdateSize(this);
}
 
function DecoratedPopupPanel(){
}
 
_ = DecoratedPopupPanel.prototype = new PopupPanel();
_.doAttachChildren = doAttachChildren;
_.doDetachChildren = doDetachChildren;
_.getClass$ = getClass_37;
_.getWidget = getWidget;
_.iterator_0 = iterator_1;
_.remove_1 = remove_2;
_.setWidget = setWidget;
_.typeId$ = 38;
_.decPanel = null;
function $DecoratorPanel(this$static, rowStyles, containerIndex){
var i, row, table, trElem;
this$static.element = $doc.createElement('table');
table = this$static.element;
this$static.tbody = $doc.createElement('tbody');
table.appendChild(this$static.tbody);
table['cellSpacing'] = 0;
table['cellPadding'] = 0;
for (i = 0; i < rowStyles.length; ++i) {
row = (trElem = $doc.createElement('tr') , (trElem['className'] = rowStyles[i] , undefined) , trElem.appendChild(createTD(rowStyles[i] + 'Left')) , trElem.appendChild(createTD(rowStyles[i] + 'Center')) , trElem.appendChild(createTD(rowStyles[i] + 'Right')) , trElem);
this$static.tbody.appendChild(row);
if (i == containerIndex) {
this$static.containerElem = $getFirstChildElement($getChild(row, 1));
}
}
this$static.element['className'] = 'gwt-DecoratorPanel';
return this$static;
}
 
function createTD(styleName){
var inner, tdElem;
tdElem = $doc.createElement('td');
inner = $doc.createElement('div');
tdElem.appendChild(inner);
tdElem['className'] = styleName;
inner['className'] = styleName + 'Inner';
return tdElem;
}
 
function getClass_38(){
return Lcom_google_gwt_user_client_ui_DecoratorPanel_2_classLit;
}
 
function getContainerElement(){
return this.containerElem;
}
 
function DecoratorPanel(){
}
 
_ = DecoratorPanel.prototype = new SimplePanel();
_.getClass$ = getClass_38;
_.getContainerElement = getContainerElement;
_.typeId$ = 39;
_.containerElem = null;
_.tbody = null;
function $clinit_74(){
$clinit_74 = nullMethod;
$clinit_72();
}
 
function doAttachChildren_0(){
$onAttach(this.decPanel);
$onAttach(this.caption);
}
 
function doDetachChildren_0(){
$onDetach(this.decPanel);
$onDetach(this.caption);
}
 
function getClass_39(){
return Lcom_google_gwt_user_client_ui_DialogBox_2_classLit;
}
 
function onEventPreview(event_0){
if ($eventGetTypeInt(event_0) == 4) {
if ($isOrHasChild(this.caption.element, event_0.target)) {
event_0.preventDefault();
}
}
return $onEventPreview(this, event_0);
}
 
function onMouseDown(sender, x_0, y){
this.dragging = true;
setCapture(this.caption.element);
this.dragStartX = x_0;
this.dragStartY = y;
}
 
function onMouseEnter(sender){
}
 
function onMouseLeave(sender){
}
 
function onMouseMove(sender, x_0, y){
var absX, absY;
if (this.dragging) {
absX = x_0 + $getAbsoluteLeft(this.element);
absY = y + $getAbsoluteTop(this.element);
$setPopupPosition(this, absX - this.dragStartX, absY - this.dragStartY);
}
}
 
function onMouseUp(sender, x_0, y){
this.dragging = false;
releaseCapture(this.caption.element);
}
 
function DialogBox(){
}
 
_ = DialogBox.prototype = new DecoratedPopupPanel();
_.doAttachChildren = doAttachChildren_0;
_.doDetachChildren = doDetachChildren_0;
_.getClass$ = getClass_39;
_.onEventPreview = onEventPreview;
_.onMouseDown_0 = onMouseDown;
_.onMouseEnter = onMouseEnter;
_.onMouseLeave = onMouseLeave;
_.onMouseMove = onMouseMove;
_.onMouseUp_0 = onMouseUp;
_.typeId$ = 40;
_.dragStartX = 0;
_.dragStartY = 0;
_.dragging = false;
function $Label(this$static, text){
this$static.element = $doc.createElement('div');
this$static.element['className'] = 'gwt-Label';
$setInnerText(this$static.element, text);
return this$static;
}
 
function $addClickListener_1(this$static, listener){
if (!this$static.clickListeners) {
this$static.clickListeners = $ClickListenerCollection(new ClickListenerCollection());
sinkEvents(this$static.element, 1 | (this$static.element.__eventBits || 0));
}
$add_8(this$static.clickListeners, listener);
}
 
function $addMouseListener_0(this$static, listener){
if (!this$static.mouseListeners) {
this$static.mouseListeners = $MouseListenerCollection(new MouseListenerCollection());
sinkEvents(this$static.element, 124 | (this$static.element.__eventBits || 0));
}
$add_8(this$static.mouseListeners, listener);
}
 
function getClass_45(){
return Lcom_google_gwt_user_client_ui_Label_2_classLit;
}
 
function onBrowserEvent_1(event_0){
switch ($eventGetTypeInt(event_0)) {
case 1:
if (this.clickListeners) {
$fireClick(this.clickListeners, this);
}
 
break;
case 4:
case 8:
case 64:
case 16:
case 32:
if (this.mouseListeners) {
$fireMouseEvent(this.mouseListeners, this, event_0);
}
 
}
}
 
function Label(){
}
 
_ = Label.prototype = new Widget();
_.getClass$ = getClass_45;
_.onBrowserEvent = onBrowserEvent_1;
_.typeId$ = 41;
_.clickListeners = null;
_.mouseListeners = null;
function $HTML(this$static){
this$static.element = $doc.createElement('div');
this$static.element['className'] = 'gwt-HTML';
return this$static;
}
 
function $HTML_0(this$static, html, wordWrap){
$HTML(this$static);
this$static.element.innerHTML = html || '';
this$static.element.style['whiteSpace'] = wordWrap?'normal':'nowrap';
return this$static;
}
 
function getClass_41(){
return Lcom_google_gwt_user_client_ui_HTML_2_classLit;
}
 
function HTML(){
}
 
_ = HTML.prototype = new Label();
_.getClass$ = getClass_41;
_.typeId$ = 42;
function $clinit_86(){
$clinit_86 = nullMethod;
$clearImpl(new HashMap());
}
 
function $Image_0(this$static, url){
$clinit_86();
$Image$UnclippedState_0(new Image$UnclippedState(), this$static, url);
this$static.element['className'] = 'gwt-Image';
return this$static;
}
 
function $addClickListener_0(this$static, listener){
if (!this$static.clickListeners) {
this$static.clickListeners = $ClickListenerCollection(new ClickListenerCollection());
}
$add_8(this$static.clickListeners, listener);
}
 
function $addMouseListener(this$static, listener){
if (!this$static.mouseListeners) {
this$static.mouseListeners = $MouseListenerCollection(new MouseListenerCollection());
}
$add_8(this$static.mouseListeners, listener);
}
 
function getClass_44(){
return Lcom_google_gwt_user_client_ui_Image_2_classLit;
}
 
function onBrowserEvent_0(event_0){
switch ($eventGetTypeInt(event_0)) {
case 1:
{
if (this.clickListeners) {
$fireClick(this.clickListeners, this);
}
break;
}
 
case 4:
case 8:
case 64:
case 16:
case 32:
{
if (this.mouseListeners) {
$fireMouseEvent(this.mouseListeners, this, event_0);
}
break;
}
 
}
}
 
function Image_0(){
}
 
_ = Image_0.prototype = new Widget();
_.getClass$ = getClass_44;
_.onBrowserEvent = onBrowserEvent_0;
_.typeId$ = 43;
_.clickListeners = null;
_.mouseListeners = null;
function getClass_42(){
return Lcom_google_gwt_user_client_ui_Image$State_2_classLit;
}
 
function Image$State(){
}
 
_ = Image$State.prototype = new Object_0();
_.getClass$ = getClass_42;
_.typeId$ = 0;
function $Image$UnclippedState(this$static, image){
$replaceElement_0(image, $doc.createElement('img'));
sinkEvents(image.element, 229501 | (image.element.__eventBits || 0));
return this$static;
}
 
function $Image$UnclippedState_0(this$static, image, url){
$replaceElement_0(image, $doc.createElement('img'));
sinkEvents(image.element, 229501 | (image.element.__eventBits || 0));
image.element.src = url;
return this$static;
}
 
function getClass_43(){
return Lcom_google_gwt_user_client_ui_Image$UnclippedState_2_classLit;
}
 
function Image$UnclippedState(){
}
 
_ = Image$UnclippedState.prototype = new Image$State();
_.getClass$ = getClass_43;
_.typeId$ = 0;
function getClass_46(){
return Lcom_google_gwt_user_client_ui_MouseListenerAdapter_2_classLit;
}
 
function onMouseDown_0(sender, x_0, y){
}
 
function onMouseEnter_0(sender){
}
 
function onMouseLeave_0(sender){
}
 
function onMouseMove_0(sender, x_0, y){
}
 
function onMouseUp_0(sender, x_0, y){
}
 
function MouseListenerAdapter(){
}
 
_ = MouseListenerAdapter.prototype = new Object_0();
_.getClass$ = getClass_46;
_.onMouseDown_0 = onMouseDown_0;
_.onMouseEnter = onMouseEnter_0;
_.onMouseLeave = onMouseLeave_0;
_.onMouseMove = onMouseMove_0;
_.onMouseUp_0 = onMouseUp_0;
_.typeId$ = 44;
function $MouseListenerCollection(this$static){
this$static.array = initDim(_3Ljava_lang_Object_2_classLit, 260, 0, 0, 0);
this$static.size = 0;
return this$static;
}
 
function $fireMouseDown(this$static, sender, x_0, y){
var listener, listener$iterator;
for (listener$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this$static); listener$iterator.i < listener$iterator.this$0.size_0();) {
listener = dynamicCast($next_1(listener$iterator), 16);
listener.onMouseDown_0(sender, x_0, y);
}
}
 
function $fireMouseEnter(this$static, sender){
var listener, listener$iterator;
for (listener$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this$static); listener$iterator.i < listener$iterator.this$0.size_0();) {
listener = dynamicCast($next_1(listener$iterator), 16);
listener.onMouseEnter(sender);
}
}
 
function $fireMouseEvent(this$static, sender, event_0){
var from, senderElem, to, x_0, y;
senderElem = sender.getElement();
x_0 = (event_0.clientX || 0) - $getAbsoluteLeft(senderElem) + (parseInt(senderElem['scrollLeft']) || 0) + ($clinit_63() , documentRoot).scrollLeft;
y = (event_0.clientY || 0) - $getAbsoluteTop(senderElem) + (parseInt(senderElem['scrollTop']) || 0) + documentRoot.scrollTop;
switch ($eventGetTypeInt(event_0)) {
case 4:
$fireMouseDown(this$static, sender, x_0, y);
break;
case 8:
$fireMouseUp(this$static, sender, x_0, y);
break;
case 64:
$fireMouseMove(this$static, sender, x_0, y);
break;
case 16:
from = $eventGetFromElement(event_0);
if (!from || !(senderElem === from || !!(senderElem.compareDocumentPosition(from) & 16))) {
$fireMouseEnter(this$static, sender);
}
 
break;
case 32:
to = $eventGetToElement(event_0);
if (!to || !(senderElem === to || !!(senderElem.compareDocumentPosition(to) & 16))) {
$fireMouseLeave(this$static, sender);
}
 
}
}
 
function $fireMouseLeave(this$static, sender){
var listener, listener$iterator;
for (listener$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this$static); listener$iterator.i < listener$iterator.this$0.size_0();) {
listener = dynamicCast($next_1(listener$iterator), 16);
listener.onMouseLeave(sender);
}
}
 
function $fireMouseMove(this$static, sender, x_0, y){
var listener, listener$iterator;
for (listener$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this$static); listener$iterator.i < listener$iterator.this$0.size_0();) {
listener = dynamicCast($next_1(listener$iterator), 16);
listener.onMouseMove(sender, x_0, y);
}
}
 
function $fireMouseUp(this$static, sender, x_0, y){
var listener, listener$iterator;
for (listener$iterator = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this$static); listener$iterator.i < listener$iterator.this$0.size_0();) {
listener = dynamicCast($next_1(listener$iterator), 16);
listener.onMouseUp_0(sender, x_0, y);
}
}
 
function getClass_47(){
return Lcom_google_gwt_user_client_ui_MouseListenerCollection_2_classLit;
}
 
function MouseListenerCollection(){
}
 
_ = MouseListenerCollection.prototype = new ArrayList();
_.getClass$ = getClass_47;
_.typeId$ = 45;
function equals_10(other){
return (this == null?null:this) === (other == null?null:other);
}
 
function getClass_219(){
return Ljava_lang_Enum_2_classLit;
}
 
function hashCode_11(){
return this.$H || (this.$H = ++sNextHashId);
}
 
function toString_17(){
return this.name_0;
}
 
function Enum(){
}
 
_ = Enum.prototype = new Object_0();
_.equals$ = equals_10;
_.getClass$ = getClass_219;
_.hashCode$ = hashCode_11;
_.toString$ = toString_17;
_.typeId$ = 46;
_.name_0 = null;
function $clinit_93(){
$clinit_93 = nullMethod;
CENTER = $PopupPanel$AnimationType(new PopupPanel$AnimationType(), 'CENTER');
ONE_WAY_CORNER = $PopupPanel$AnimationType(new PopupPanel$AnimationType(), 'ONE_WAY_CORNER');
}
 
function $PopupPanel$AnimationType(this$static, enum$name){
$clinit_93();
this$static.name_0 = enum$name;
return this$static;
}
 
function getClass_49(){
return Lcom_google_gwt_user_client_ui_PopupPanel$AnimationType_2_classLit;
}
 
function PopupPanel$AnimationType(){
}
 
_ = PopupPanel$AnimationType.prototype = new Enum();
_.getClass$ = getClass_49;
_.typeId$ = 47;
var CENTER, ONE_WAY_CORNER;
function $PopupPanel$ResizeAnimation(this$static, panel){
this$static.curPanel = panel;
return this$static;
}
 
function $onComplete(this$static){
if (!this$static.showing) {
$remove_0(($clinit_99() , get_0(null)), this$static.curPanel);
}
$setClip(($clinit_96() , this$static.curPanel.element), 'rect(auto, auto, auto, auto)');
this$static.curPanel.element.style['overflow'] = 'visible';
}
 
function $onInstantaneousRun(this$static){
if (this$static.showing) {
this$static.curPanel.element.style['position'] = 'absolute';
if (this$static.curPanel.topPosition != -1) {
$setPopupPosition(this$static.curPanel, this$static.curPanel.leftPosition, this$static.curPanel.topPosition);
}
$add(($clinit_99() , get_0(null)), this$static.curPanel);
}
else {
$remove_0(($clinit_99() , get_0(null)), this$static.curPanel);
}
this$static.curPanel.element.style['overflow'] = 'visible';
}
 
function $onUpdate(this$static, progress){
var bottom, height, left, right, top, width;
if (!this$static.showing) {
progress = 1 - progress;
}
top = 0;
left = 0;
right = 0;
bottom = 0;
height = ~~Math.max(Math.min(progress * this$static.offsetHeight, 2147483647), -2147483648);
width = ~~Math.max(Math.min(progress * this$static.offsetWidth, 2147483647), -2147483648);
if (this$static.curPanel.animType == ($clinit_93() , CENTER)) {
top = this$static.offsetHeight - height >> 1;
left = this$static.offsetWidth - width >> 1;
}
else
this$static.curPanel.animType == ONE_WAY_CORNER;
right = left + width;
bottom = top + height;
$setClip(($clinit_96() , this$static.curPanel.element), 'rect(' + top + 'px, ' + right + 'px, ' + bottom + 'px, ' + left + 'px)');
}
 
function $setState(this$static, showing){
var animate;
$cancel(this$static);
animate = false;
if (this$static.curPanel.animType == ($clinit_93() , ONE_WAY_CORNER) && !showing) {
animate = false;
}
this$static.showing = showing;
if (animate) {
if (showing) {
this$static.curPanel.element.style['position'] = 'absolute';
if (this$static.curPanel.topPosition != -1) {
$setPopupPosition(this$static.curPanel, this$static.curPanel.leftPosition, this$static.curPanel.topPosition);
}
$setClip(($clinit_96() , this$static.curPanel.element), 'rect(0px, 0px, 0px, 0px)');
$add(($clinit_99() , get_0(null)), this$static.curPanel);
}
addCommand($PopupPanel$ResizeAnimation$1(new PopupPanel$ResizeAnimation$1(), this$static));
}
else {
$onInstantaneousRun(this$static);
}
}
 
function getClass_51(){
return Lcom_google_gwt_user_client_ui_PopupPanel$ResizeAnimation_2_classLit;
}
 
function PopupPanel$ResizeAnimation(){
}
 
_ = PopupPanel$ResizeAnimation.prototype = new Animation();
_.getClass$ = getClass_51;
_.typeId$ = 48;
_.curPanel = null;
_.offsetHeight = 0;
_.offsetWidth = -1;
_.showing = false;
function $PopupPanel$ResizeAnimation$1(this$static, this$1){
this$static.this$1 = this$1;
return this$static;
}
 
function execute(){
$run(this.this$1, 200, (new Date()).getTime());
}
 
function getClass_50(){
return Lcom_google_gwt_user_client_ui_PopupPanel$ResizeAnimation$1_2_classLit;
}
 
function PopupPanel$ResizeAnimation$1(){
}
 
_ = PopupPanel$ResizeAnimation$1.prototype = new Object_0();
_.execute = execute;
_.getClass$ = getClass_50;
_.typeId$ = 49;
_.this$1 = null;
function $clinit_99(){
$clinit_99 = nullMethod;
rootPanels = $HashMap(new HashMap());
widgetsToDetach = $HashSet(new HashSet());
}
 
function $RootPanel(this$static, elem){
$clinit_99();
this$static.children = $WidgetCollection(new WidgetCollection());
this$static.element = elem;
$onAttach(this$static);
return this$static;
}
 
function detachWidgets(){
var outerIter, entry;
$clinit_99();
var widget, widget$iterator;
for (widget$iterator = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), $keySet_1(widgetsToDetach.map).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(widget$iterator.val$outerIter.iter);) {
widget = dynamicCast((entry = $next_0(widget$iterator.val$outerIter) , entry.getKey_0()), 17);
if (widget.attached) {
widget.onDetach();
}
}
}
 
function get_0(id){
$clinit_99();
var elem, rp;
rp = dynamicCast($get_2(rootPanels, id), 18);
if (rp) {
return rp;
}
elem = null;
if (id != null) {
if (!(elem = $doc.getElementById(id))) {
return null;
}
}
if (rootPanels.size == 0) {
addWindowCloseListener(new RootPanel$1());
}
if (!elem) {
rp = $RootPanel$DefaultRootPanel(new RootPanel$DefaultRootPanel());
}
else {
rp = $RootPanel(new RootPanel(), elem);
}
$put(rootPanels, id, rp);
$add_9(widgetsToDetach, rp);
return rp;
}
 
function getClass_55(){
return Lcom_google_gwt_user_client_ui_RootPanel_2_classLit;
}
 
function RootPanel(){
}
 
_ = RootPanel.prototype = new AbsolutePanel();
_.getClass$ = getClass_55;
_.typeId$ = 50;
var rootPanels, widgetsToDetach;
function getClass_53(){
return Lcom_google_gwt_user_client_ui_RootPanel$1_2_classLit;
}
 
function onWindowClosed_0(){
detachWidgets();
}
 
function onWindowClosing_0(){
return null;
}
 
function RootPanel$1(){
}
 
_ = RootPanel$1.prototype = new Object_0();
_.getClass$ = getClass_53;
_.onWindowClosed = onWindowClosed_0;
_.onWindowClosing = onWindowClosing_0;
_.typeId$ = 51;
function $clinit_98(){
$clinit_98 = nullMethod;
$clinit_99();
}
 
function $RootPanel$DefaultRootPanel(this$static){
$clinit_98();
$RootPanel(this$static, $doc.body);
return this$static;
}
 
function getClass_54(){
return Lcom_google_gwt_user_client_ui_RootPanel$DefaultRootPanel_2_classLit;
}
 
function RootPanel$DefaultRootPanel(){
}
 
_ = RootPanel$DefaultRootPanel.prototype = new RootPanel();
_.getClass$ = getClass_54;
_.typeId$ = 52;
function $SimplePanel$1(this$static, this$0){
this$static.this$0 = this$0;
this$static.hasElement = !!this$static.this$0.widget_0;
return this$static;
}
 
function getClass_56(){
return Lcom_google_gwt_user_client_ui_SimplePanel$1_2_classLit;
}
 
function hasNext_0(){
return this.hasElement;
}
 
function next_1(){
if (!this.hasElement || !this.this$0.widget_0) {
throw new NoSuchElementException();
}
this.hasElement = false;
return this.this$0.widget_0;
}
 
function SimplePanel$1(){
}
 
_ = SimplePanel$1.prototype = new Object_0();
_.getClass$ = getClass_56;
_.hasNext = hasNext_0;
_.next_0 = next_1;
_.typeId$ = 0;
_.this$0 = null;
function $WidgetCollection(this$static){
this$static.array = initDim(_3Lcom_google_gwt_user_client_ui_Widget_2_classLit, 242, 17, 4, 0);
return this$static;
}
 
function $add_1(this$static, w){
$insert(this$static, w, this$static.size);
}
 
function $indexOf(this$static, w){
var i;
for (i = 0; i < this$static.size; ++i) {
if (this$static.array[i] == w) {
return i;
}
}
return -1;
}
 
function $insert(this$static, w, beforeIndex){
var i, newArray;
if (beforeIndex < 0 || beforeIndex > this$static.size) {
throw new IndexOutOfBoundsException();
}
if (this$static.size == this$static.array.length) {
newArray = initDim(_3Lcom_google_gwt_user_client_ui_Widget_2_classLit, 242, 17, this$static.array.length * 2, 0);
for (i = 0; i < this$static.array.length; ++i) {
setCheck(newArray, i, this$static.array[i]);
}
this$static.array = newArray;
}
++this$static.size;
for (i = this$static.size - 1; i > beforeIndex; --i) {
setCheck(this$static.array, i, this$static.array[i - 1]);
}
setCheck(this$static.array, beforeIndex, w);
}
 
function $remove_3(this$static, index){
var i;
if (index < 0 || index >= this$static.size) {
throw new IndexOutOfBoundsException();
}
--this$static.size;
for (i = index; i < this$static.size; ++i) {
setCheck(this$static.array, i, this$static.array[i + 1]);
}
setCheck(this$static.array, this$static.size, null);
}
 
function $remove_4(this$static, w){
var index;
index = $indexOf(this$static, w);
if (index == -1) {
throw new NoSuchElementException();
}
$remove_3(this$static, index);
}
 
function getClass_60(){
return Lcom_google_gwt_user_client_ui_WidgetCollection_2_classLit;
}
 
function WidgetCollection(){
}
 
_ = WidgetCollection.prototype = new Object_0();
_.getClass$ = getClass_60;
_.typeId$ = 0;
_.array = null;
_.size = 0;
function $WidgetCollection$WidgetIterator(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_59(){
return Lcom_google_gwt_user_client_ui_WidgetCollection$WidgetIterator_2_classLit;
}
 
function hasNext_1(){
return this.index_0 < this.this$0.size - 1;
}
 
function next_2(){
if (this.index_0 >= this.this$0.size) {
throw new NoSuchElementException();
}
return this.this$0.array[++this.index_0];
}
 
function WidgetCollection$WidgetIterator(){
}
 
_ = WidgetCollection$WidgetIterator.prototype = new Object_0();
_.getClass$ = getClass_59;
_.hasNext = hasNext_1;
_.next_0 = next_2;
_.typeId$ = 0;
_.index_0 = -1;
_.this$0 = null;
function $clinit_115(){
$clinit_115 = nullMethod;
isMac = isMac_0();
}
 
function $createElement_0(){
var outerElem;
outerElem = $doc.createElement('div');
if (isMac) {
outerElem.innerHTML = '<div><\/div>';
addCommand($PopupImplMozilla$1(new PopupImplMozilla$1(), outerElem));
}
return outerElem;
}
 
function $getContainerElement(outerElem){
return isMac?$getFirstChildElement(outerElem):outerElem;
}
 
function $setClip(popup, rect){
popup.style['clip'] = rect;
popup.style['display'] = 'none';
popup.style['display'] = '';
}
 
function isMac_0(){
if (navigator.userAgent.indexOf('Macintosh') != -1) {
return true;
}
return false;
}
 
var isMac;
function $PopupImplMozilla$1(this$static, val$outerElem){
this$static.val$outerElem = val$outerElem;
return this$static;
}
 
function execute_0(){
this.val$outerElem.style['overflow'] = 'auto';
}
 
function getClass_62(){
return Lcom_google_gwt_user_client_ui_impl_PopupImplMozilla$1_2_classLit;
}
 
function PopupImplMozilla$1(){
}
 
_ = PopupImplMozilla$1.prototype = new Object_0();
_.execute = execute_0;
_.getClass$ = getClass_62;
_.typeId$ = 53;
_.val$outerElem = null;
function $clinit_128(){
$clinit_128 = nullMethod;
$wnd.Ext.BLANK_IMAGE_URL = $moduleBase + 'clear.cache.gif';
init_0();
$wnd.Ext.QuickTips.init();
$clinit_231();
$wnd.Ext.form.Field.prototype.msgTarget = 'side';
}
 
function getClass_69(){
return Lcom_gwtext_client_core_JsObject_2_classLit;
}
 
function getJsObj(){
return this.jsObj;
}
 
function init_0(){
$clinit_122();
BACKSPACE = $wnd.Ext.EventObject.BACKSPACE;
CONTROL = $wnd.Ext.EventObject.CONTROL;
DELETE = $wnd.Ext.EventObject.DELETE;
DOWN = $wnd.Ext.EventObject.DOWN;
END = $wnd.Ext.EventObject.END;
ENTER = $wnd.Ext.EventObject.ENTER;
ESC = $wnd.Ext.EventObject.ESC;
F5 = $wnd.Ext.EventObject.F5;
HOME = $wnd.Ext.EventObject.HOME;
LEFT = $wnd.Ext.EventObject.LEFT;
PAGEDOWN = $wnd.Ext.EventObject.PAGEDOWN;
PAGEUP = $wnd.Ext.EventObject.PAGEUP;
RETURN = $wnd.Ext.EventObject.RETURN;
RIGHT = $wnd.Ext.EventObject.RIGHT;
SHIFT = $wnd.Ext.EventObject.SHIFT;
SPACE = $wnd.Ext.EventObject.SPACE;
TAB = $wnd.Ext.EventObject.TAB;
UP = $wnd.Ext.EventObject.UP;
Function.prototype.createCallback = function(){
var args = arguments;
var method = this;
return function(){
return method.apply(window, args);
}
;
}
;
Function.prototype.createDelegate = function(obj, args, appendArgs){
var method = this;
return function(){
var callArgs = args || arguments;
if (appendArgs === true) {
callArgs = Array.prototype.slice.call(arguments, 0);
callArgs = callArgs.concat(args);
}
else if (typeof appendArgs == 'number') {
callArgs = Array.prototype.slice.call(arguments, 0);
var applyArgs = [appendArgs, 0].concat(args);
Array.prototype.splice.apply(callArgs, applyArgs);
}
return method.apply(obj || window, callArgs);
}
;
}
;
Function.prototype.defer = function(millis, obj, args, appendArgs){
var fn = this.createDelegate(obj, args, appendArgs);
if (millis) {
return setTimeout(fn, millis);
}
fn();
return 0;
}
;
Function.prototype.createSequence = function(fcn, scope){
if (typeof fcn != 'function') {
return this;
}
var method = this;
return function(){
var retval = method.apply(this, arguments);
fcn.apply(scope || this, arguments);
return retval;
}
;
}
;
Function.prototype.createInterceptor = function(fcn, scope){
if (typeof fcn != 'function') {
return this;
}
var method = this;
return function(){
fcn.target = this;
fcn.method = method;
if (fcn.apply(scope || this, arguments) === false) {
return;
}
return method.apply(this, arguments);
}
;
}
;
$wnd.Ext.namespace('GwtExt');
$wnd.GwtExt.convertToJavaType = function(obj){
if (obj == null || obj === undefined)
return null;
if (typeof obj == 'string') {
return obj;
}
else if (typeof obj == 'number') {
if (obj.toString().indexOf('.') == -1) {
if (obj <= 2147483647) {
return $Integer(new Integer(), obj);
}
else {
return $Long(new Long(), fromDouble(obj));
}
}
else {
if (obj <= 3.4028234663852886E38) {
return $Float(new Float(), obj);
}
else {
return $Double(new Double(), obj);
}
}
}
else if (typeof obj == 'boolean') {
return $clinit_302() , obj?TRUE_0:FALSE_0;
}
else if (obj instanceof $wnd.Date) {
return $Date(new Date_0(), fromDouble(obj.getTime()));
}
else {
throw 'Unrecognized type ' + typeof obj + ' for value ' + obj.toString();
}
}
;
}
 
function JsObject(){
}
 
_ = JsObject.prototype = new Object_0();
_.getClass$ = getClass_69;
_.getJsObj = getJsObj;
_.typeId$ = 54;
_.jsObj = null;
function $clinit_117(){
$clinit_117 = nullMethod;
$clinit_128();
}
 
function getClass_63(){
return Lcom_gwtext_client_core_BaseConfig_2_classLit;
}
 
function BaseConfig(){
}
 
_ = BaseConfig.prototype = new JsObject();
_.getClass$ = getClass_63;
_.typeId$ = 55;
function $clinit_118(){
$clinit_118 = nullMethod;
$clinit_128();
}
 
function $addKeyListener(this$static, keyCode, listener){
var elem = this$static.getJsObj();
var km = elem.addKeyListener(keyCode, function(key, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onKey(key, e);
}
);
return $clinit_166() , $KeyMap(new KeyMap(), km);
}
 
function $addListener(this$static, eventName, cb){
var el = this$static.getJsObj();
el.addListener(eventName, function(event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
cb.execute_0(e);
}
);
}
 
function $addListener_0(this$static, eventName, cb, config){
var el = this$static.getJsObj();
el.addListener(eventName, function(event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
cb.execute_0(e);
}
, null, config.jsObj);
}
 
function $update_0(this$static, html, loadScripts){
var el = this$static.getJsObj();
el.update(html, loadScripts);
}
 
function getClass_64(){
return Lcom_gwtext_client_core_BaseElement_2_classLit;
}
 
function BaseElement(){
}
 
_ = BaseElement.prototype = new JsObject();
_.getClass$ = getClass_64;
_.typeId$ = 56;
function $DomConfig(this$static, tag, id){
this$static.otherConfig = $HashMap(new HashMap());
this$static.tag = tag;
this$static.id_0 = id;
return this$static;
}
 
function $getJsObject(this$static){
var attribute, iterator, jsObj, value, outerIter, entry;
jsObj = new Object();
if (this$static.tag != null) {
jsObj['tag'] = this$static.tag;
}
if (this$static.id_0 != null) {
jsObj['id'] = this$static.id_0;
}
if (this$static.style_0 != null) {
jsObj['style'] = this$static.style_0;
}
for (iterator = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), $keySet_1(this$static.otherConfig).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(iterator.val$outerIter.iter);) {
attribute = dynamicCast((entry = $next_0(iterator.val$outerIter) , entry.getKey_0()), 1);
value = dynamicCast($get_2(this$static.otherConfig, attribute), 1);
jsObj[attribute] = value;
}
return jsObj;
}
 
function getClass_65(){
return Lcom_gwtext_client_core_DomConfig_2_classLit;
}
 
function getJsObject(){
return $getJsObject(this);
}
 
function DomConfig(){
}
 
_ = DomConfig.prototype = new Object_0();
_.getClass$ = getClass_65;
_.getJsObject = getJsObject;
_.typeId$ = 0;
_.id_0 = null;
_.style_0 = null;
_.tag = null;
function append_0(parent, config){
var configJS = config.getJsObject();
return $wnd.Ext.DomHelper.append(parent, configJS);
}
 
function $clinit_122(){
$clinit_122 = nullMethod;
$clinit_128();
}
 
function $EventObject(this$static, jsObj){
$clinit_122();
this$static.jsObj = jsObj;
return this$static;
}
 
function $getBrowserEvent(this$static){
var e = this$static.getJsObj();
return e.browserEvent;
}
 
function $getCharCode(this$static){
var e = this$static.getJsObj();
return e.getCharCode();
}
 
function $getKey(this$static){
var e = this$static.getJsObj();
var key = e.getKey();
return key == null || key === undefined?-1:key;
}
 
function $getPageX(this$static){
var e = this$static.getJsObj();
return e.getPageX();
}
 
function $getPageY(this$static){
var e = this$static.getJsObj();
return e.getPageY();
}
 
function $getTarget(this$static){
var e = this$static.getJsObj();
var el = e.getTarget();
return el === undefined?null:el;
}
 
function $stopEvent(this$static){
var e = this$static.getJsObj();
e.stopEvent();
}
 
function getClass_66(){
return Lcom_gwtext_client_core_EventObject_2_classLit;
}
 
function EventObject(){
}
 
_ = EventObject.prototype = new JsObject();
_.getClass$ = getClass_66;
_.typeId$ = 57;
var BACKSPACE = 0, CONTROL = 0, DELETE = 0, DOWN = 0, END = 0, ENTER = 0, ESC = 0, F5 = 0, HOME = 0, LEFT = 0, PAGEDOWN = 0, PAGEUP = 0, RETURN = 0, RIGHT = 0, SHIFT = 0, SPACE = 0, TAB = 0, UP = 0;
function get_1(id){
var el = $wnd.Ext.get(id);
return el == null || el === undefined?null:($clinit_123() , $ExtElement(new ExtElement(), el));
}
 
function $clinit_123(){
$clinit_123 = nullMethod;
$clinit_118();
}
 
function $ExtElement(this$static, jsObj){
$clinit_123();
this$static.jsObj = jsObj;
return this$static;
}
 
function $mask_0(this$static, msg, animatedIcon){
var el, me, el_0, me_0;
if (animatedIcon) {
return el = this$static.getJsObj() , me = el.mask(msg, 'x-mask-loading') , ($clinit_123() , $ExtElement(new ExtElement(), me));
}
else {
return el_0 = this$static.getJsObj() , me_0 = el_0.mask(msg, null) , ($clinit_123() , $ExtElement(new ExtElement(), me_0));
}
}
 
function getClass_67(){
return Lcom_gwtext_client_core_ExtElement_2_classLit;
}
 
function ExtElement(){
}
 
_ = ExtElement.prototype = new BaseElement();
_.getClass$ = getClass_67;
_.typeId$ = 58;
function $clinit_127(){
$clinit_127 = nullMethod;
$clinit_117();
}
 
function $setProperty_0(this$static, property, value){
this$static.jsObj[property] = value;
}
 
function getClass_68(){
return Lcom_gwtext_client_core_GenericConfig_2_classLit;
}
 
function GenericConfig(){
}
 
_ = GenericConfig.prototype = new BaseConfig();
_.getClass$ = getClass_68;
_.typeId$ = 59;
function $clinit_129(){
$clinit_129 = nullMethod;
$clinit_117();
}
 
function $ListenerConfig(this$static){
$clinit_129();
this$static.jsObj = new Object();
return this$static;
}
 
function getClass_70(){
return Lcom_gwtext_client_core_ListenerConfig_2_classLit;
}
 
function ListenerConfig(){
}
 
_ = ListenerConfig.prototype = new BaseConfig();
_.getClass$ = getClass_70;
_.typeId$ = 60;
function $clinit_130(){
$clinit_130 = nullMethod;
$clinit_128();
}
 
function $Margins(this$static, top, left, right, bottom){
$clinit_130();
this$static.top_0 = top;
this$static.left_0 = left;
this$static.right = right;
this$static.bottom = bottom;
this$static.jsObj = {};
this$static.jsObj['top'] = top;
this$static.jsObj['left'] = left;
this$static.jsObj['right'] = right;
this$static.jsObj['bottom'] = bottom;
return this$static;
}
 
function getClass_71(){
return Lcom_gwtext_client_core_Margins_2_classLit;
}
 
function Margins(){
}
 
_ = Margins.prototype = new JsObject();
_.getClass$ = getClass_71;
_.typeId$ = 61;
_.bottom = 0;
_.left_0 = 0;
_.right = 0;
_.top_0 = 0;
function $clinit_131(){
$clinit_131 = nullMethod;
$clinit_128();
}
 
function $NameValuePair(this$static, name, value){
$clinit_131();
this$static.jsObj = new Object();
this$static.jsObj['name'] = name;
this$static.jsObj['value'] = value;
this$static.type_0 = 0;
return this$static;
}
 
function getClass_72(){
return Lcom_gwtext_client_core_NameValuePair_2_classLit;
}
 
function getJsObj_0(nameValuePairs){
var ret_3, ret_4, ret_5, ret, ret_6, ret_1, ret_7, ret_2, ret_8, ret_0, ret_9, ret_10;
$clinit_131();
var i, param, paramObj;
paramObj = new Object();
if (nameValuePairs == null)
return paramObj;
for (i = 0; i < nameValuePairs.length; ++i) {
param = nameValuePairs[i];
switch (param.type_0) {
case 0:
{
setAttribute_4(paramObj, (ret_3 = param.jsObj['name'] , ret_3 === undefined?null:String(ret_3)), (ret_4 = param.jsObj['value'] , ret_4 === undefined?null:String(ret_4)));
break;
}
 
case 1:
{
setAttribute_6(paramObj, (ret_5 = param.jsObj['name'] , ret_5 === undefined?null:String(ret_5)), (ret = param.jsObj['value'] , ret === undefined?false:ret));
break;
}
 
case 2:
{
setAttribute_0(paramObj, (ret_6 = param.jsObj['name'] , ret_6 === undefined?null:String(ret_6)), (ret_1 = param.jsObj['value'] , ret_1 === undefined?0:ret_1));
break;
}
 
case 3:
{
setAttribute_1(paramObj, (ret_7 = param.jsObj['name'] , ret_7 === undefined?null:String(ret_7)), (ret_2 = param.jsObj['value'] , ret_2 === undefined?0:ret_2));
break;
}
 
case 4:
{
setAttribute_5(paramObj, (ret_8 = param.jsObj['name'] , ret_8 === undefined?null:String(ret_8)), (ret_0 = param.jsObj['value'] , ret_0 === undefined || ret_0 == null?null:$Date(new Date_0(), fromDouble(ret_0.getTime()))));
break;
}
 
default:{
setAttribute_4(paramObj, (ret_9 = param.jsObj['name'] , ret_9 === undefined?null:String(ret_9)), (ret_10 = param.jsObj['value'] , ret_10 === undefined?null:String(ret_10)));
}
 
}
}
return paramObj;
}
 
function NameValuePair(){
}
 
_ = NameValuePair.prototype = new JsObject();
_.getClass$ = getClass_72;
_.typeId$ = 62;
_.type_0 = 0;
function $Paddings(this$static, top, left, right, bottom){
this$static.top_0 = top;
this$static.left_0 = left;
this$static.right = right;
this$static.bottom = bottom;
return this$static;
}
 
function getClass_73(){
return Lcom_gwtext_client_core_Paddings_2_classLit;
}
 
function Paddings(){
}
 
_ = Paddings.prototype = new Object_0();
_.getClass$ = getClass_73;
_.typeId$ = 0;
_.bottom = 0;
_.left_0 = 0;
_.right = 0;
_.top_0 = 0;
function $clinit_133(){
$clinit_133 = nullMethod;
$Position(new Position(), 'left');
RIGHT_0 = $Position(new Position(), 'right');
$Position(new Position(), 'center');
$Position(new Position(), 'top');
$Position(new Position(), 'bottom');
$Position(new Position(), 'auto');
}
 
function $Position(this$static, position){
$clinit_133();
this$static.position = position;
return this$static;
}
 
function getClass_74(){
return Lcom_gwtext_client_core_Position_2_classLit;
}
 
function Position(){
}
 
_ = Position.prototype = new Object_0();
_.getClass$ = getClass_74;
_.typeId$ = 0;
_.position = null;
var RIGHT_0;
function $clinit_134(){
$clinit_134 = nullMethod;
NORTH = $RegionPosition(new RegionPosition(), 'north');
$RegionPosition(new RegionPosition(), 'south');
EAST = $RegionPosition(new RegionPosition(), 'east');
WEST = $RegionPosition(new RegionPosition(), 'west');
CENTER_0 = $RegionPosition(new RegionPosition(), 'center');
}
 
function $RegionPosition(this$static, position){
$clinit_134();
this$static.position = position;
return this$static;
}
 
function getClass_75(){
return Lcom_gwtext_client_core_RegionPosition_2_classLit;
}
 
function RegionPosition(){
}
 
_ = RegionPosition.prototype = new Object_0();
_.getClass$ = getClass_75;
_.typeId$ = 0;
_.position = null;
var CENTER_0, EAST, NORTH, WEST;
function $clinit_135(){
$clinit_135 = nullMethod;
$clinit_128();
}
 
function $Template(this$static, html){
$clinit_135();
this$static.jsObj = new $wnd.Ext.Template($replaceAll(html, "'", '"'));
this$static.html = html;
return this$static;
}
 
function getClass_76(){
return Lcom_gwtext_client_core_Template_2_classLit;
}
 
function Template(){
}
 
_ = Template.prototype = new JsObject();
_.getClass$ = getClass_76;
_.typeId$ = 63;
_.html = null;
function $clinit_136(){
$clinit_136 = nullMethod;
$clinit_131();
}
 
function $UrlParam(this$static, paramName, paramValue){
$clinit_136();
$NameValuePair(this$static, paramName, paramValue);
return this$static;
}
 
function getClass_77(){
return Lcom_gwtext_client_core_UrlParam_2_classLit;
}
 
function UrlParam(){
}
 
_ = UrlParam.prototype = new NameValuePair();
_.getClass$ = getClass_77;
_.typeId$ = 64;
function $clinit_137(){
$clinit_137 = nullMethod;
$clinit_128();
}
 
function $XTemplate(this$static, htmlfrags){
var htmlfrag, i;
$clinit_137();
htmlfrag = '';
for (i = 0; i < htmlfrags.length; ++i) {
htmlfrag += htmlfrags[i];
}
this$static.html = $replaceAll(htmlfrag, "'", '"');
this$static.jsObj = new $wnd.Ext.XTemplate(this$static.html);
return this$static;
}
 
function $compile_0(this$static){
var template = this$static.getJsObj();
template.compile();
}
 
function getClass_78(){
return Lcom_gwtext_client_core_XTemplate_2_classLit;
}
 
function XTemplate(){
}
 
_ = XTemplate.prototype = new JsObject();
_.getClass$ = getClass_78;
_.typeId$ = 65;
_.html = null;
function $clinit_145(){
$clinit_145 = nullMethod;
$clinit_128();
}
 
function $getJsObj_0(this$static){
if (!this$static.jsObj) {
if (!this$static.recordDef) {
throw $IllegalStateException(new IllegalStateException(), 'You must specify a RecordDef for this reader');
}
this$static.jsObj = new $wnd.Ext.data.ArrayReader(this$static.configJS, this$static.recordDef.jsObj);
}
return this$static.jsObj;
}
 
function getClass_85(){
return Lcom_gwtext_client_data_Reader_2_classLit;
}
 
function getJsObj_2(){
return $getJsObj_0(this);
}
 
function Reader(){
}
 
_ = Reader.prototype = new JsObject();
_.getClass$ = getClass_85;
_.getJsObj = getJsObj_2;
_.typeId$ = 66;
_.recordDef = null;
function $clinit_138(){
$clinit_138 = nullMethod;
$clinit_145();
}
 
function $ArrayReader_0(this$static, recordDef){
$clinit_138();
this$static.configJS = new Object();
this$static.recordDef = recordDef;
return this$static;
}
 
function $ArrayReader(this$static, id, recordDef){
$clinit_138();
this$static.configJS = new Object();
this$static.configJS['id'] = id;
this$static.recordDef = recordDef;
return this$static;
}
 
function getClass_79(){
return Lcom_gwtext_client_data_ArrayReader_2_classLit;
}
 
function ArrayReader(){
}
 
_ = ArrayReader.prototype = new Reader();
_.getClass$ = getClass_79;
_.typeId$ = 67;
function $clinit_139(){
$clinit_139 = nullMethod;
$clinit_128();
}
 
function getClass_80(){
return Lcom_gwtext_client_data_DataProxy_2_classLit;
}
 
function DataProxy(){
}
 
_ = DataProxy.prototype = new JsObject();
_.getClass$ = getClass_80;
_.typeId$ = 68;
function $clinit_140(){
$clinit_140 = nullMethod;
$clinit_128();
}
 
function getClass_81(){
return Lcom_gwtext_client_data_FieldDef_2_classLit;
}
 
function FieldDef(){
}
 
_ = FieldDef.prototype = new JsObject();
_.getClass$ = getClass_81;
_.typeId$ = 69;
function $clinit_141(){
$clinit_141 = nullMethod;
$clinit_140();
}
 
function $IntegerFieldDef(this$static, name){
var jsObj;
$clinit_141();
this$static.jsObj = (jsObj = new Object() , (jsObj['name'] = name , undefined) , (jsObj['type'] = 'int' , undefined) , jsObj);
return this$static;
}
 
function getClass_82(){
return Lcom_gwtext_client_data_IntegerFieldDef_2_classLit;
}
 
function IntegerFieldDef(){
}
 
_ = IntegerFieldDef.prototype = new FieldDef();
_.getClass$ = getClass_82;
_.typeId$ = 70;
function $clinit_142(){
$clinit_142 = nullMethod;
$clinit_139();
}
 
function $MemoryProxy(this$static, data){
$clinit_142();
this$static.jsObj = new $wnd.Ext.data.MemoryProxy(convertToJavaScriptArray_0(data));
return this$static;
}
 
function getClass_83(){
return Lcom_gwtext_client_data_MemoryProxy_2_classLit;
}
 
function MemoryProxy(){
}
 
_ = MemoryProxy.prototype = new DataProxy();
_.getClass$ = getClass_83;
_.typeId$ = 71;
function $clinit_144(){
$clinit_144 = nullMethod;
$clinit_128();
}
 
function $Node_0(this$static, jsObj){
$clinit_144();
this$static.jsObj = jsObj;
this$static.configJS = new Object();
return this$static;
}
 
function $appendChild_0(this$static, child){
var node = this$static.getJsObj();
var childJS = child.getJsObj();
node.appendChild(childJS);
}
 
function $cascade(this$static, cb){
var node = this$static.getJsObj();
var nodeJ = this$static;
node.cascade(function(n_0){
var nj = nodeJ.createNode(n_0);
return cb.execute_1(nj);
}
);
}
 
function $eachChild(this$static, cb){
var node = this$static.getJsObj();
var nodeJ = this$static;
node.eachChild(function(n_0){
var nj = nodeJ.createNode(n_0);
return cb.execute_1(nj);
}
);
}
 
function $getChildNodes(this$static){
var i, jsNode, jsNodes, nodes, arrayJS;
jsNodes = (arrayJS = $getJsObj(this$static)['childNodes'] , arrayJS === undefined?null:toArray(arrayJS));
if (jsNodes == null)
return null;
nodes = initDim(_3Lcom_gwtext_client_data_Node_2_classLit, 248, 34, jsNodes.length, 0);
for (i = 0; i < jsNodes.length; ++i) {
jsNode = jsNodes[i];
setCheck(nodes, i, this$static.createNode(jsNode));
}
return nodes;
}
 
function $getId(this$static){
var node = this$static.getJsObj();
return node.id === undefined?null:node.id.toString();
}
 
function $getJsObj(this$static){
if (!this$static.jsObj) {
this$static.jsObj = this$static.create_0(this$static.configJS);
$setUserObject(this$static, this$static.userObject);
}
return this$static.jsObj;
}
 
function $getParentNode(this$static){
var node = this$static.getJsObj();
if (node.parentNode == null || node.parentNode === undefined) {
return null;
}
else {
return this$static.createNode(node.parentNode);
}
}
 
function $getUserObject(this$static){
if (this$static.jsObj) {
return $getUserObjectCreated(this$static);
}
else {
return this$static.userObject;
}
}
 
function $getUserObjectCreated(this$static){
var node = this$static.getJsObj();
if (node.attributes._data === undefined) {
return null;
}
else {
return node.attributes._data;
}
}
 
function $remove_5(this$static){
var node = this$static.getJsObj();
node.remove();
}
 
function $removeChild_0(this$static, child){
var node = this$static.getJsObj();
var childJS = child.getJsObj();
var nodeRemoved = node.removeChild(childJS);
if (nodeRemoved == null || nodeRemoved === undefined)
return null;
return this$static.createNode(nodeRemoved);
}
 
function $setId(this$static, id){
var node;
if (this$static.jsObj) {
node = this$static.getJsObj();
node.id = id;
}
else {
this$static.configJS['id'] = id;
}
}
 
function $setUserObject(this$static, userObject){
var node;
if (this$static.jsObj) {
node = this$static.getJsObj();
node.attributes._data = userObject;
}
else {
this$static.userObject = userObject;
}
}
 
function create_1(config){
return new $wnd.Ext.data.Node(config);
}
 
function createNode(jsNode){
return $Node_0(new Node_0(), jsNode);
}
 
function equals_4(o){
var id, node_2, oid;
if ((this == null?null:this) === (o == null?null:o))
return true;
if (o == null || !(o != null && canCast(o.typeId$, 34)))
return false;
node_2 = dynamicCast(o, 34);
id = $getId(this);
oid = $getId(node_2);
if (id != null?!$equals_1(id, oid):oid != null)
return false;
return true;
}
 
function getClass_84(){
return Lcom_gwtext_client_data_Node_2_classLit;
}
 
function getJsObj_1(){
return $getJsObj(this);
}
 
function hashCode_5(){
var id;
return id = $getId(this) , id != null?getHashCode_0(id):0;
}
 
function Node_0(){
}
 
_ = Node_0.prototype = new JsObject();
_.create_0 = create_1;
_.createNode = createNode;
_.equals$ = equals_4;
_.getClass$ = getClass_84;
_.getJsObj = getJsObj_1;
_.hashCode$ = hashCode_5;
_.typeId$ = 72;
_.userObject = null;
function $clinit_148(){
$clinit_148 = nullMethod;
$clinit_128();
$Record$Operation(new Record$Operation(), 'edit');
$Record$Operation(new Record$Operation(), 'reject');
$Record$Operation(new Record$Operation(), 'commit');
}
 
function $Record(this$static, jsObj){
$clinit_148();
this$static.jsObj = jsObj;
return this$static;
}
 
function $getAsInteger(this$static, field){
var record = this$static.getJsObj();
var value = record.get(field);
return value === undefined || value == null?0:parseInt(value);
}
 
function $getAsString(this$static, field){
var record = this$static.getJsObj();
var value = record.get(field);
return value === undefined || (value == null || value === '')?null:value.toString();
}
 
function $set(this$static, field, value){
var record = this$static.getJsObj();
record.set(field, value);
}
 
function getClass_88(){
return Lcom_gwtext_client_data_Record_2_classLit;
}
 
function Record(){
}
 
_ = Record.prototype = new JsObject();
_.getClass$ = getClass_88;
_.typeId$ = 73;
function $Record$Operation(this$static, operation){
this$static.operation = operation;
return this$static;
}
 
function equals_5(o){
var operation1;
if ((this == null?null:this) === (o == null?null:o))
return true;
if (!(o != null && canCast(o.typeId$, 35)))
return false;
operation1 = dynamicCast(o, 35);
if (!$equals_1(this.operation, operation1.operation))
return false;
return true;
}
 
function getClass_86(){
return Lcom_gwtext_client_data_Record$Operation_2_classLit;
}
 
function hashCode_6(){
return getHashCode_0(this.operation);
}
 
function Record$Operation(){
}
 
_ = Record$Operation.prototype = new Object_0();
_.equals$ = equals_5;
_.getClass$ = getClass_86;
_.hashCode$ = hashCode_6;
_.typeId$ = 74;
_.operation = null;
function $clinit_147(){
$clinit_147 = nullMethod;
$clinit_128();
}
 
function $RecordDef(this$static, fields){
var i, jsObj, jsObjs, numFields;
$clinit_147();
numFields = fields.length;
jsObjs = initDim(_3Lcom_google_gwt_core_client_JavaScriptObject_2_classLit, 234, -1, numFields, 0);
for (i = 0; i < numFields; ++i) {
jsObj = fields[i].jsObj;
setCheck(jsObjs, i, jsObj);
}
this$static.jsObj = $wnd.Ext.data.Record.create(convertToJavaScriptArray_0(jsObjs));
return this$static;
}
 
function getClass_87(){
return Lcom_gwtext_client_data_RecordDef_2_classLit;
}
 
function RecordDef(){
}
 
_ = RecordDef.prototype = new JsObject();
_.getClass$ = getClass_87;
_.typeId$ = 75;
function $clinit_150(){
$clinit_150 = nullMethod;
$clinit_128();
}
 
function $Store_0(this$static, jsObj){
$clinit_150();
this$static.jsObj = jsObj;
this$static.configJS = new Object();
return this$static;
}
 
function $Store_2(this$static, recordDef){
$clinit_150();
this$static.configJS = new Object();
this$static.configJS['recordType'] = recordDef.jsObj;
return this$static;
}
 
function $Store_1(this$static, dataProxy, reader){
$clinit_150();
this$static.configJS = new Object();
$setDataProxy(this$static, dataProxy);
this$static.configJS['reader'] = $getJsObj_0(reader);
return this$static;
}
 
function $getAt(this$static, index){
var store = this$static.getJsObj();
var rec = store.getAt(index);
if (rec == null || rec === undefined)
return null;
return $clinit_148() , $Record(new Record(), rec);
}
 
function $getJsObj_2(this$static){
if (!this$static.jsObj) {
this$static.jsObj = new $wnd.Ext.data.Store(this$static.configJS);
}
return this$static.jsObj;
}
 
function $indexOf_0(this$static, record){
var store = this$static.getJsObj();
var rec = record.getJsObj();
return store.indexOf(rec);
}
 
function $load(this$static){
var store = this$static.getJsObj();
store.load();
}
 
function $setDataProxy(this$static, proxy){
var store, proxyJS;
if (this$static.jsObj) {
store = this$static.getJsObj();
proxyJS = proxy.getJsObj();
store.proxy = proxyJS;
}
else {
this$static.configJS['proxy'] = proxy.jsObj;
}
}
 
function convertFromNativeRecordsArray(nativeArray){
$clinit_150();
var i, record, records, recordsj;
recordsj = toArray(nativeArray);
records = initDim(_3Lcom_gwtext_client_data_Record_2_classLit, 249, 50, recordsj.length, 0);
for (i = 0; i < recordsj.length; ++i) {
record = recordsj[i];
records[i] = $Record(new Record(), record);
}
return records;
}
 
function getClass_90(){
return Lcom_gwtext_client_data_Store_2_classLit;
}
 
function getJsObj_3(){
return $getJsObj_2(this);
}
 
function Store(){
}
 
_ = Store.prototype = new JsObject();
_.getClass$ = getClass_90;
_.getJsObj = getJsObj_3;
_.typeId$ = 76;
function $clinit_149(){
$clinit_149 = nullMethod;
$clinit_150();
}
 
function $SimpleStore_0(this$static, fields, data){
$clinit_149();
$SimpleStore(this$static, -1, fields, data);
return this$static;
}
 
function $SimpleStore(this$static, id, fields, data){
var field, fieldDefs, i, proxy, reader, recordDef;
$clinit_149();
this$static.configJS = new Object();
proxy = $MemoryProxy(new MemoryProxy(), data);
fieldDefs = initDim(_3Lcom_gwtext_client_data_FieldDef_2_classLit, 247, 37, fields.length, 0);
for (i = 0; i < fields.length; ++i) {
field = fields[i];
setCheck(fieldDefs, i, $StringFieldDef(new StringFieldDef(), field));
}
recordDef = $RecordDef(new RecordDef(), fieldDefs);
reader = null;
if (id != -1) {
reader = $ArrayReader(new ArrayReader(), id, recordDef);
}
else {
reader = $ArrayReader_0(new ArrayReader(), recordDef);
}
$setDataProxy(this$static, proxy);
this$static.configJS['reader'] = $getJsObj_0(reader);
return this$static;
}
 
function getClass_89(){
return Lcom_gwtext_client_data_SimpleStore_2_classLit;
}
 
function SimpleStore(){
}
 
_ = SimpleStore.prototype = new Store();
_.getClass$ = getClass_89;
_.typeId$ = 77;
function $clinit_151(){
$clinit_151 = nullMethod;
$clinit_140();
}
 
function $StringFieldDef(this$static, name){
var jsObj;
$clinit_151();
this$static.jsObj = (jsObj = new Object() , (jsObj['name'] = name , undefined) , (jsObj['type'] = 'string' , undefined) , jsObj);
return this$static;
}
 
function getClass_91(){
return Lcom_gwtext_client_data_StringFieldDef_2_classLit;
}
 
function StringFieldDef(){
}
 
_ = StringFieldDef.prototype = new FieldDef();
_.getClass$ = getClass_91;
_.typeId$ = 78;
function $clinit_152(){
$clinit_152 = nullMethod;
$clinit_128();
}
 
function $Tree(this$static){
$clinit_152();
this$static.jsObj = new $wnd.Ext.data.Tree();
return this$static;
}
 
function $Tree_0(this$static, jsObj){
$clinit_152();
this$static.jsObj = jsObj;
return this$static;
}
 
function $getRootNode(this$static){
var root;
root = this$static.jsObj.getRootNode();
return !root?null:$Node_0(new Node_0(), root);
}
 
function $setRootNode(this$static, node){
var tree = this$static.getJsObj();
var nodeJS = node.getJsObj();
tree.setRootNode(nodeJS);
}
 
function getClass_92(){
return Lcom_gwtext_client_data_Tree_2_classLit;
}
 
function Tree(){
}
 
_ = Tree.prototype = new JsObject();
_.getClass$ = getClass_92;
_.typeId$ = 79;
function $clinit_159(){
$clinit_159 = nullMethod;
$clinit_128();
init_1();
}
 
function $DragDrop(this$static, jsObj){
$clinit_159();
this$static.jsObj = jsObj;
return this$static;
}
 
function $DragDrop_0(this$static, component, config){
$clinit_159();
if ($isRendered(component)) {
this$static.jsObj = new $wnd.Ext.dd.DropTarget(component.id_0, !config?null:config.jsObj);
this$static.jsObj.ddJ = this$static;
}
else {
$addListener_3(component, 'render', $DragDrop$1(new DragDrop$1(), this$static, component, config));
}
return this$static;
}
 
function convertToDragDropArray(nativeArray){
var dd, i, items, itemsJ;
itemsJ = toArray(nativeArray);
items = initDim(_3Lcom_gwtext_client_dd_DragDrop_2_classLit, 250, 38, itemsJ.length, 0);
for (i = 0; i < itemsJ.length; ++i) {
dd = itemsJ[i];
setCheck(items, i, $DragDrop(new DragDrop(), dd));
}
return items;
}
 
function endDrag(e){
}
 
function getClass_99(){
return Lcom_gwtext_client_dd_DragDrop_2_classLit;
}
 
function init_1(){
$wnd.Ext.dd.DragDrop.prototype.ddJ = null;
$wnd.Ext.dd.DragDrop.prototype.startDrag = function(x_0, y){
var ddJ = this.ddJ;
if (ddJ != null)
ddJ.startDrag_0(x_0, y);
}
;
$wnd.Ext.dd.DragDrop.prototype.endDrag = function(e){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
ddJ.endDrag_0(eJ);
}
}
;
$wnd.Ext.dd.DragDrop.prototype.onDrag = function(e){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
ddJ.onDrag_0(eJ);
}
}
;
$wnd.Ext.dd.DragDrop.prototype.onDragDrop = function(e, id){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
if (typeof id == 'string') {
ddJ.onDragDrop_0(eJ, id);
}
else {
var items = convertToDragDropArray(id);
ddJ.onDragDrop_1(eJ, items);
}
}
}
;
$wnd.Ext.dd.DragDrop.prototype.onDragEnter = function(e, id){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
if (typeof id == 'string') {
ddJ.onDragEnter_0(eJ, id);
}
else {
var items = convertToDragDropArray(id);
ddJ.onDragEnter_1(eJ, items);
}
}
}
;
$wnd.Ext.dd.DragDrop.prototype.onDragOut = function(e, id){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
if (typeof id == 'string') {
ddJ.onDragOut_0(eJ, id);
}
else {
var items = convertToDragDropArray(id);
ddJ.onDragOut_1(eJ, items);
}
}
}
;
$wnd.Ext.dd.DragDrop.prototype.onDragOver = function(e, id){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
if (typeof id == 'string') {
ddJ.onDragOver_0(eJ, id);
}
else {
var items = convertToDragDropArray(id);
ddJ.onDragOver_1(eJ, items);
}
}
}
;
$wnd.Ext.dd.DragDrop.prototype.onInvalidDrop = function(e){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
ddJ.onInvalidDrop_0(eJ);
}
}
;
$wnd.Ext.dd.DragDrop.prototype.onMouseDown = function(e){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
ddJ.onMouseDown_1(eJ);
}
}
;
$wnd.Ext.dd.DragDrop.prototype.onMouseUp = function(e){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
ddJ.onMouseUp_1(eJ);
}
}
;
}
 
function onDrag(e){
}
 
function onDragDrop(e, id){
}
 
function onDragDrop_0(e, items){
}
 
function onDragEnter(e, id){
}
 
function onDragEnter_0(e, items){
}
 
function onDragOut(e, id){
}
 
function onDragOut_0(e, items){
}
 
function onDragOver(e, id){
}
 
function onDragOver_0(e, items){
}
 
function onInvalidDrop(e){
}
 
function onMouseDown_1(e){
}
 
function onMouseUp_1(e){
}
 
function startDrag(x_0, y){
}
 
function toString_11(){
var dd = this.getJsObj();
return dd.toString();
}
 
function DragDrop(){
}
 
_ = DragDrop.prototype = new JsObject();
_.endDrag_0 = endDrag;
_.getClass$ = getClass_99;
_.onDrag_0 = onDrag;
_.onDragDrop_0 = onDragDrop;
_.onDragDrop_1 = onDragDrop_0;
_.onDragEnter_0 = onDragEnter;
_.onDragEnter_1 = onDragEnter_0;
_.onDragOut_0 = onDragOut;
_.onDragOut_1 = onDragOut_0;
_.onDragOver_0 = onDragOver;
_.onDragOver_1 = onDragOver_0;
_.onInvalidDrop_0 = onInvalidDrop;
_.onMouseDown_1 = onMouseDown_1;
_.onMouseUp_1 = onMouseUp_1;
_.startDrag_0 = startDrag;
_.toString$ = toString_11;
_.typeId$ = 80;
function $clinit_155(){
$clinit_155 = nullMethod;
$clinit_159();
}
 
function $DD(this$static, jsObj){
$clinit_155();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_95(){
return Lcom_gwtext_client_dd_DD_2_classLit;
}
 
function DD(){
}
 
_ = DD.prototype = new DragDrop();
_.getClass$ = getClass_95;
_.typeId$ = 81;
function $clinit_153(){
$clinit_153 = nullMethod;
$clinit_155();
}
 
function getClass_93(){
return Lcom_gwtext_client_dd_DDProxy_2_classLit;
}
 
function DDProxy(){
}
 
_ = DDProxy.prototype = new DD();
_.getClass$ = getClass_93;
_.typeId$ = 82;
function $clinit_154(){
$clinit_154 = nullMethod;
$clinit_159();
}
 
function getClass_94(){
return Lcom_gwtext_client_dd_DDTarget_2_classLit;
}
 
function DDTarget(){
}
 
_ = DDTarget.prototype = new DragDrop();
_.getClass$ = getClass_94;
_.typeId$ = 83;
function $clinit_156(){
$clinit_156 = nullMethod;
$clinit_128();
}
 
function $DragData(this$static, jsObj){
$clinit_156();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_96(){
return Lcom_gwtext_client_dd_DragData_2_classLit;
}
 
function instance_5(jsObj){
var ret, ret_0, ret_1;
$clinit_156();
if (ret = jsObj['grid'] , ret === undefined?null:ret) {
return $GridDragData(new GridDragData(), jsObj);
}
else if (ret_0 = jsObj['node'] , ret_0 === undefined?null:ret_0) {
return $TreeDragData(new TreeDragData(), jsObj);
}
else if (ret_1 = jsObj['panel'] , ret_1 === undefined?null:ret_1) {
return $PanelDragData(new PanelDragData(), jsObj);
}
return $DragData(new DragData(), jsObj);
}
 
function DragData(){
}
 
_ = DragData.prototype = new JsObject();
_.getClass$ = getClass_96;
_.typeId$ = 84;
function $DragDrop$1(this$static, this$0, val$component, val$config){
this$static.this$0 = this$0;
this$static.val$component = val$component;
this$static.val$config = val$config;
return this$static;
}
 
function execute_1(){
this.this$0.jsObj = new $wnd.Ext.dd.DropTarget(this.val$component.id_0, !this.val$config?null:this.val$config.jsObj);
this.this$0.jsObj.ddJ = this.this$0;
}
 
function getClass_97(){
return Lcom_gwtext_client_dd_DragDrop$1_2_classLit;
}
 
function DragDrop$1(){
}
 
_ = DragDrop$1.prototype = new Object_0();
_.execute = execute_1;
_.getClass$ = getClass_97;
_.typeId$ = 0;
_.this$0 = null;
_.val$component = null;
_.val$config = null;
function $clinit_158(){
$clinit_158 = nullMethod;
$clinit_117();
}
 
function getClass_98(){
return Lcom_gwtext_client_dd_DragDropConfig_2_classLit;
}
 
function DragDropConfig(){
}
 
_ = DragDropConfig.prototype = new BaseConfig();
_.getClass$ = getClass_98;
_.typeId$ = 85;
function $clinit_160(){
$clinit_160 = nullMethod;
$clinit_153();
}
 
function $DragSource(this$static, jsObj){
$clinit_160();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_100(){
return Lcom_gwtext_client_dd_DragSource_2_classLit;
}
 
function DragSource(){
}
 
_ = DragSource.prototype = new DDProxy();
_.getClass$ = getClass_100;
_.typeId$ = 86;
function $clinit_162(){
$clinit_162 = nullMethod;
$clinit_154();
init_2();
}
 
function getClass_102(){
return Lcom_gwtext_client_dd_DropTarget_2_classLit;
}
 
function init_2(){
$wnd.Ext.dd.DropTarget.prototype.notifyDrop = function(source, e, data){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
var sourceJ = ($clinit_160() , $DragSource(new DragSource(), source));
var dataJ = data == null || data == undefined?null:instance_5(data);
return ddJ.notifyDrop_0(sourceJ, eJ, dataJ);
}
}
;
$wnd.Ext.dd.DropTarget.prototype.notifyEnter = function(source, e, data){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
var sourceJ = ($clinit_160() , $DragSource(new DragSource(), source));
var dataJ = data == null || data == undefined?null:instance_5(data);
return ddJ.notifyEnter_0(sourceJ, eJ, dataJ);
}
}
;
$wnd.Ext.dd.DropTarget.prototype.notifyOut = function(source, e, data){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
var sourceJ = ($clinit_160() , $DragSource(new DragSource(), source));
var dataJ = data == null || data == undefined?null:instance_5(data);
ddJ.notifyOut_0(sourceJ, eJ, dataJ);
}
}
;
$wnd.Ext.dd.DropTarget.prototype.notifyOver = function(source, e, data){
var ddJ = this.ddJ;
if (ddJ != null) {
var eJ = ($clinit_122() , $EventObject(new EventObject(), e));
var sourceJ = ($clinit_160() , $DragSource(new DragSource(), source));
var dataJ = data == null || data == undefined?null:instance_5(data);
return ddJ.notifyOver_0(sourceJ, eJ, dataJ);
}
}
;
}
 
function notifyDrop(source, e, data){
return false;
}
 
function notifyEnter(source, e, data){
return '';
}
 
function notifyOut(source, e, data){
}
 
function notifyOver(source, e, data){
return '';
}
 
function DropTarget(){
}
 
_ = DropTarget.prototype = new DDTarget();
_.getClass$ = getClass_102;
_.notifyDrop_0 = notifyDrop;
_.notifyEnter_0 = notifyEnter;
_.notifyOut_0 = notifyOut;
_.notifyOver_0 = notifyOver;
_.typeId$ = 87;
function $clinit_161(){
$clinit_161 = nullMethod;
$clinit_158();
}
 
function $DropTargetConfig(this$static){
$clinit_161();
this$static.jsObj = new Object();
return this$static;
}
 
function getClass_101(){
return Lcom_gwtext_client_dd_DropTargetConfig_2_classLit;
}
 
function DropTargetConfig(){
}
 
_ = DropTargetConfig.prototype = new DragDropConfig();
_.getClass$ = getClass_101;
_.typeId$ = 88;
function getID(element){
var id;
id = element['id'] == null?null:String(element['id']);
return id == null || $equals_1(id, '')?null:id;
}
 
function apply(config, jsObj){
for (var k in config) {
jsObj[k] = config[k];
}
}
 
function convertToJavaComponentArray(nativeArray){
var componentJS, components, componentsj, i;
if (!nativeArray) {
return initValues(_3Lcom_gwtext_client_widgets_Component_2_classLit, 251, 25, []);
}
componentsj = toArray(nativeArray);
components = initDim(_3Lcom_gwtext_client_widgets_Component_2_classLit, 251, 25, componentsj.length, 0);
for (i = 0; i < componentsj.length; ++i) {
componentJS = componentsj[i];
setCheck(components, i, getComponent(componentJS));
}
return components;
}
 
function convertToJavaScriptArray(array){
var i, jsArray;
jsArray = new $wnd.Array();
for (i = 0; i < array.length; ++i) {
jsArray[i] = array[i];
}
return jsArray;
}
 
function convertToJavaScriptArray_0(array){
var i, jsArray, val;
jsArray = new $wnd.Array();
for (i = 0; i < array.length; ++i) {
val = array[i];
if (val != null && canCast(val.typeId$, 1)) {
jsArray[i] = dynamicCast(val, 1);
}
else if (val != null && canCast(val.typeId$, 39)) {
jsArray[i] = dynamicCast(val, 39).value;
}
else if (val != null && canCast(val.typeId$, 40)) {
jsArray[i] = dynamicCast(val, 40).value;
}
else if (val != null && canCast(val.typeId$, 41)) {
jsArray[i] = dynamicCast(val, 41).value;
}
else if (val != null && canCast(val.typeId$, 42)) {
jsArray[i] = dynamicCast(val, 42).value;
}
else if (val != null && canCast(val.typeId$, 43)) {
jsArray[i] = new $wnd.Date(toDouble(fromDouble(dynamicCast(val, 43).jsdate.getTime())));
}
else if (val != null && (val.typeMarker$ != nullMethod && val.typeId$ != 2)) {
jsArray[i] = dynamicCastJso(val);
}
else if (val != null && canCast(val.typeId$, 33)) {
jsArray[i] = dynamicCast(val, 33).getJsObj();
}
else if (val != null && canCast(val.typeId$, 31)) {
jsArray[i] = convertToJavaScriptArray_0(dynamicCast(val, 31));
}
else if (val != null) {
jsArray[i] = val;
}
}
return jsArray;
}
 
function getAttribute(elem, attr){
var ret = elem[attr];
return ret === undefined?null:String(ret);
}
 
function getAttributeAsJavaScriptObject(elem, attr){
var ret = elem[attr];
return ret === undefined?null:ret;
}
 
function getJavaScriptObjectArraySize(elem){
if (elem)
return elem.length;
return 0;
}
 
function setAttribute_4(elem, attr, value){
elem[attr] = value;
}
 
function setAttribute_1(elem, attr, value){
elem[attr] = value;
}
 
function setAttribute_6(elem, attr, value){
elem[attr] = value;
}
 
function setAttribute_0(elem, attr, value){
elem[attr] = value;
}
 
function setAttribute_5(elem, attr, value){
if (!value) {
elem[attr] = null;
}
else {
elem[attr] = new $wnd.Date(toDouble(fromDouble(value.jsdate.getTime())));
}
}
 
function toArray(array){
var i, length, recs;
length = getJavaScriptObjectArraySize(array);
recs = initDim(_3Lcom_google_gwt_core_client_JavaScriptObject_2_classLit, 234, -1, length, 0);
for (i = 0; i < length; ++i) {
setCheck(recs, i, array[i]);
}
return recs;
}
 
function toElementArray(array){
var i, length, recs;
length = getJavaScriptObjectArraySize(array);
recs = initDim(_3Lcom_google_gwt_core_client_JavaScriptObject_2_classLit, 234, -1, length, 0);
for (i = 0; i < length; ++i) {
setCheck(recs, i, array[i]);
}
return recs;
}
 
function $clinit_166(){
$clinit_166 = nullMethod;
$clinit_128();
}
 
function $KeyMap(this$static, jsObj){
$clinit_166();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_103(){
return Lcom_gwtext_client_util_KeyMap_2_classLit;
}
 
function KeyMap(){
}
 
_ = KeyMap.prototype = new JsObject();
_.getClass$ = getClass_103;
_.typeId$ = 89;
function $getElement(jsObj){
var el = jsObj.getEl().dom;
if (el == null || el === undefined) {
return null;
}
else {
return el.dom || el;
}
}
 
function equals_6(obj){
if (obj != null && canCast(obj.typeId$, 44)) {
return this.getElement() == dynamicCast(obj, 44).getElement();
}
else {
return false;
}
}
 
function getClass_104(){
return Lcom_gwtext_client_widgets_BaseExtWidget_2_classLit;
}
 
function hashCode_7(){
return getHashCode(this.getElement());
}
 
function onAttach_0(){
$onAttach(this);
}
 
function onLoad_1(){
if (!this.getElement()) {
this.element = $getElement(this.jsObj);
}
}
 
function setHeight_1(height){
this.getElement().style['height'] = height;
}
 
function setWidth_1(width){
this.getElement().style['width'] = width;
}
 
function toString_12(){
return 'element';
}
 
function BaseExtWidget(){
}
 
_ = BaseExtWidget.prototype = new Widget();
_.equals$ = equals_6;
_.getClass$ = getClass_104;
_.hashCode$ = hashCode_7;
_.onAttach = onAttach_0;
_.onLoad = onLoad_1;
_.setHeight_1 = setHeight_1;
_.setWidth_0 = setWidth_1;
_.toString$ = toString_12;
_.typeId$ = 90;
_.jsObj = null;
function $clinit_183(){
$clinit_183 = nullMethod;
if (!checkExtVer()) {
$wnd.alert('Version of Ext in use not compatible with GWT-Ext.\nGWT-Ext only supports Ext v2.0.2.');
throw $IllegalArgumentException(new IllegalArgumentException(), 'Version of Ext in use not compatible with GWT-Ext.\nGWT-Ext only supports Ext v2.0.2.');
}
init_6();
}
 
function $Component(this$static){
$clinit_183();
this$static.configListeners = $HashMap(new HashMap());
this$static.id_0 = $wnd.Ext.id();
this$static.config_0 = $cloneConfig(this$static.getConfigPrototype());
this$static.config_0['xtype'] = this$static.getXType_0();
if (!this$static.config_0) {
this$static.config_0 = new Object();
}
this$static.config_0['__compJ'] = this$static;
this$static.config_0['id'] = this$static.id_0;
this$static.config_0['xtype'] = this$static.getXType_0();
$makeObservable(this$static.config_0);
return this$static;
}
 
function $Component_0(this$static, jsObj){
var ret;
$clinit_183();
this$static.configListeners = $HashMap(new HashMap());
this$static.id_0 = (ret = jsObj['id'] , ret === undefined?null:String(ret));
this$static.config_0 = jsObj;
$setElement_0(this$static, this$static.getElement_0(jsObj));
return this$static;
}
 
function $addClass(this$static, cls){
var cmp, component;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
component = this$static.getOrCreateJsObj();
component.addClass(cls);
}
else {
this$static.setCls(this$static.getCls() == null?cls:this$static.getCls() + ' ' + cls);
}
}
 
function $addConfigListener(this$static, event_0, fn){
var listeners;
listeners = dynamicCast($get_2(this$static.configListeners, event_0), 45);
if (!listeners)
listeners = $ArrayList(new ArrayList());
listeners.add_2(fn);
$put(this$static.configListeners, event_0, listeners);
}
 
function $addListener_2(this$static, event_0, fn){
var cmp, component;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
component = this$static.getOrCreateJsObj();
component.addListener(event_0, fn);
}
else {
$addConfigListener(this$static, event_0, fn);
}
}
 
function $addListener_3(this$static, event_0, funtion){
this$static.addListener_6(event_0, function(){
return funtion.execute();
}
);
}
 
function $cloneConfig(config){
var clone = {};
var id = $wnd.Ext.id();
var cfg = $wnd.Ext.applyIf(clone, config);
cfg.id = id;
return clone;
}
 
function $disable(this$static){
var component_0, component;
if (component_0 = this$static.getJsObj() , component_0 != null && component_0.rendered) {
component = this$static.getOrCreateJsObj();
component.disable();
}
else {
$setAttribute_2(this$static, 'disabled', true, true, false);
$addListener_3(this$static, 'render', $Component$4(new Component$4(), this$static));
}
}
 
function $enable(this$static){
var component_0, component;
if (component_0 = this$static.getJsObj() , component_0 != null && component_0.rendered) {
component = this$static.getOrCreateJsObj();
component.enable();
}
else {
$setAttribute_2(this$static, 'disabled', false, true, false);
$addListener_3(this$static, 'render', $Component$5(new Component$5(), this$static));
}
}
 
function $equals_0(this$static, obj){
var other;
if (obj != null && canCast(obj.typeId$, 25)) {
if ((obj == null?null:obj) === (this$static == null?null:this$static)) {
return true;
}
else {
other = dynamicCast(obj, 25);
if ($equals_1(other.id_0, this$static.id_0)) {
return true;
}
}
return false;
}
else {
return false;
}
}
 
function $focus(this$static){
var component;
if (component = this$static.getJsObj() , component != null && component.rendered) {
$focusRendered(this$static);
}
else {
$addListener_3(this$static, 'render', $Component$6(new Component$6(), this$static));
}
}
 
function $focus_0(this$static, selectText){
var component = this$static.getJsObj();
if (component != null)
component.focus(selectText);
}
 
function $focusRendered(this$static){
var component = this$static.getJsObj();
if (component != null)
component.focus();
}
 
function $getAttribute(this$static, attribute){
var cmp, jsObj, cmp_0, ret;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
return getAttribute((jsObj = (cmp_0 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_0 === undefined || cmp_0 == null?null:cmp_0) , jsObj), attribute);
}
else {
return ret = this$static.config_0[attribute] , ret === undefined?null:String(ret);
}
}
 
function $getAttributeAsJavaScriptObject(this$static, attribute){
var cmp, jsObj, cmp_0, ret;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
return getAttributeAsJavaScriptObject((jsObj = (cmp_0 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_0 === undefined || cmp_0 == null?null:cmp_0) , jsObj), attribute);
}
else {
return ret = this$static.config_0[attribute] , ret === undefined?null:ret;
}
}
 
function $getEl(this$static){
var component = this$static.getOrCreateJsObj();
var el = component.getEl();
if (el == null || el === undefined) {
return null;
}
else {
return $clinit_123() , $ExtElement(new ExtElement(), el);
}
}
 
function $getElement_0(this$static){
var jsObj, cmp, component;
if (!this$static.isElementSet) {
jsObj = (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp === undefined || cmp == null?null:cmp);
if (!(component = this$static.getJsObj() , component != null && component.rendered)) {
if (!jsObj) {
jsObj = this$static.create_0(this$static.config_0);
}
if (!!this$static.parent && !!this$static.parent.element) {
$render(this$static, this$static.parent.element);
}
else {
$render(this$static, ($clinit_99() , $doc.body));
}
}
$setElement_0(this$static, this$static.getElement_0(jsObj));
}
return this$static.element;
}
 
function $getJsObj_3(this$static){
var jsObj, cmp;
jsObj = (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp === undefined || cmp == null?null:cmp);
return jsObj;
}
 
function $getOrCreateJsObj(this$static){
var jsObj, cmp;
jsObj = (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp === undefined || cmp == null?null:cmp);
if (jsObj) {
return jsObj;
}
else {
return this$static.create_0(this$static.config_0);
}
}
 
function $hide_0(this$static){
var component_0, component;
if (component_0 = this$static.getJsObj() , component_0 != null && component_0.rendered) {
component = this$static.getOrCreateJsObj();
component.hide();
}
else {
$addListener_3(this$static, 'render', $Component$7(new Component$7(), this$static));
}
}
 
function $isRendered(this$static){
var component = this$static.getJsObj();
return component != null && component.rendered;
}
 
function $makeObservable(config){
if (config.listeners == null || config.listeners === undefined) {
config.listeners = new Object();
}
}
 
function $render(this$static, element){
var component = this$static.getOrCreateJsObj();
component.render(element);
}
 
function $setAttribute_1(this$static, attribute, value, allowPostCreate, allowPostRendered){
var cmp_3, component;
if (cmp_3 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_3 == null || cmp_3 === undefined?false:true) {
if (!(component = this$static.getJsObj() , component != null && component.rendered) && allowPostCreate || allowPostRendered) {
$getJsObj_3(this$static)[attribute] = value;
}
else {
}
}
else {
this$static.config_0[attribute] = value;
}
}
 
function $setAttribute(this$static, attribute, value, allowPostCreate, allowPostRender){
var cmp_3, component;
if (cmp_3 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_3 == null || cmp_3 === undefined?false:true) {
if (!(component = this$static.getJsObj() , component != null && component.rendered) && allowPostCreate || allowPostRender) {
$getJsObj_3(this$static)[attribute] = value;
}
else {
}
}
else {
this$static.config_0[attribute] = value;
}
}
 
function $setAttribute_0(this$static, attribute, value, allowPostCreate, allowPostRender){
var cmp_3, component;
if (cmp_3 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_3 == null || cmp_3 === undefined?false:true) {
if (!(component = this$static.getJsObj() , component != null && component.rendered) && allowPostCreate || allowPostRender) {
$getJsObj_3(this$static)[attribute] = value;
}
else {
}
}
else {
this$static.config_0[attribute] = value;
}
}
 
function $setAttribute_2(this$static, attribute, value, allowPostCreate, allowPostRendered){
var cmp_3, component;
if (cmp_3 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_3 == null || cmp_3 === undefined?false:true) {
if (!(component = this$static.getJsObj() , component != null && component.rendered) && allowPostCreate || allowPostRendered) {
$getJsObj_3(this$static)[attribute] = value;
}
else {
}
}
else {
this$static.config_0[attribute] = value;
}
}
 
function $setCls(this$static, cls){
var cmp;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
$addClass(this$static, cls);
}
else {
$setAttribute_1(this$static, 'cls', cls, false, false);
}
}
 
function $setDisabled(this$static, disabled){
if (disabled) {
$disable(this$static);
}
else {
$enable(this$static);
}
}
 
function $setElement_0(this$static, elem){
this$static.element = elem;
this$static.isElementSet = true;
}
 
function $setId_0(this$static, id){
$setAttribute_1(this$static, 'id', id, false, false);
this$static.id_0 = id;
}
 
function $setVisible(this$static, visible){
if (visible) {
$show_0(this$static);
}
else {
$hide_0(this$static);
}
}
 
function $show_0(this$static){
var component, component_0;
if (component = this$static.getJsObj() , component != null && component.rendered) {
component_0 = this$static.getOrCreateJsObj();
component_0.show();
}
else {
$addListener_3(this$static, 'render', $Component$8(new Component$8(), this$static));
}
}
 
function addListener_1(event_0, fn){
$addListener_2(this, event_0, fn);
}
 
function addListener_0(listener){
var componentJ = this;
this.addListener_6('beforedestroy', function(source){
return listener.doBeforeDestroy(componentJ);
}
);
this.addListener_6('beforehide', function(source){
return listener.doBeforeHide(componentJ);
}
);
this.addListener_6('beforerender', function(source){
return listener.doBeforeRender(componentJ);
}
);
this.addListener_6('beforeshow', function(source){
return listener.doBeforeShow(componentJ);
}
);
this.addListener_6('beforestaterestore', function(source, state){
return listener.doBeforeStateRestore(componentJ, state);
}
);
this.addListener_6('beforestatesave', function(source, state){
return listener.doBeforeStateSave(componentJ, state);
}
);
this.addListener_6('destroy', function(source){
listener.onDestroy_0(componentJ);
}
);
this.addListener_6('disable', function(source){
listener.onDisable(componentJ);
}
);
this.addListener_6('enable', function(source){
listener.onEnable(componentJ);
}
);
this.addListener_6('hide', function(source){
listener.onHide(componentJ);
}
);
this.addListener_6('render', function(source){
listener.onRender(componentJ);
}
);
this.addListener_6('show', function(source){
listener.onShow(componentJ);
}
);
this.addListener_6('staterestore', function(source, state){
listener.onStateRestore(componentJ, state);
}
);
this.addListener_6('statesave', function(source, state){
listener.onStateSave(componentJ, state);
}
);
}
 
function checkExtVer(){
if ($wnd.Ext.StatusBar) {
return false;
}
else {
return true;
}
}
 
function doInitComponent(){
var event_0, i, iterator, listener, listeners, config, outerIter, entry;
config = this.config_0;
config['__compJ'] = null;
for (iterator = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), $keySet_1(this.configListeners).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(iterator.val$outerIter.iter);) {
event_0 = dynamicCast((entry = $next_0(iterator.val$outerIter) , entry.getKey_0()), 1);
listeners = dynamicCast($get_2(this.configListeners, event_0), 45);
for (i = 0; i < listeners.size_0(); ++i) {
listener = dynamicCastJso(listeners.get_0(i));
$addListener_2(this, event_0, listener);
}
}
$clearImpl(this.configListeners);
this.initComponent_0();
$addListener_3(this, 'render', $Component$1(new Component$1(), this));
$addListener_3(this, 'beforedestroy', $Component$2(new Component$2(), this));
$addListener_3(this, 'destroy', $Component$3(new Component$3(), this));
}
 
function equals_7(obj){
return $equals_0(this, obj);
}
 
function getClass_119(){
return Lcom_gwtext_client_widgets_Component_2_classLit;
}
 
function getCls(){
return $getAttribute(this, 'cls');
}
 
function getComponentJS(id){
var cmp = $wnd.Ext.ComponentMgr.get(id);
return cmp === undefined || cmp == null?null:cmp;
}
 
function getElement_1(jsObj){
var extEl = jsObj.getEl();
if (extEl == null || extEl === undefined) {
return null;
}
var el = extEl.dom;
if (el == null || el === undefined) {
return null;
}
else {
return el.dom || el;
}
}
 
function getElement_0(){
return $getElement_0(this);
}
 
function getJsObj_4(){
return $getJsObj_3(this);
}
 
function getOrCreateJsObj(){
return $getOrCreateJsObj(this);
}
 
function getXType_3(){
return '';
}
 
function hashCode_8(){
return getHashCode_0(this.id_0);
}
 
function init_6(){
$wnd.Ext.extend = function(){
var io = function(o){
for (var m in o) {
this[m] = o[m];
}
}
;
var oc = Object.prototype.constructor;
return function(sb, sp, overrides){
if (typeof sp == 'object') {
overrides = sp;
sp = sb;
sb = function(){
sp.apply(this, arguments);
}
;
}
var F = function(){
}
, sbp, spp = sp.prototype;
F.prototype = spp;
sbp = sb.prototype = new F();
sbp.constructor = sb;
sb.superclass = spp;
if (spp.constructor == oc) {
spp.constructor = sp;
}
sb.override = function(o){
Ext.override(sb, o);
}
;
sbp.override = io;
$wnd.Ext.override(sb, overrides);
sb.extend = function(o){
$wnd.Ext.extend(sb, o);
}
;
return sb;
}
;
}
();
var c = new $wnd.Ext.Component();
configPrototype_2 = c.initialConfig;
$wnd.Ext.Component.prototype.initComponent = function(){
var compJ = this.__compJ;
if (compJ != null) {
compJ.doInitComponent();
}
}
;
}
 
function initComponent(){
var component;
component = this.getOrCreateJsObj();
component.addEvents('post-render');
}
 
function isRendered(){
var component;
return component = this.getJsObj() , component != null && component.rendered;
}
 
function onDestroy(){
}
 
function setCls(cls){
$setCls(this, cls);
}
 
function setHeight_4(height){
$getElement_0(this).style['height'] = height;
}
 
function setWidth_3(width){
$getElement_0(this).style['width'] = width;
}
 
function toString_13(){
var component;
if (component = this.getJsObj() , component != null && component.rendered) {
return $toString_1(this);
}
else {
return '<<Lazy Component>>::' + this.getXType_0() + ', ID:' + this.id_0;
}
}
 
function Component(){
}
 
_ = Component.prototype = new Widget();
_.addListener_6 = addListener_1;
_.addListener_1 = addListener_0;
_.doInitComponent = doInitComponent;
_.equals$ = equals_7;
_.getClass$ = getClass_119;
_.getCls = getCls;
_.getElement_0 = getElement_1;
_.getElement = getElement_0;
_.getJsObj = getJsObj_4;
_.getOrCreateJsObj = getOrCreateJsObj;
_.getXType_0 = getXType_3;
_.hashCode$ = hashCode_8;
_.initComponent_0 = initComponent;
_.isRendered = isRendered;
_.onDestroy = onDestroy;
_.setCls = setCls;
_.setHeight_1 = setHeight_4;
_.setWidth_0 = setWidth_3;
_.toString$ = toString_13;
_.typeId$ = 91;
_.config_0 = null;
_.id_0 = null;
_.isElementSet = false;
var configPrototype_2 = null;
function $clinit_168(){
var c;
$clinit_168 = nullMethod;
$clinit_183();
c = new $wnd.Ext.BoxComponent();
configPrototype = c.initialConfig;
}
 
function $BoxComponent_0(this$static, jsObj){
$clinit_168();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $getHeight_0(this$static){
var height, component, elem;
if (component = this$static.getJsObj() , component != null && component.rendered) {
return elem = $getEl(this$static).getJsObj() , elem.getHeight();
}
else {
height = $getAttribute(this$static, 'height');
if (height == null || $equals_1(height, '')) {
return 0;
}
else if ($equals_1(height, 'auto')) {
return -1;
}
else {
return __parseAndValidateInt(height, 10, -2147483648, 2147483647);
}
}
}
 
function $getWidth_0(this$static){
var width, component, elem;
if (component = this$static.getJsObj() , component != null && component.rendered) {
return elem = $getEl(this$static).getJsObj() , elem.getWidth();
}
else {
width = $getAttribute(this$static, 'width');
if (width == null || $equals_1(width, '')) {
return 0;
}
else if ($equals_1(width, 'auto')) {
return -1;
}
else {
return __parseAndValidateInt(width, 10, -2147483648, 2147483647);
}
}
}
 
function $setHeight(this$static, height){
var component_0, component;
if (component_0 = this$static.getJsObj() , component_0 != null && component_0.rendered) {
component = this$static.getOrCreateJsObj();
component.setHeight(height);
}
else {
if (height == -1) {
$setAttribute_1(this$static, 'height', 'auto', true, false);
}
else {
$setAttribute(this$static, 'height', height, true, false);
}
}
}
 
function $setHeight_0(this$static, height){
var component;
if (component = this$static.getJsObj() , component != null && component.rendered) {
if (height.indexOf('px') != -1) {
height = $trim($replaceAll(height, 'px', ''));
$setHeightRendered(this$static, __parseAndValidateInt(height, 10, -2147483648, 2147483647));
}
else {
$getElement_0(this$static).style['height'] = height;
}
}
else {
if (height.indexOf('px') != -1) {
height = $trim($replaceAll(height, 'px', ''));
this$static.setHeight_0(__parseAndValidateInt(height, 10, -2147483648, 2147483647));
}
else if ($equalsIgnoreCase($trim(height), 'auto')) {
this$static.setAutoHeight(true);
}
else {
$setAttribute_1(this$static, 'height', height, true, false);
}
}
}
 
function $setHeightRendered(this$static, height){
var component = this$static.getOrCreateJsObj();
component.setHeight(height);
}
 
function $setSize_0(this$static, width, height){
var component_0, component;
if (component_0 = this$static.getJsObj() , component_0 != null && component_0.rendered) {
component = this$static.getOrCreateJsObj();
component.setSize(width, height);
}
else {
$setWidth_0(this$static, width);
$setHeight(this$static, height);
}
}
 
function $setSize_1(this$static, width, height){
var intHeight, intWidth, component_0, component;
if (component_0 = this$static.getJsObj() , component_0 != null && component_0.rendered) {
if (width.indexOf('px') != -1 && height.indexOf('px') != -1) {
intWidth = 0;
intHeight = 0;
width = $trim($replaceAll(width, 'px', ''));
intWidth = __parseAndValidateInt(width, 10, -2147483648, 2147483647);
height = $trim($replaceAll(height, 'px', ''));
intHeight = __parseAndValidateInt(height, 10, -2147483648, 2147483647);
component = this$static.getOrCreateJsObj();
component.setSize(intWidth, intHeight);
}
else {
$setWidth_1(this$static, width);
$setHeight_0(this$static, height);
}
}
else {
$setWidth_1(this$static, width);
$setHeight_0(this$static, height);
}
}
 
function $setWidth_0(this$static, width){
var component_0, component;
if (component_0 = this$static.getJsObj() , component_0 != null && component_0.rendered) {
component = this$static.getOrCreateJsObj();
component.setWidth(width);
}
else {
if (width == -1) {
$setAttribute_1(this$static, 'width', 'auto', true, false);
}
else {
$setAttribute(this$static, 'width', width, true, false);
}
}
}
 
function $setWidth_1(this$static, width){
var component;
if (component = this$static.getJsObj() , component != null && component.rendered) {
if (width.indexOf('px') != -1) {
width = $trim($replaceAll(width, 'px', ''));
$setWidthRendered(this$static, __parseAndValidateInt(width, 10, -2147483648, 2147483647));
}
else {
$getElement_0(this$static).style['width'] = width;
}
}
else {
if (width.indexOf('px') != -1) {
width = $trim($replaceAll(width, 'px', ''));
$setWidth_0(this$static, __parseAndValidateInt(width, 10, -2147483648, 2147483647));
}
else if ($equalsIgnoreCase($trim(width), 'auto')) {
$setAttribute_2(this$static, 'autoWidth', true, true, false);
}
else {
$setAttribute_1(this$static, 'width', width, true, false);
}
}
}
 
function $setWidthRendered(this$static, width){
var component = this$static.getOrCreateJsObj();
component.setWidth(width);
}
 
function addListener(listener){
this.addListener_1(listener);
var componentJ = this;
this.addListener_6('move', function(source, x_0, y){
listener.onMove(componentJ, x_0, y);
}
);
this.addListener_6('resize', function(source, adjWidth, adjHeight, rawWidth, rawHeight){
if (adjWidth == null || adjWidth === undefined)
adjWidth = 0;
if (adjHeight == null || adjHeight === undefined)
adjHeight = 0;
if (rawWidth == null || rawWidth === undefined)
rawWidth = 0;
if (rawHeight == null || rawHeight === undefined)
rawHeight = 0;
if (typeof adjWidth == 'string')
adjWidth = -1;
if (typeof adjHeight == 'string')
adjHeight = -1;
if (typeof rawWidth == 'string')
rawWidth = -1;
if (typeof rawHeight == 'string')
rawHeight = -1;
listener.onResize(componentJ, adjWidth, adjHeight, rawWidth, rawHeight);
}
);
}
 
function create_3(config){
return new $wnd.Ext.BoxComponent(config);
}
 
function getClass_105(){
return Lcom_gwtext_client_widgets_BoxComponent_2_classLit;
}
 
function getConfigPrototype(){
return configPrototype;
}
 
function getXType(){
return 'box';
}
 
function setAutoHeight(autoHeight){
$setAttribute_2(this, 'autoHeight', autoHeight, true, false);
}
 
function setHeight_2(height){
$setHeight(this, height);
}
 
function setHeight_3(height){
$setHeight_0(this, height);
}
 
function setWidth_2(width){
$setWidth_1(this, width);
}
 
function BoxComponent(){
}
 
_ = BoxComponent.prototype = new Component();
_.addListener_0 = addListener;
_.create_0 = create_3;
_.getClass$ = getClass_105;
_.getConfigPrototype = getConfigPrototype;
_.getXType_0 = getXType;
_.setAutoHeight = setAutoHeight;
_.setHeight_0 = setHeight_2;
_.setHeight_1 = setHeight_3;
_.setWidth_0 = setWidth_2;
_.typeId$ = 92;
var configPrototype = null;
function $clinit_169(){
var c;
$clinit_169 = nullMethod;
$clinit_183();
c = new $wnd.Ext.Button();
configPrototype_0 = c.initialConfig;
}
 
function $Button_1(this$static, text){
$clinit_169();
$Component(this$static);
if (text != null)
$setText(this$static, text);
return this$static;
}
 
function $Button_0(this$static, jsObj){
$clinit_169();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $addListener_1(this$static, listener){
this$static.addListener_1(listener);
var buttonJ = this$static;
this$static.addListener_6('click', function(source, event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onClick_0(buttonJ, e);
}
);
this$static.addListener_6('menuhide', function(source, menu){
var menuJ = $Menu_0(new Menu(), menu);
listener.onMenuHide(buttonJ, menuJ);
}
);
this$static.addListener_6('menushow', function(source, menu){
var menuJ = $Menu_0(new Menu(), menu);
listener.onMenuShow(buttonJ, menuJ);
}
);
this$static.addListener_6('menutriggerout', function(source, menu, event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
var menuJ = $Menu_0(new Menu(), menu);
listener.onMenuTriggerOut(buttonJ, menuJ, e);
}
);
this$static.addListener_6('menutriggerover', function(source, menu, event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
var menuJ = $Menu_0(new Menu(), menu);
listener.onMenuTriggerOver(buttonJ, menuJ, e);
}
);
this$static.addListener_6('mouseout', function(source, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onMouseOut(buttonJ, e);
}
);
this$static.addListener_6('mouseover', function(source, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onMouseOver(buttonJ, e);
}
);
this$static.addListener_6('toggle', function(source, pressed){
listener.onToggle(buttonJ, pressed);
}
);
}
 
function $getText(this$static){
var component, button, text;
if (component = this$static.getJsObj() , component != null && component.rendered) {
return button = this$static.getOrCreateJsObj() , text = button.getText() , text === undefined?null:text;
}
else {
return $getAttribute(this$static, 'text');
}
}
 
function $setIcon(this$static, icon){
var buttonEl, component, button, but;
if (component = this$static.getJsObj() , component != null && component.rendered) {
buttonEl = (button = this$static.getOrCreateJsObj() , but = button.el.child('button:first').dom , but);
buttonEl.style['backgroundImage'] = 'url(' + icon + ')';
}
else {
$setAttribute_1(this$static, 'icon', icon, true, false);
}
if ($getText(this$static) == null) {
$addClass(this$static, 'x-btn-icon');
}
else {
$addClass(this$static, 'x-btn-text-icon');
}
}
 
function $setText(this$static, text){
var component, button;
if (component = this$static.getJsObj() , component != null && component.rendered) {
button = this$static.getOrCreateJsObj();
button.setText(text);
}
else {
$setAttribute_1(this$static, 'text', text, true, false);
}
}
 
function create_4(config){
return new $wnd.Ext.Button(config);
}
 
function getClass_106(){
return Lcom_gwtext_client_widgets_Button_2_classLit;
}
 
function getConfigPrototype_0(){
return configPrototype_0;
}
 
function getXType_0(){
return 'button';
}
 
function Button_0(){
}
 
_ = Button_0.prototype = new Component();
_.create_0 = create_4;
_.getClass$ = getClass_106;
_.getConfigPrototype = getConfigPrototype_0;
_.getXType_0 = getXType_0;
_.typeId$ = 93;
var configPrototype_0 = null;
function $clinit_170(){
var c;
$clinit_170 = nullMethod;
$clinit_183();
c = new $wnd.Ext.ColorPalette();
configPrototype_1 = c.initialConfig;
}
 
function $ColorPalette(this$static, jsObj){
$clinit_170();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_5(config){
return new $wnd.Ext.ColorPalette(config);
}
 
function getClass_107(){
return Lcom_gwtext_client_widgets_ColorPalette_2_classLit;
}
 
function getConfigPrototype_1(){
return configPrototype_1;
}
 
function getXType_1(){
return 'colorpalette';
}
 
function ColorPalette(){
}
 
_ = ColorPalette.prototype = new Component();
_.create_0 = create_5;
_.getClass$ = getClass_107;
_.getConfigPrototype = getConfigPrototype_1;
_.getXType_0 = getXType_1;
_.typeId$ = 94;
var configPrototype_1 = null;
function $Component$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_3(){
addCommand($Component$1$1(new Component$1$1(), this));
}
 
function getClass_109(){
return Lcom_gwtext_client_widgets_Component$1_2_classLit;
}
 
function Component$1(){
}
 
_ = Component$1.prototype = new Object_0();
_.execute = execute_3;
_.getClass$ = getClass_109;
_.typeId$ = 0;
_.this$0 = null;
function $Component$1$1(this$static, this$1){
this$static.this$1 = this$1;
return this$static;
}
 
function execute_2(){
var component;
component = this.this$1.this$0.getOrCreateJsObj();
component.fireEvent('post-render');
}
 
function getClass_108(){
return Lcom_gwtext_client_widgets_Component$1$1_2_classLit;
}
 
function Component$1$1(){
}
 
_ = Component$1$1.prototype = new Object_0();
_.execute = execute_2;
_.getClass$ = getClass_108;
_.typeId$ = 95;
_.this$1 = null;
function $Component$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function $doBeforeDestroy(){
}
 
function execute_4(){
var component;
if (component = this.this$0.getJsObj() , component != null && component.rendered) {
$doBeforeDestroy($getJsObj_3(this.this$0));
}
}
 
function getClass_110(){
return Lcom_gwtext_client_widgets_Component$2_2_classLit;
}
 
function Component$2(){
}
 
_ = Component$2.prototype = new Object_0();
_.execute = execute_4;
_.getClass$ = getClass_110;
_.typeId$ = 0;
_.this$0 = null;
function $Component$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function $doOnDestroy(jsObj){
if (jsObj != null && jsObj.__compJ) {
jsObj.__compJ = null;
}
}
 
function execute_6(){
this.this$0.onDestroy();
this.this$0.config_0['__compJ'] = null;
addCommand($Component$3$1(new Component$3$1(), this));
}
 
function getClass_112(){
return Lcom_gwtext_client_widgets_Component$3_2_classLit;
}
 
function Component$3(){
}
 
_ = Component$3.prototype = new Object_0();
_.execute = execute_6;
_.getClass$ = getClass_112;
_.typeId$ = 0;
_.this$0 = null;
function $Component$3$1(this$static, this$1){
this$static.this$1 = this$1;
return this$static;
}
 
function execute_5(){
$doOnDestroy($getJsObj_3(this.this$1.this$0));
}
 
function getClass_111(){
return Lcom_gwtext_client_widgets_Component$3$1_2_classLit;
}
 
function Component$3$1(){
}
 
_ = Component$3$1.prototype = new Object_0();
_.execute = execute_5;
_.getClass$ = getClass_111;
_.typeId$ = 96;
_.this$1 = null;
function $Component$4(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_7(){
var component;
component = this.this$0.getOrCreateJsObj();
component.disable();
}
 
function getClass_113(){
return Lcom_gwtext_client_widgets_Component$4_2_classLit;
}
 
function Component$4(){
}
 
_ = Component$4.prototype = new Object_0();
_.execute = execute_7;
_.getClass$ = getClass_113;
_.typeId$ = 0;
_.this$0 = null;
function $Component$5(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_8(){
var component;
component = this.this$0.getOrCreateJsObj();
component.enable();
}
 
function getClass_114(){
return Lcom_gwtext_client_widgets_Component$5_2_classLit;
}
 
function Component$5(){
}
 
_ = Component$5.prototype = new Object_0();
_.execute = execute_8;
_.getClass$ = getClass_114;
_.typeId$ = 0;
_.this$0 = null;
function $Component$6(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_10(){
addCommand($Component$6$1(new Component$6$1(), this));
}
 
function getClass_116(){
return Lcom_gwtext_client_widgets_Component$6_2_classLit;
}
 
function Component$6(){
}
 
_ = Component$6.prototype = new Object_0();
_.execute = execute_10;
_.getClass$ = getClass_116;
_.typeId$ = 0;
_.this$0 = null;
function $Component$6$1(this$static, this$1){
this$static.this$1 = this$1;
return this$static;
}
 
function execute_9(){
$focusRendered(this.this$1.this$0);
}
 
function getClass_115(){
return Lcom_gwtext_client_widgets_Component$6$1_2_classLit;
}
 
function Component$6$1(){
}
 
_ = Component$6$1.prototype = new Object_0();
_.execute = execute_9;
_.getClass$ = getClass_115;
_.typeId$ = 97;
_.this$1 = null;
function $Component$7(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_11(){
var component;
component = this.this$0.getOrCreateJsObj();
component.hide();
}
 
function getClass_117(){
return Lcom_gwtext_client_widgets_Component$7_2_classLit;
}
 
function Component$7(){
}
 
_ = Component$7.prototype = new Object_0();
_.execute = execute_11;
_.getClass$ = getClass_117;
_.typeId$ = 0;
_.this$0 = null;
function $Component$8(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_12(){
var component;
component = this.this$0.getOrCreateJsObj();
component.show();
}
 
function getClass_118(){
return Lcom_gwtext_client_widgets_Component$8_2_classLit;
}
 
function Component$8(){
}
 
_ = Component$8.prototype = new Object_0();
_.execute = execute_12;
_.getClass$ = getClass_118;
_.typeId$ = 0;
_.this$0 = null;
function getComponent(jsObj){
var componentJ, xtype_0, ret, xtype;
componentJ = (ret = jsObj['__compJ'] , ret === undefined?null:ret);
if (componentJ != null) {
return dynamicCast(componentJ, 25);
}
xtype_0 = (xtype = jsObj.getXType?jsObj.getXType():null , xtype === undefined?null:xtype);
if (xtype_0 == null) {
return null;
}
if ($equalsIgnoreCase(xtype_0, 'box')) {
return $BoxComponent_0(new BoxComponent(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'button')) {
return $Button_0(new Button_0(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'colorpalette')) {
return $ColorPalette(new ColorPalette(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'cycle')) {
return $CycleButton(new CycleButton(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'dataview')) {
return $DataView(new DataView(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'datepicker')) {
return $DatePicker(new DatePicker(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'editor')) {
return $Editor(new Editor(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'editorgrid')) {
return $EditorGridPanel(new EditorGridPanel(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'propertygrid')) {
return $PropertyGridPanel_0(new PropertyGridPanel(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'grid')) {
return $GridPanel_0(new GridPanel(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'paging')) {
return $PagingToolbar(new PagingToolbar(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'button')) {
return $Button_0(new Button_0(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'panel')) {
return $Panel_0(new Panel_0(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'progress')) {
return $ProgressBar(new ProgressBar(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'splitbutton')) {
return $SplitButton(new SplitButton(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'tabpanel')) {
return $TabPanel_0(new TabPanel(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'window')) {
return $Window(new Window_0(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'gwtwidget')) {
return $WidgetComponent(new WidgetComponent(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'toolbar')) {
return $Toolbar(new Toolbar(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'tbbutton')) {
return $ToolbarButton_0(new ToolbarButton(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'menu-item')) {
return $Item(new Item(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'checkbox')) {
return $Checkbox_0(new Checkbox(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'combo')) {
return $ComboBox_0(new ComboBox(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'label')) {
return $Label_0(new Label_0(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'datefield')) {
return $DateField_0(new DateField(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'fieldset')) {
return $FieldSet(new FieldSet(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'form')) {
return $FormPanel(new FormPanel(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'hidden')) {
return $Hidden(new Hidden(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'htmleditor')) {
return $HtmlEditor(new HtmlEditor(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'numberfield')) {
return $NumberField(new NumberField(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'radio')) {
return $Radio(new Radio(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'textarea')) {
return $TextArea_0(new TextArea(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'textfield')) {
return $TextField_0(new TextField(), jsObj);
}
else if ($equalsIgnoreCase(xtype_0, 'timefield')) {
return $TimeField(new TimeField(), jsObj);
}
else {
throw $IllegalArgumentException(new IllegalArgumentException(), 'Unrecognized xtype ' + xtype_0);
}
}
 
function $clinit_184(){
var c;
$clinit_184 = nullMethod;
$clinit_168();
c = new $wnd.Ext.Container();
configPrototype_3 = c.initialConfig;
}
 
function $add_6(this$static, component, layoutData){
var componentJS, cmp;
componentJS = (cmp = $wnd.Ext.ComponentMgr.get(component.id_0) , cmp == null || cmp === undefined?false:true)?$getOrCreateJsObj(component):component.config_0;
apply(layoutData.jsObj, componentJS);
$add_2(this$static, componentJS);
}
 
function $add_3(this$static, widget){
var compJS, component, id;
if (widget != null && canCast(widget.typeId$, 25)) {
$add_5(this$static, dynamicCast(widget, 25));
}
else {
id = getID(widget.getElement());
if (id == null) {
id = $wnd.Ext.id();
widget.getElement()['id'] = id;
}
compJS = getComponentJS(id);
component = null;
if (compJS) {
component = $WidgetComponent(new WidgetComponent(), compJS);
$setVisible(component, true);
}
else {
component = $WidgetComponent_0(new WidgetComponent(), widget);
}
$add_5(this$static, component);
}
}
 
function $add_4(this$static, widget, layoutData){
var compJS, component, id;
id = getID(widget.element);
if (id == null) {
id = $wnd.Ext.id();
widget.element['id'] = id;
}
compJS = getComponentJS(id);
component = null;
if (compJS) {
component = $WidgetComponent(new WidgetComponent(), compJS);
$setVisible(component, true);
}
else {
component = $WidgetComponent_0(new WidgetComponent(), widget);
}
$add_6(this$static, component, layoutData);
}
 
function $add_5(this$static, component){
var componentJS, cmp, cmp_0, container;
componentJS = (cmp = $wnd.Ext.ComponentMgr.get(component.id_0) , cmp == null || cmp === undefined?false:true)?$getOrCreateJsObj(component):component.config_0;
if (cmp_0 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_0 == null || cmp_0 === undefined?false:true) {
container = this$static.getOrCreateJsObj();
container.add(componentJS);
}
else {
$addPreCreate(this$static, componentJS);
}
}
 
function $add_2(this$static, componentJS){
var cmp, container;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
container = this$static.getOrCreateJsObj();
container.add(componentJS);
}
else {
$addPreCreate(this$static, componentJS);
}
}
 
function $addListener_4(this$static, listener){
this$static.addListener_0(listener);
var containerJ = this$static;
this$static.addListener_6('add', function(source, component, index){
var componentJ = getComponent(component);
listener.onAdd(containerJ, componentJ, index);
}
);
this$static.addListener_6('beforeadd', function(source, component, index){
var componentJ = getComponent(component);
return listener.doBeforeAdd(containerJ, componentJ, index);
}
);
this$static.addListener_6('afterlayout', function(source, layout){
listener.onAfterLayout(containerJ);
}
);
this$static.addListener_6('remove', function(source, component){
var componentJ = getComponent(component);
listener.onRemove_0(containerJ, componentJ);
}
);
this$static.addListener_6('beforeremove', function(source, component){
var componentJ = getComponent(component);
return listener.doBeforeRemove_0(containerJ, componentJ);
}
);
}
 
function $addPreCreate(this$static, componentJS){
var config = this$static.config_0;
if (!config.items) {
config.items = new $wnd.Array();
}
config.items.push(componentJS);
}
 
function $getComponents(this$static){
var container = this$static.getOrCreateJsObj();
var items = container.items;
if (items === undefined || items == null) {
items = null;
}
else {
items = container.items.items || container.items;
}
return convertToJavaComponentArray(items);
}
 
function $setLayout(this$static, layout){
var cmp_2;
$setAttribute_0(this$static, 'layout', $getJsObj_5(layout), true, false);
if (layout.getContainerAttributes()) {
apply(layout.getContainerAttributes(), (cmp_2 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_2 == null || cmp_2 === undefined?false:true)?$getJsObj_3(this$static):this$static.config_0);
}
}
 
function add_4(widget){
$add_3(this, widget);
}
 
function addListener_2(listener){
$addListener_4(this, listener);
}
 
function create_6(config){
return new $wnd.Ext.Container(config);
}
 
function getClass_120(){
return Lcom_gwtext_client_widgets_Container_2_classLit;
}
 
function getConfigPrototype_2(){
return configPrototype_3;
}
 
function getXType_4(){
return 'container';
}
 
function iterator_3(){
var i, item, items, list;
list = $ArrayList(new ArrayList());
items = $getComponents(this);
for (i = 0; i < items.length; ++i) {
item = items[i];
setCheck(list.array, list.size++, item);
}
return $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), list);
}
 
function setLayout(layout){
$setLayout(this, layout);
}
 
function Container(){
}
 
_ = Container.prototype = new BoxComponent();
_.add_1 = add_4;
_.addListener_2 = addListener_2;
_.create_0 = create_6;
_.getClass$ = getClass_120;
_.getConfigPrototype = getConfigPrototype_2;
_.getXType_0 = getXType_4;
_.iterator_0 = iterator_3;
_.setLayout = setLayout;
_.typeId$ = 98;
var configPrototype_3 = null;
function $clinit_196(){
$clinit_196 = nullMethod;
$clinit_169();
}
 
function $SplitButton(this$static, jsObj){
$clinit_196();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_14(config){
return new $wnd.Ext.SplitButton(config);
}
 
function getClass_130(){
return Lcom_gwtext_client_widgets_SplitButton_2_classLit;
}
 
function getXType_12(){
return 'splitbutton';
}
 
function SplitButton(){
}
 
_ = SplitButton.prototype = new Button_0();
_.create_0 = create_14;
_.getClass$ = getClass_130;
_.getXType_0 = getXType_12;
_.typeId$ = 99;
function $clinit_185(){
$clinit_185 = nullMethod;
$clinit_196();
}
 
function $CycleButton(this$static, jsObj){
$clinit_185();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_7(config){
return new $wnd.Ext.CycleButton(config);
}
 
function getClass_121(){
return Lcom_gwtext_client_widgets_CycleButton_2_classLit;
}
 
function getXType_5(){
return 'cycle';
}
 
function CycleButton(){
}
 
_ = CycleButton.prototype = new SplitButton();
_.create_0 = create_7;
_.getClass$ = getClass_121;
_.getXType_0 = getXType_5;
_.typeId$ = 100;
function $clinit_187(){
$clinit_187 = nullMethod;
$clinit_168();
init_8();
}
 
function $DataView(this$static, jsObj){
$clinit_187();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $addListener_5(this$static, listener){
this$static.addListener_0(listener);
var dvJ = this$static;
this$static.addListener_6('beforeclick', function(source, index, node, event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
return listener.doBeforeClick(dvJ, index, node, e);
}
);
this$static.addListener_6('beforeselect', function(source, node, selections){
var selectionsJ = toElementArray(selections);
return listener.doBeforeSelect(dvJ, node, selectionsJ);
}
);
this$static.addListener_6('click', function(source, index, node, event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onClick_1(dvJ, index, node, e);
}
);
this$static.addListener_6('containerclick', function(source, event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onContainerClick(dvJ, e);
}
);
this$static.addListener_6('contextmenu', function(source, index, node, event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onContextMenu(dvJ, index, node, e);
}
);
this$static.addListener_6('dblclick', function(source, index, node, event_0){
var e = event_0 === undefined || event_0 == null?null:($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onDblClick(dvJ, index, node, e);
}
);
this$static.addListener_6('selectionchange', function(source, selections){
var selectionsJ = toElementArray(selections);
listener.onSelectionChange(dvJ, selectionsJ);
}
);
}
 
function $getRecord(this$static, node){
var dv = this$static.getOrCreateJsObj();
var record = dv.getRecord(node);
return record == null || record === undefined?null:($clinit_148() , $Record(new Record(), record));
}
 
function $getSelectedRecords(this$static){
var dv = this$static.getOrCreateJsObj();
var records = dv.getSelectedRecords();
return convertFromNativeRecordsArray(records);
}
 
function $indexOf_2(this$static, element){
var dv = this$static.getOrCreateJsObj();
return dv.indexOf(element);
}
 
function $indexOf_1(this$static, nodeIndex){
var dv = this$static.getOrCreateJsObj();
return dv.indexOf(nodeIndex);
}
 
function $refresh(this$static){
if (this$static.isRendered()) {
var dv = this$static.getOrCreateJsObj();
dv.refresh();
}
}
 
function $select(this$static, nodeIndex){
if (this$static.isRendered()) {
var dv = this$static.getOrCreateJsObj();
dv.select(nodeIndex);
}
}
 
function $select_0(this$static, nodeIndexes){
if (this$static.isRendered()) {
var dv = this$static.getOrCreateJsObj();
var nodeIndexesJS = convertToJavaScriptArray(nodeIndexes);
dv.select(nodeIndexesJS);
}
}
 
function $setStore(this$static, store){
var component;
if (component = this$static.getJsObj() , component != null && component.rendered) {
$setStoreRendered(this$static, $getJsObj_2(store));
}
else {
$setAttribute_0(this$static, 'store', $getJsObj_2(store), true, false);
}
}
 
function $setStoreRendered(this$static, storeJS){
var dv = this$static.getOrCreateJsObj();
dv.setStore(storeJS);
}
 
function create_8(config){
return new $wnd.Ext.DataView(config);
}
 
function getClass_123(){
return Lcom_gwtext_client_widgets_DataView_2_classLit;
}
 
function getXType_6(){
return 'dataview';
}
 
function init_8(){
$wnd.Ext.DataView.prototype.prepareData = function(data){
var compJ = this.__compJ;
if (compJ != null) {
var dataJ = ($clinit_186() , $DataView$Data(new DataView$Data(), data));
compJ.prepareData_0(dataJ);
return data;
}
else {
return data;
}
}
;
}
 
function prepareData(data){
}
 
function DataView(){
}
 
_ = DataView.prototype = new BoxComponent();
_.create_0 = create_8;
_.getClass$ = getClass_123;
_.getXType_0 = getXType_6;
_.prepareData_0 = prepareData;
_.typeId$ = 101;
function $clinit_186(){
$clinit_186 = nullMethod;
$clinit_127();
}
 
function $DataView$Data(this$static, jsObj){
$clinit_186();
this$static.jsObj = new Object();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_122(){
return Lcom_gwtext_client_widgets_DataView$Data_2_classLit;
}
 
function DataView$Data(){
}
 
_ = DataView$Data.prototype = new GenericConfig();
_.getClass$ = getClass_122;
_.typeId$ = 102;
function $clinit_188(){
var c;
$clinit_188 = nullMethod;
$clinit_183();
c = new $wnd.Ext.DatePicker();
configPrototype_4 = c.initialConfig;
}
 
function $DatePicker(this$static, jsObj){
$clinit_188();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_9(config){
return new $wnd.Ext.DatePicker(config);
}
 
function getClass_124(){
return Lcom_gwtext_client_widgets_DatePicker_2_classLit;
}
 
function getConfigPrototype_3(){
return configPrototype_4;
}
 
function getXType_7(){
return 'datepicker';
}
 
function DatePicker(){
}
 
_ = DatePicker.prototype = new Component();
_.create_0 = create_9;
_.getClass$ = getClass_124;
_.getConfigPrototype = getConfigPrototype_3;
_.getXType_0 = getXType_7;
_.typeId$ = 103;
var configPrototype_4 = null;
function $clinit_189(){
var c;
$clinit_189 = nullMethod;
$clinit_183();
c = new $wnd.Ext.Editor();
configPrototype_5 = c.initialConfig;
}
 
function $Editor(this$static, jsObj){
$clinit_189();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_10(config){
var field = this.field;
var fieldJS = field.getOrCreateJsObj();
var ed = new $wnd.Ext.Editor(fieldJS, config);
var id = ed.getId();
this.id_0 = id;
return ed;
}
 
function getClass_125(){
return Lcom_gwtext_client_widgets_Editor_2_classLit;
}
 
function getConfigPrototype_4(){
return configPrototype_5;
}
 
function getXType_8(){
return 'editor';
}
 
function Editor(){
}
 
_ = Editor.prototype = new Component();
_.create_0 = create_10;
_.getClass$ = getClass_125;
_.getConfigPrototype = getConfigPrototype_4;
_.getXType_0 = getXType_8;
_.typeId$ = 104;
_.field = null;
var configPrototype_5 = null;
function $clinit_204(){
var c;
$clinit_204 = nullMethod;
$clinit_168();
c = new $wnd.Ext.Toolbar();
configPrototype_11 = c.initialConfig;
}
 
function $Toolbar(this$static, jsObj){
$clinit_204();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $addButton_0(this$static, button){
var componentJS, component, cmp, panel, cmp_0;
if (component = this$static.getJsObj() , component != null && component.rendered) {
componentJS = (cmp = $wnd.Ext.ComponentMgr.get(button.id_0) , cmp == null || cmp === undefined?false:true)?$getOrCreateJsObj(button):button.config_0;
panel = this$static.getOrCreateJsObj();
panel.addButton(componentJS);
}
else {
componentJS = (cmp_0 = $wnd.Ext.ComponentMgr.get(button.id_0) , cmp_0 == null || cmp_0 === undefined?false:true)?$getOrCreateJsObj(button):button.config_0;
$addButtonPreRender(this$static, componentJS);
}
}
 
function $addButton_1(this$static, button){
var componentJS, component, cmp, panel, cmp_0;
if (component = this$static.getJsObj() , component != null && component.rendered) {
componentJS = (cmp = $wnd.Ext.ComponentMgr.get(button.id_0) , cmp == null || cmp === undefined?false:true)?$getOrCreateJsObj(button):button.config_0;
panel = this$static.getOrCreateJsObj();
panel.addButton(componentJS);
}
else {
componentJS = (cmp_0 = $wnd.Ext.ComponentMgr.get(button.id_0) , cmp_0 == null || cmp_0 === undefined?false:true)?$getOrCreateJsObj(button):button.config_0;
$addButtonPreRender(this$static, componentJS);
}
}
 
function $addButtonPreRender(this$static, componentJS){
var config = this$static.config_0;
if (!config.items) {
config.items = new $wnd.Array();
}
config.items.push(componentJS);
}
 
function $addField(this$static, field){
var componentJS, component, cmp, cmp_0;
if (component = this$static.getJsObj() , component != null && component.rendered) {
componentJS = (cmp = $wnd.Ext.ComponentMgr.get(field.id_0) , cmp == null || cmp === undefined?false:true)?$getOrCreateJsObj(field):field.config_0;
addFieldPostRender(componentJS);
}
else {
componentJS = (cmp_0 = $wnd.Ext.ComponentMgr.get(field.id_0) , cmp_0 == null || cmp_0 === undefined?false:true)?$getOrCreateJsObj(field):field.config_0;
$addFieldPreRender(this$static, componentJS);
}
}
 
function $addFieldPreRender(this$static, componentJS){
var config = this$static.config_0;
if (!config.items) {
config.items = new $wnd.Array();
}
config.items.push(componentJS);
}
 
function $addFill(this$static){
var component, toolbar;
if (component = this$static.getJsObj() , component != null && component.rendered) {
toolbar = this$static.getOrCreateJsObj();
toolbar.addFill();
}
else {
$addItem(this$static, $ToolbarFill(new ToolbarFill()));
}
}
 
function $addItem(this$static, item){
var componentJS, component, panel;
if (component = this$static.getJsObj() , component != null && component.rendered) {
componentJS = item.jsObj;
panel = this$static.getOrCreateJsObj();
panel.addItem(componentJS);
}
else {
componentJS = item.jsObj;
$addItemPreRender(this$static, componentJS);
}
}
 
function $addItemPreRender(this$static, componentJS){
var config = this$static.config_0;
if (!config.items) {
config.items = new $wnd.Array();
}
config.items.push(componentJS);
}
 
function $addSpacer(this$static){
var component, toolbar, spacer;
if (component = this$static.getJsObj() , component != null && component.rendered) {
toolbar = this$static.getOrCreateJsObj();
spacer = toolbar.addSpacer();
}
else {
$addItem(this$static, $ToolbarSpacer(new ToolbarSpacer()));
}
}
 
function addFieldPostRender(field){
var toolbar = this.getOrCreateJsObj();
toolbar.addField(field);
}
 
function create_18(config){
if (!config.items)
config.items = new $wnd.Array();
return new $wnd.Ext.Toolbar(config);
}
 
function getClass_138(){
return Lcom_gwtext_client_widgets_Toolbar_2_classLit;
}
 
function getConfigPrototype_10(){
return configPrototype_11;
}
 
function getXType_16(){
return 'toolbar';
}
 
function Toolbar(){
}
 
_ = Toolbar.prototype = new BoxComponent();
_.create_0 = create_18;
_.getClass$ = getClass_138;
_.getConfigPrototype = getConfigPrototype_10;
_.getXType_0 = getXType_16;
_.typeId$ = 105;
var configPrototype_11 = null;
function $clinit_191(){
$clinit_191 = nullMethod;
$clinit_204();
}
 
function $PagingToolbar(this$static, jsObj){
$clinit_191();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_11(config){
return new $wnd.Ext.PagingToolbar(config);
}
 
function getClass_126(){
return Lcom_gwtext_client_widgets_PagingToolbar_2_classLit;
}
 
function getXType_9(){
return 'paging';
}
 
function PagingToolbar(){
}
 
_ = PagingToolbar.prototype = new Toolbar();
_.create_0 = create_11;
_.getClass$ = getClass_126;
_.getXType_0 = getXType_9;
_.typeId$ = 106;
function $clinit_193(){
var c;
$clinit_193 = nullMethod;
$clinit_184();
c = new $wnd.Ext.Panel();
configPrototype_6 = c.initialConfig;
}
 
function $Panel(this$static){
$clinit_193();
$Component(this$static);
return this$static;
}
 
function $Panel_1(this$static, title){
$clinit_193();
$Component(this$static);
$setTitle(this$static, title);
return this$static;
}
 
function $Panel_0(this$static, jsObj){
$clinit_193();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $addButton(this$static, button){
var componentJS, cmp, cmp_0, panel, cmp_1;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
componentJS = (cmp_0 = $wnd.Ext.ComponentMgr.get(button.id_0) , cmp_0 == null || cmp_0 === undefined?false:true)?$getOrCreateJsObj(button):button.config_0;
panel = this$static.getOrCreateJsObj();
panel.addButton(componentJS);
}
else {
componentJS = (cmp_1 = $wnd.Ext.ComponentMgr.get(button.id_0) , cmp_1 == null || cmp_1 === undefined?false:true)?$getOrCreateJsObj(button):button.config_0;
$addButtonPreCreate(this$static, componentJS);
}
}
 
function $addButtonPreCreate(this$static, componentJS){
var config = this$static.config_0;
if (!config.buttons) {
config.buttons = new $wnd.Array();
}
config.buttons.push(componentJS);
}
 
function $addListener_6(this$static, listener){
this$static.addListener_2(listener);
var panelJ = this$static;
this$static.addListener_6('activate', function(p){
listener.onActivate(panelJ);
}
);
this$static.addListener_6('beforeclose', function(p){
return listener.doBeforeClose(panelJ);
}
);
this$static.addListener_6('beforecollapse', function(p, anim){
var animate = anim === true;
return listener.doBeforeCollapse(panelJ, animate);
}
);
this$static.addListener_6('beforeexpand', function(p, anim){
var animate = anim === true;
return listener.doBeforeExpand(panelJ, animate);
}
);
this$static.addListener_6('bodyresize', function(p, w, h){
if (w === undefined)
w = 0;
if (h === undefined)
h = 0;
listener.onBodyResize(panelJ, w.toString(), h.toString());
}
);
this$static.addListener_6('close', function(p){
listener.onClose(panelJ);
}
);
this$static.addListener_6('collapse', function(p){
listener.onCollapse(panelJ);
}
);
this$static.addListener_6('deactivate', function(p){
listener.onDeactivate(panelJ);
}
);
this$static.addListener_6('expand', function(p){
listener.onExpand(panelJ);
}
);
this$static.addListener_6('titlechange', function(p, title){
listener.onTitleChange(panelJ, title);
}
);
}
 
function $setHtml(this$static, html){
var component, panel, el;
if (component = this$static.getJsObj() , component != null && component.rendered) {
$update_0((panel = this$static.getOrCreateJsObj() , el = panel.body , el == null || el === undefined?null:($clinit_123() , $ExtElement(new ExtElement(), el))), html, false);
}
else {
$setAttribute_1(this$static, 'html', html, true, false);
}
}
 
function $setMargins(this$static, top, left, right, bottom){
var bodyStyle, margins, style, ret;
margins = $Margins(new Margins(), top, left, right, bottom);
style = 'margin:' + margins.top_0 + 'px ' + margins.right + 'px ' + margins.bottom + 'px ' + margins.left_0 + 'px;';
bodyStyle = (ret = this$static.config_0['bodyStyle'] , ret === undefined?null:String(ret));
if (bodyStyle == null) {
$setAttribute_1(this$static, 'bodyStyle', style, true, false);
}
else {
$setAttribute_1(this$static, 'bodyStyle', style + bodyStyle, true, false);
}
}
 
function $setPaddings(this$static, top, left, right, bottom){
var bodyStyle, paddings, style, ret;
paddings = $Paddings(new Paddings(), top, left, right, bottom);
style = 'padding:' + paddings.top_0 + 'px ' + paddings.right + 'px ' + paddings.bottom + 'px ' + paddings.left_0 + 'px;';
bodyStyle = (ret = this$static.config_0['bodyStyle'] , ret === undefined?null:String(ret));
if (bodyStyle == null) {
$setAttribute_1(this$static, 'bodyStyle', style, true, false);
}
else {
$setAttribute_1(this$static, 'bodyStyle', bodyStyle + style, true, false);
}
}
 
function $setTitle(this$static, title){
var component, panel;
if (title == null || $equals_1(title, '')) {
title = ' ';
}
if (component = this$static.getJsObj() , component != null && component.rendered) {
panel = this$static.getOrCreateJsObj();
panel.setTitle(title);
}
else {
$setAttribute_1(this$static, 'title', title, true, false);
}
}
 
function addListener_3(listener){
$addListener_6(this, listener);
}
 
function create_12(config){
return new $wnd.Ext.Panel(config);
}
 
function getClass_128(){
return Lcom_gwtext_client_widgets_Panel_2_classLit;
}
 
function getConfigPrototype_5(){
return configPrototype_6;
}
 
function getXType_10(){
return 'panel';
}
 
function Panel_0(){
}
 
_ = Panel_0.prototype = new Container();
_.addListener_3 = addListener_3;
_.create_0 = create_12;
_.getClass$ = getClass_128;
_.getConfigPrototype = getConfigPrototype_5;
_.getXType_0 = getXType_10;
_.typeId$ = 107;
var configPrototype_6 = null;
function $clinit_192(){
$clinit_192 = nullMethod;
$clinit_156();
}
 
function $PanelDragData(this$static, jsObj){
$clinit_192();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_127(){
return Lcom_gwtext_client_widgets_PanelDragData_2_classLit;
}
 
function PanelDragData(){
}
 
_ = PanelDragData.prototype = new DragData();
_.getClass$ = getClass_127;
_.typeId$ = 108;
function $clinit_194(){
var c;
$clinit_194 = nullMethod;
$clinit_168();
c = new $wnd.Ext.Toolbar();
configPrototype_7 = c.initialConfig;
}
 
function $ProgressBar(this$static, jsObj){
$clinit_194();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_13(config){
return new $wnd.Ext.ProgressBar(config);
}
 
function getClass_129(){
return Lcom_gwtext_client_widgets_ProgressBar_2_classLit;
}
 
function getConfigPrototype_6(){
return configPrototype_7;
}
 
function getXType_11(){
return 'progress';
}
 
function ProgressBar(){
}
 
_ = ProgressBar.prototype = new BoxComponent();
_.create_0 = create_13;
_.getClass$ = getClass_129;
_.getConfigPrototype = getConfigPrototype_6;
_.getXType_0 = getXType_11;
_.typeId$ = 109;
var configPrototype_7 = null;
function $clinit_197(){
var c;
$clinit_197 = nullMethod;
$clinit_193();
c = new $wnd.Ext.TabPanel();
configPrototype_8 = c.initialConfig;
}
 
function $TabPanel(this$static){
$clinit_197();
$Component(this$static);
$setAttribute_2(this$static, 'layoutOnTabChange', true, true, false);
$setActiveTab(this$static, 0);
return this$static;
}
 
function $TabPanel_0(this$static, jsObj){
$clinit_197();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $activate(this$static, tabIndex){
var component, tp;
if (component = this$static.getJsObj() , component != null && component.rendered) {
tp = this$static.getOrCreateJsObj();
tp.activate(tabIndex);
}
else {
$setActiveTab(this$static, tabIndex);
}
}
 
function $getActiveTab(this$static){
var tp = this$static.getOrCreateJsObj();
var p = tp.getActiveTab();
return p == null || p === undefined?null:getComponent(p);
}
 
function $setActiveTab(this$static, activeTab){
var component;
if (component = this$static.getJsObj() , component != null && component.rendered) {
$activate(this$static, activeTab);
}
else {
$setAttribute(this$static, 'activeTab', activeTab, true, false);
}
}
 
function create_15(config){
return new $wnd.Ext.TabPanel(config);
}
 
function getClass_131(){
return Lcom_gwtext_client_widgets_TabPanel_2_classLit;
}
 
function getConfigPrototype_7(){
return configPrototype_8;
}
 
function getXType_13(){
return 'tabpanel';
}
 
function setLayout_0(layout){
throw $IllegalArgumentException(new IllegalArgumentException(), 'The layout of TabPanel should not be changed.');
}
 
function TabPanel(){
}
 
_ = TabPanel.prototype = new Panel_0();
_.create_0 = create_15;
_.getClass$ = getClass_131;
_.getConfigPrototype = getConfigPrototype_7;
_.getXType_0 = getXType_13;
_.setLayout = setLayout_0;
_.typeId$ = 110;
var configPrototype_8 = null;
function $clinit_198(){
var c;
$clinit_198 = nullMethod;
$clinit_169();
c = new $wnd.Ext.Toolbar.Button();
configPrototype_9 = c.initialConfig;
}
 
function $ToolbarButton(this$static){
$clinit_198();
$Component(this$static);
return this$static;
}
 
function $ToolbarButton_1(this$static, text){
$clinit_198();
$Button_1(this$static, text);
return this$static;
}
 
function $ToolbarButton_0(this$static, jsObj){
$clinit_198();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_16(config){
return new $wnd.Ext.Toolbar.Button(config);
}
 
function getClass_132(){
return Lcom_gwtext_client_widgets_ToolbarButton_2_classLit;
}
 
function getConfigPrototype_8(){
return configPrototype_9;
}
 
function getXType_14(){
return 'tbbutton';
}
 
function ToolbarButton(){
}
 
_ = ToolbarButton.prototype = new Button_0();
_.create_0 = create_16;
_.getClass$ = getClass_132;
_.getConfigPrototype = getConfigPrototype_8;
_.getXType_0 = getXType_14;
_.typeId$ = 111;
var configPrototype_9 = null;
function getClass_134(){
return Lcom_gwtext_client_widgets_ToolbarItem_2_classLit;
}
 
function getElement_2(){
var tbi = this.jsObj;
var el = tbi.getEl();
return el === undefined?null:el;
}
 
function ToolbarItem(){
}
 
_ = ToolbarItem.prototype = new BaseExtWidget();
_.getClass$ = getClass_134;
_.getElement = getElement_2;
_.typeId$ = 112;
function $ToolbarFill(this$static){
this$static.jsObj = new $wnd.Ext.Toolbar.Fill();
return this$static;
}
 
function getClass_133(){
return Lcom_gwtext_client_widgets_ToolbarFill_2_classLit;
}
 
function ToolbarFill(){
}
 
_ = ToolbarFill.prototype = new ToolbarItem();
_.getClass$ = getClass_133;
_.typeId$ = 113;
function $clinit_201(){
var c;
$clinit_201 = nullMethod;
$clinit_196();
c = new $wnd.Ext.Toolbar.SplitButton();
configPrototype_10 = c.initialConfig;
}
 
function $ToolbarMenuButton(this$static, text, menu){
$clinit_201();
$Component(this$static);
if (text != null)
$setText(this$static, text);
$setAttribute_0(this$static, 'menu', $getOrCreateJsObj_0(menu), false, false);
return this$static;
}
 
function create_17(config){
return new $wnd.Ext.Toolbar.SplitButton(config);
}
 
function getClass_135(){
return Lcom_gwtext_client_widgets_ToolbarMenuButton_2_classLit;
}
 
function getConfigPrototype_9(){
return configPrototype_10;
}
 
function getXType_15(){
return 'tbsplit';
}
 
function ToolbarMenuButton(){
}
 
_ = ToolbarMenuButton.prototype = new SplitButton();
_.create_0 = create_17;
_.getClass$ = getClass_135;
_.getConfigPrototype = getConfigPrototype_9;
_.getXType_0 = getXType_15;
_.typeId$ = 114;
var configPrototype_10 = null;
function $ToolbarSpacer(this$static){
this$static.jsObj = new $wnd.Ext.Toolbar.Spacer();
return this$static;
}
 
function getClass_136(){
return Lcom_gwtext_client_widgets_ToolbarSpacer_2_classLit;
}
 
function ToolbarSpacer(){
}
 
_ = ToolbarSpacer.prototype = new ToolbarItem();
_.getClass$ = getClass_136;
_.typeId$ = 115;
function $ToolbarTextItem(this$static, text){
this$static.jsObj = new $wnd.Ext.Toolbar.TextItem(text);
return this$static;
}
 
function getClass_137(){
return Lcom_gwtext_client_widgets_ToolbarTextItem_2_classLit;
}
 
function ToolbarTextItem(){
}
 
_ = ToolbarTextItem.prototype = new ToolbarItem();
_.getClass$ = getClass_137;
_.typeId$ = 116;
function $Viewport(this$static, mainPanel){
var viewportPanel, container;
viewportPanel = $Panel(new Panel_0());
viewportPanel.setLayout($FitLayout(new FitLayout()));
$add_5(viewportPanel, mainPanel);
this$static.jsObj = new $wnd.Ext.Viewport(viewportPanel.config_0);
container = this$static.jsObj;
container.doLayout();
return this$static;
}
 
function getClass_139(){
return Lcom_gwtext_client_widgets_Viewport_2_classLit;
}
 
function Viewport(){
}
 
_ = Viewport.prototype = new Object_0();
_.getClass$ = getClass_139;
_.typeId$ = 0;
_.jsObj = null;
function $clinit_207(){
$clinit_207 = nullMethod;
$clinit_168();
init_18();
}
 
function $WidgetComponent_0(this$static, widget){
$clinit_207();
$Component(this$static);
createHiddenDiv();
this$static.config_0['widget'] = widget;
$setId_0(this$static, getID(widget.getElement()));
$addListener_3(this$static, 'beforedestroy', $WidgetComponent$1(new WidgetComponent$1(), this$static));
return this$static;
}
 
function $WidgetComponent(this$static, jsObj){
$clinit_207();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_19(config){
return new $wnd.Ext.ux.WidgetComponent(config);
}
 
function createHiddenDiv(){
var domConfig, hiddenDiv;
hiddenDiv = get_1('__gwtext_hidden');
if (!hiddenDiv) {
domConfig = $DomConfig(new DomConfig(), 'div', '__gwtext_hidden');
domConfig.style_0 = 'display:none;';
append_0(($clinit_99() , $doc.body), domConfig);
}
}
 
function getClass_141(){
return Lcom_gwtext_client_widgets_WidgetComponent_2_classLit;
}
 
function getXType_17(){
return 'gwtwidget';
}
 
function init_18(){
$wnd.Ext.ux.WidgetComponent = function(config){
$wnd.Ext.ux.WidgetComponent.superclass.constructor.call(this, config);
}
;
$wnd.Ext.ux.WidgetComponent = $wnd.Ext.extend($wnd.Ext.BoxComponent, {widget:null, onRender:function(container, position){
var attached = this.widget.isAttached();
if (!attached) {
var rp = get_0('__gwtext_hidden');
rp.add_1(this.widget);
}
var widgetEl = this.widget.getElement();
this.el = $wnd.Ext.get(widgetEl);
this.el.setVisible(true);
container.dom.insertBefore(widgetEl, position);
delete this.widget;
}
});
$wnd.Ext.reg('gwtwidget', $wnd.Ext.ux.WidgetComponent);
}
 
function WidgetComponent(){
}
 
_ = WidgetComponent.prototype = new BoxComponent();
_.create_0 = create_19;
_.getClass$ = getClass_141;
_.getXType_0 = getXType_17;
_.typeId$ = 117;
function $WidgetComponent$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_13(){
var widget, ret;
widget = dynamicCast((ret = this.this$0.config_0['widget'] , ret === undefined?null:ret), 17);
if ($getParentElement(widget.getElement())) {
$removeFromParent(widget);
}
}
 
function getClass_140(){
return Lcom_gwtext_client_widgets_WidgetComponent$1_2_classLit;
}
 
function WidgetComponent$1(){
}
 
_ = WidgetComponent$1.prototype = new Object_0();
_.execute = execute_13;
_.getClass$ = getClass_140;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_209(){
var c;
$clinit_209 = nullMethod;
$clinit_193();
$Window$CloseAction(new Window$CloseAction(), 'close');
HIDE = $Window$CloseAction(new Window$CloseAction(), 'hide');
c = new $wnd.Ext.Window();
configPrototype_12 = c.initialConfig;
}
 
function $Window_0(this$static, title){
$clinit_209();
$Component(this$static);
$setTitle(this$static, title);
return this$static;
}
 
function $Window(this$static, jsObj){
$clinit_209();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $addListener_7(this$static, listener){
this$static.addListener_3(listener);
var windowJ = this$static;
this$static.addListener_6('activate', function(source){
listener.onActivate_0(windowJ);
}
);
this$static.addListener_6('deactivate', function(source){
listener.onDeactivate_0(windowJ);
}
);
this$static.addListener_6('maximize', function(source){
listener.onMaximize(windowJ);
}
);
this$static.addListener_6('minimize', function(source){
listener.onMinimize(windowJ);
}
);
this$static.addListener_6('resize', function(source, width, height){
if (width == null || width === undefined)
width = 0;
if (width == 'auto')
width = -1;
if (height == null || height === undefined)
height = 0;
if (height == 'auto')
height = -1;
listener.onResize_0(windowJ, width, height);
}
);
this$static.addListener_6('restore', function(source){
listener.onRestore(windowJ);
}
);
}
 
function addListener_4(listener){
$addListener_7(this, listener);
}
 
function create_20(config){
return new $wnd.Ext.Window(config);
}
 
function getClass_143(){
return Lcom_gwtext_client_widgets_Window_2_classLit;
}
 
function getConfigPrototype_11(){
return configPrototype_12;
}
 
function getXType_18(){
return 'window';
}
 
function Window_0(){
}
 
_ = Window_0.prototype = new Panel_0();
_.addListener_4 = addListener_4;
_.create_0 = create_20;
_.getClass$ = getClass_143;
_.getConfigPrototype = getConfigPrototype_11;
_.getXType_0 = getXType_18;
_.typeId$ = 118;
var HIDE, configPrototype_12 = null;
function $Window$CloseAction(this$static, closeAction){
this$static.closeAction = closeAction;
return this$static;
}
 
function getClass_142(){
return Lcom_gwtext_client_widgets_Window$CloseAction_2_classLit;
}
 
function Window$CloseAction(){
}
 
_ = Window$CloseAction.prototype = new Object_0();
_.getClass$ = getClass_142;
_.typeId$ = 0;
_.closeAction = null;
function doBeforeDestroy(component){
return true;
}
 
function doBeforeHide(component){
return true;
}
 
function doBeforeRender(component){
return true;
}
 
function doBeforeShow(component){
return true;
}
 
function doBeforeStateRestore(component, state){
return true;
}
 
function doBeforeStateSave(component, state){
return true;
}
 
function getClass_146(){
return Lcom_gwtext_client_widgets_event_ComponentListenerAdapter_2_classLit;
}
 
function onDestroy_0(component){
}
 
function onDisable(component){
}
 
function onEnable(component){
}
 
function onHide(component){
}
 
function onRender(component){
}
 
function onShow(component){
}
 
function onStateRestore(component, state){
}
 
function onStateSave(component, state){
}
 
function ComponentListenerAdapter(){
}
 
_ = ComponentListenerAdapter.prototype = new Object_0();
_.doBeforeDestroy = doBeforeDestroy;
_.doBeforeHide = doBeforeHide;
_.doBeforeRender = doBeforeRender;
_.doBeforeShow = doBeforeShow;
_.doBeforeStateRestore = doBeforeStateRestore;
_.doBeforeStateSave = doBeforeStateSave;
_.getClass$ = getClass_146;
_.onDestroy_0 = onDestroy_0;
_.onDisable = onDisable;
_.onEnable = onEnable;
_.onHide = onHide;
_.onRender = onRender;
_.onShow = onShow;
_.onStateRestore = onStateRestore;
_.onStateSave = onStateSave;
_.typeId$ = 0;
function getClass_144(){
return Lcom_gwtext_client_widgets_event_BoxComponentListenerAdapter_2_classLit;
}
 
function onMove(component, x_0, y){
}
 
function onResize_0(component, adjWidth, adjHeight, rawWidth, rawHeight){
}
 
function BoxComponentListenerAdapter(){
}
 
_ = BoxComponentListenerAdapter.prototype = new ComponentListenerAdapter();
_.getClass$ = getClass_144;
_.onMove = onMove;
_.onResize = onResize_0;
_.typeId$ = 0;
function getClass_145(){
return Lcom_gwtext_client_widgets_event_ButtonListenerAdapter_2_classLit;
}
 
function onClick(button, e){
}
 
function onMenuHide(button, menu){
}
 
function onMenuShow(button, menu){
}
 
function onMenuTriggerOut(button, menu, e){
}
 
function onMenuTriggerOver(button, menu, e){
}
 
function onMouseOut(button, e){
}
 
function onMouseOver(button, e){
}
 
function onToggle(button, pressed){
}
 
function ButtonListenerAdapter(){
}
 
_ = ButtonListenerAdapter.prototype = new ComponentListenerAdapter();
_.getClass$ = getClass_145;
_.onClick_0 = onClick;
_.onMenuHide = onMenuHide;
_.onMenuShow = onMenuShow;
_.onMenuTriggerOut = onMenuTriggerOut;
_.onMenuTriggerOver = onMenuTriggerOver;
_.onMouseOut = onMouseOut;
_.onMouseOver = onMouseOver;
_.onToggle = onToggle;
_.typeId$ = 0;
function doBeforeAdd(self, component, index){
return true;
}
 
function doBeforeRemove(self, component){
return true;
}
 
function getClass_147(){
return Lcom_gwtext_client_widgets_event_ContainerListenerAdapter_2_classLit;
}
 
function onAdd(self, component, index){
}
 
function onAfterLayout(self){
}
 
function onRemove(self, component){
}
 
function ContainerListenerAdapter(){
}
 
_ = ContainerListenerAdapter.prototype = new BoxComponentListenerAdapter();
_.doBeforeAdd = doBeforeAdd;
_.doBeforeRemove_0 = doBeforeRemove;
_.getClass$ = getClass_147;
_.onAdd = onAdd;
_.onAfterLayout = onAfterLayout;
_.onRemove_0 = onRemove;
_.typeId$ = 0;
function doBeforeClick(source, index, node, e){
return true;
}
 
function doBeforeSelect(source, node, selections){
return true;
}
 
function getClass_148(){
return Lcom_gwtext_client_widgets_event_DataViewListenerAdapter_2_classLit;
}
 
function onClick_0(source, index, node, e){
}
 
function onContainerClick(source, e){
}
 
function onContextMenu(source, index, node, e){
}
 
function onDblClick(source, index, node, e){
}
 
function onSelectionChange(view, selections){
}
 
function DataViewListenerAdapter(){
}
 
_ = DataViewListenerAdapter.prototype = new BoxComponentListenerAdapter();
_.doBeforeClick = doBeforeClick;
_.doBeforeSelect = doBeforeSelect;
_.getClass$ = getClass_148;
_.onClick_1 = onClick_0;
_.onContainerClick = onContainerClick;
_.onContextMenu = onContextMenu;
_.onDblClick = onDblClick;
_.onSelectionChange = onSelectionChange;
_.typeId$ = 0;
function doBeforeClose(panel){
return true;
}
 
function doBeforeCollapse(panel, animate){
return true;
}
 
function doBeforeExpand(panel, animate){
return true;
}
 
function getClass_149(){
return Lcom_gwtext_client_widgets_event_PanelListenerAdapter_2_classLit;
}
 
function onActivate(panel){
}
 
function onBodyResize(panel, width, height){
}
 
function onClose(panel){
}
 
function onCollapse(panel){
}
 
function onDeactivate(panel){
}
 
function onExpand(panel){
}
 
function onTitleChange(panel, title){
}
 
function PanelListenerAdapter(){
}
 
_ = PanelListenerAdapter.prototype = new ContainerListenerAdapter();
_.doBeforeClose = doBeforeClose;
_.doBeforeCollapse = doBeforeCollapse;
_.doBeforeExpand = doBeforeExpand;
_.getClass$ = getClass_149;
_.onActivate = onActivate;
_.onBodyResize = onBodyResize;
_.onClose = onClose;
_.onCollapse = onCollapse;
_.onDeactivate = onDeactivate;
_.onExpand = onExpand;
_.onTitleChange = onTitleChange;
_.typeId$ = 0;
function getClass_150(){
return Lcom_gwtext_client_widgets_event_WindowListenerAdapter_2_classLit;
}
 
function onActivate_0(source){
}
 
function onDeactivate_0(source){
}
 
function onMaximize(source){
}
 
function onMinimize(source){
}
 
function onResize_1(source, width, height){
}
 
function onRestore(source){
}
 
function WindowListenerAdapter(){
}
 
_ = WindowListenerAdapter.prototype = new PanelListenerAdapter();
_.getClass$ = getClass_150;
_.onActivate_0 = onActivate_0;
_.onDeactivate_0 = onDeactivate_0;
_.onMaximize = onMaximize;
_.onMinimize = onMinimize;
_.onResize_0 = onResize_1;
_.onRestore = onRestore;
_.typeId$ = 0;
function $clinit_231(){
$clinit_231 = nullMethod;
$clinit_168();
}
 
function $getValueAsString(this$static){
var field = this$static.getOrCreateJsObj();
var value = field.getValue();
return value == null || value === undefined?'':value.toString();
}
 
function $setFieldLabel(this$static, fieldLabel){
var component;
$setAttribute_1(this$static, 'fieldLabel', fieldLabel, true, true);
if (component = this$static.getJsObj() , component != null && component.rendered) {
$setFieldLabelRendered(this$static, fieldLabel, this$static.id_0);
}
}
 
function $setFieldLabelRendered(this$static, fieldLabel, fieldId){
var field = this$static.getOrCreateJsObj();
var label = $wnd.Ext.DomQuery.select($wnd.String.format('label[for="{0}"]', fieldId));
if (label) {
label[0].childNodes[0].nodeValue = fieldLabel;
}
}
 
function $setRawValue(this$static, value){
var field = this$static.getOrCreateJsObj();
field.setRawValue(value);
}
 
function $setValue_0(this$static, value){
var component, field;
if (component = this$static.getJsObj() , component != null && component.rendered) {
field = this$static.getOrCreateJsObj();
field.setValue(value);
}
else {
$setAttribute_1(this$static, 'value', value, true, false);
}
}
 
function addListener_5(listener){
this.addListener_0(listener);
var fieldJ = this;
this.addListener_6('blur', function(fld){
listener.onBlur(fieldJ);
}
);
this.addListener_6('change', function(fld, newVal, oldVal){
var newValJ = newVal == null || (newVal === undefined || newVal == '')?null:$wnd.GwtExt.convertToJavaType(newVal);
var oldValJ = oldVal == null || (oldVal === undefined || oldVal == '')?null:$wnd.GwtExt.convertToJavaType(oldVal);
listener.onChange(fieldJ, newValJ, oldValJ);
}
);
this.addListener_6('focus', function(fld){
listener.onFocus(fieldJ);
}
);
this.addListener_6('invalid', function(fld, msg){
if (msg === undefined)
msg = null;
listener.onInvalid(fieldJ, msg);
}
);
this.addListener_6('specialkey', function(fld, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onSpecialKey(fieldJ, e);
}
);
this.addListener_6('valid', function(fld){
listener.onValid(fieldJ);
}
);
}
 
function getClass_157(){
return Lcom_gwtext_client_widgets_form_Field_2_classLit;
}
 
function getCls_0(){
return $getAttribute(this, 'cls');
}
 
function getXType_23(){
return 'field';
}
 
function setCls_0(cls){
$setCls(this, cls);
}
 
function setValue_0(value){
$setValue_0(this, value);
}
 
function Field(){
}
 
_ = Field.prototype = new BoxComponent();
_.addListener_5 = addListener_5;
_.getClass$ = getClass_157;
_.getCls = getCls_0;
_.getXType_0 = getXType_23;
_.setCls = setCls_0;
_.setValue_1 = setValue_0;
_.typeId$ = 119;
function $clinit_225(){
var c;
$clinit_225 = nullMethod;
$clinit_231();
c = new $wnd.Ext.form.Checkbox();
configPrototype_13 = c.initialConfig;
}
 
function $Checkbox_0(this$static, jsObj){
$clinit_225();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $Checkbox(this$static){
$clinit_225();
$Component(this$static);
return this$static;
}
 
function $setChecked(this$static, checked){
var component, cb;
if (component = this$static.getJsObj() , component != null && component.rendered) {
cb = this$static.getOrCreateJsObj();
cb.setValue(checked);
}
else {
$setAttribute_2(this$static, 'checked', checked, true, false);
}
}
 
function create_21(config){
return new $wnd.Ext.form.Checkbox(config);
}
 
function getClass_151(){
return Lcom_gwtext_client_widgets_form_Checkbox_2_classLit;
}
 
function getConfigPrototype_12(){
return configPrototype_13;
}
 
function getXType_19(){
return 'checkbox';
}
 
function Checkbox(){
}
 
_ = Checkbox.prototype = new Field();
_.create_0 = create_21;
_.getClass$ = getClass_151;
_.getConfigPrototype = getConfigPrototype_12;
_.getXType_0 = getXType_19;
_.typeId$ = 120;
var configPrototype_13 = null;
function $clinit_242(){
var c;
$clinit_242 = nullMethod;
$clinit_231();
c = new $wnd.Ext.form.TextField();
configPrototype_21 = c.initialConfig;
}
 
function $TextField(this$static){
$clinit_242();
$Component(this$static);
return this$static;
}
 
function $TextField_1(this$static, fieldLabel){
$clinit_242();
$Component(this$static);
$setFieldLabel(this$static, fieldLabel);
return this$static;
}
 
function $TextField_2(this$static, fieldLabel, name, width){
$clinit_242();
$Component(this$static);
$setFieldLabel(this$static, fieldLabel);
$setAttribute_1(this$static, 'name', name, true, false);
$setWidth_0(this$static, width);
return this$static;
}
 
function $TextField_0(this$static, jsObj){
$clinit_242();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $addKeyListener_0(this$static, keyCode, listener){
var component;
if (component = this$static.getJsObj() , component != null && component.rendered) {
$addKeyListener($getEl(this$static), keyCode, listener);
}
else {
$addListener_3(this$static, 'render', $TextField$1(new TextField$1(), this$static, keyCode, listener));
}
}
 
function $addKeyPressListener(this$static, listener){
var component;
if (component = this$static.getJsObj() , component != null && component.rendered) {
$addListener($getEl(this$static), 'keypress', listener);
}
else {
$addListener_3(this$static, 'render', $TextField$4(new TextField$4(), this$static, listener));
}
}
 
function $addKeyPressListener_0(this$static, listener, listenerConfig){
var component;
if (component = this$static.getJsObj() , component != null && component.rendered) {
$addListener_0($getEl(this$static), 'keypress', listener, listenerConfig);
}
else {
$addListener_3(this$static, 'render', $TextField$5(new TextField$5(), this$static, listener, listenerConfig));
}
}
 
function $addListener_9(this$static, listener){
this$static.addListener_5(listener);
var fieldJ = this$static;
this$static.addListener_6('autosize', function(fld, width){
listener.onAutoSize(fieldJ, width);
}
);
}
 
function $setPassword(this$static, password){
if (password)
$setAttribute_1(this$static, 'inputType', 'password', true, false);
}
 
function create_32(jsObj){
return new $wnd.Ext.form.TextField(jsObj);
}
 
function getClass_168(){
return Lcom_gwtext_client_widgets_form_TextField_2_classLit;
}
 
function getConfigPrototype_20(){
return configPrototype_21;
}
 
function getXType_31(){
return 'textfield';
}
 
function TextField(){
}
 
_ = TextField.prototype = new Field();
_.create_0 = create_32;
_.getClass$ = getClass_168;
_.getConfigPrototype = getConfigPrototype_20;
_.getXType_0 = getXType_31;
_.typeId$ = 121;
var configPrototype_21 = null;
function $clinit_228(){
var c;
$clinit_228 = nullMethod;
$clinit_242();
REMOTE = $ComboBox$Mode(new ComboBox$Mode(), 'remote');
LOCAL = $ComboBox$Mode(new ComboBox$Mode(), 'local');
ALL = $ComboBox$Trigger(new ComboBox$Trigger(), 'all');
$ComboBox$Trigger(new ComboBox$Trigger(), 'query');
c = new $wnd.Ext.form.ComboBox();
configPrototype_14 = c.initialConfig;
}
 
function $ComboBox(this$static){
$clinit_228();
$Component(this$static);
return this$static;
}
 
function $ComboBox_1(this$static, fieldLabel, name, width){
$clinit_228();
$Component(this$static);
$setFieldLabel(this$static, fieldLabel);
$setAttribute_1(this$static, 'name', name, true, false);
$setWidth_0(this$static, width);
return this$static;
}
 
function $ComboBox_0(this$static, jsObj){
$clinit_228();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $addListener_8(this$static, listener){
this$static.addListener_5(listener);
var fieldJ = this$static;
this$static.addListener_6('beforequery', function(o){
var cbJ = ($clinit_244() , $ComboBoxCallback(new ComboBoxCallback(), o));
return listener.doBeforeQuery(fieldJ, cbJ);
}
);
this$static.addListener_6('beforeselect', function(fld, record, index){
var recordJ = ($clinit_148() , $Record(new Record(), record));
return listener.doBeforeSelect_0(fieldJ, recordJ, index);
}
);
this$static.addListener_6('collapse', function(fld){
listener.onCollapse_0(fieldJ);
}
);
this$static.addListener_6('expand', function(fld){
listener.onExpand_0(fieldJ);
}
);
this$static.addListener_6('select', function(fld, record, index){
var recordJ = ($clinit_148() , $Record(new Record(), record));
listener.onSelect(fieldJ, recordJ, index);
}
);
}
 
function $setEditable(this$static, editable){
var name, cmp, cb;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
cb = this$static.getOrCreateJsObj();
cb.setEditable(editable);
}
else {
$setAttribute_2(this$static, 'editable', editable, true, false);
}
if (!editable) {
name = $getAttribute(this$static, 'name');
if (name != null) {
$setAttribute_1(this$static, 'hiddenName', name, true, false);
}
}
}
 
function $setStore_0(this$static, store){
var component, cmp;
if (component = this$static.getJsObj() , component != null && component.rendered) {
$setStoreRendered_0(this$static, $getJsObj_2(store));
}
else {
if (store != null && canCast(store.typeId$, 56)) {
$setAttribute_1(this$static, 'triggerAction', ALL.trigger, true, false);
if (!(cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true))
$setAttribute_1(this$static, 'mode', LOCAL.mode, true, true);
$load(store);
}
$setAttribute_0(this$static, 'store', $getJsObj_2(store), true, false);
this$static.store_0 = store;
}
}
 
function $setStoreRendered_0(this$static, storeJS){
var cb = this$static.getOrCreateJsObj();
cb.bindStore(storeJS);
}
 
function $setTpl(this$static, template){
var html;
html = template.html;
$setTpl_0(this$static, html);
}
 
function $setTpl_0(this$static, template){
if (template.indexOf('<tpl') == -1) {
template = '<tpl for=".">' + template + '<\/tpl>';
}
$setAttribute_1(this$static, 'tpl', template, true, false);
}
 
function create_22(jsObj){
return new $wnd.Ext.form.ComboBox(jsObj);
}
 
function getClass_154(){
return Lcom_gwtext_client_widgets_form_ComboBox_2_classLit;
}
 
function getConfigPrototype_13(){
return configPrototype_14;
}
 
function getElement_3(jsObj){
var extEl = jsObj.wrap;
if (extEl == null || extEl === undefined) {
return null;
}
var el = extEl.dom;
if (el == null || el === undefined) {
return null;
}
else {
return el.dom || el;
}
}
 
function getXType_20(){
return 'combo';
}
 
function onDestroy_1(){
this.store_0 = null;
}
 
function setValue(value){
$setValue_0(this, value);
}
 
function ComboBox(){
}
 
_ = ComboBox.prototype = new TextField();
_.create_0 = create_22;
_.getClass$ = getClass_154;
_.getConfigPrototype = getConfigPrototype_13;
_.getElement_0 = getElement_3;
_.getXType_0 = getXType_20;
_.onDestroy = onDestroy_1;
_.setValue_1 = setValue;
_.typeId$ = 122;
_.store_0 = null;
var ALL, LOCAL, REMOTE, configPrototype_14 = null;
function $ComboBox$Mode(this$static, mode){
this$static.mode = mode;
return this$static;
}
 
function getClass_152(){
return Lcom_gwtext_client_widgets_form_ComboBox$Mode_2_classLit;
}
 
function ComboBox$Mode(){
}
 
_ = ComboBox$Mode.prototype = new Object_0();
_.getClass$ = getClass_152;
_.typeId$ = 0;
_.mode = null;
function $ComboBox$Trigger(this$static, trigger){
this$static.trigger = trigger;
return this$static;
}
 
function getClass_153(){
return Lcom_gwtext_client_widgets_form_ComboBox$Trigger_2_classLit;
}
 
function ComboBox$Trigger(){
}
 
_ = ComboBox$Trigger.prototype = new Object_0();
_.getClass$ = getClass_153;
_.typeId$ = 0;
_.trigger = null;
function $clinit_229(){
$clinit_229 = nullMethod;
$clinit_242();
fix();
}
 
function $DateField(this$static){
$clinit_229();
$Component(this$static);
return this$static;
}
 
function $DateField_1(this$static, fieldLabel, name, width){
$clinit_229();
$Component(this$static);
$setFieldLabel(this$static, fieldLabel);
$setAttribute_1(this$static, 'name', name, true, false);
$setWidth_0(this$static, width);
return this$static;
}
 
function $DateField_0(this$static, jsObj){
$clinit_229();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_23(jsObj){
return new $wnd.Ext.ux.DateFieldEx(jsObj);
}
 
function fix(){
$wnd.Ext.ux.DateFieldEx = $wnd.Ext.extend($wnd.Ext.form.DateField, {initComponent:function(){
$wnd.Ext.ux.DateFieldEx.superclass.initComponent.call(this);
this.addEvents('select');
this.menuListeners.select = function(m, d){
if (this.fireEvent('select', this, d) !== false)
this.setValue(d);
}
;
}
});
$wnd.Ext.reg('datefieldex', $wnd.Ext.ux.DateFieldEx);
}
 
function getClass_155(){
return Lcom_gwtext_client_widgets_form_DateField_2_classLit;
}
 
function getElement_4(jsObj){
var extEl = jsObj.wrap;
if (extEl == null || extEl === undefined) {
return null;
}
var el = extEl.dom;
if (el == null || el === undefined) {
return null;
}
else {
return el.dom || el;
}
}
 
function getXType_21(){
return 'datefieldex';
}
 
function DateField(){
}
 
_ = DateField.prototype = new TextField();
_.create_0 = create_23;
_.getClass$ = getClass_155;
_.getElement_0 = getElement_4;
_.getXType_0 = getXType_21;
_.typeId$ = 123;
function $clinit_230(){
var c;
$clinit_230 = nullMethod;
$clinit_193();
c = new $wnd.Ext.form.FieldSet();
configPrototype_15 = c.initialConfig;
}
 
function $FieldSet(this$static, jsObj){
$clinit_230();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_24(jsObj){
return new $wnd.Ext.form.FieldSet(jsObj);
}
 
function getClass_156(){
return Lcom_gwtext_client_widgets_form_FieldSet_2_classLit;
}
 
function getConfigPrototype_14(){
return configPrototype_15;
}
 
function getXType_22(){
return 'fieldset';
}
 
function setLayout_1(layout){
$setAttribute_0(this, 'layout', $getJsObj_5(layout), true, false);
}
 
function FieldSet(){
}
 
_ = FieldSet.prototype = new Panel_0();
_.create_0 = create_24;
_.getClass$ = getClass_156;
_.getConfigPrototype = getConfigPrototype_14;
_.getXType_0 = getXType_22;
_.setLayout = setLayout_1;
_.typeId$ = 124;
var configPrototype_15 = null;
function $clinit_232(){
var c;
$clinit_232 = nullMethod;
$clinit_193();
$wnd.Ext.QuickTips.init();
$clinit_231();
$wnd.Ext.form.Field.prototype.msgTarget = 'side';
c = new $wnd.Ext.form.FormPanel();
configPrototype_16 = c.initialConfig;
}
 
function $FormPanel_0(this$static, labelAlign){
$clinit_232();
$Component(this$static);
$setAttribute_1(this$static, 'labelAlign', labelAlign.position, true, false);
return this$static;
}
 
function $FormPanel(this$static, jsObj){
$clinit_232();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_25(config){
return new $wnd.Ext.form.FormPanel(config);
}
 
function getClass_158(){
return Lcom_gwtext_client_widgets_form_FormPanel_2_classLit;
}
 
function getConfigPrototype_15(){
return configPrototype_16;
}
 
function getXType_24(){
return 'form';
}
 
function initComponent_0(){
var component;
component = this.getOrCreateJsObj();
component.addEvents('post-render');
}
 
function FormPanel(){
}
 
_ = FormPanel.prototype = new Panel_0();
_.create_0 = create_25;
_.getClass$ = getClass_158;
_.getConfigPrototype = getConfigPrototype_15;
_.getXType_0 = getXType_24;
_.initComponent_0 = initComponent_0;
_.typeId$ = 125;
var configPrototype_16 = null;
function $clinit_233(){
var c;
$clinit_233 = nullMethod;
$clinit_231();
c = new $wnd.Ext.form.Hidden();
configPrototype_17 = c.initialConfig;
}
 
function $Hidden(this$static, jsObj){
$clinit_233();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_26(jsObj){
return new $wnd.Ext.form.Hidden(jsObj);
}
 
function getClass_159(){
return Lcom_gwtext_client_widgets_form_Hidden_2_classLit;
}
 
function getConfigPrototype_16(){
return configPrototype_17;
}
 
function getXType_25(){
return 'hidden';
}
 
function Hidden(){
}
 
_ = Hidden.prototype = new Field();
_.create_0 = create_26;
_.getClass$ = getClass_159;
_.getConfigPrototype = getConfigPrototype_16;
_.getXType_0 = getXType_25;
_.typeId$ = 126;
var configPrototype_17 = null;
function $clinit_234(){
var c;
$clinit_234 = nullMethod;
$clinit_231();
c = new $wnd.Ext.form.HtmlEditor();
configPrototype_18 = c.initialConfig;
}
 
function $HtmlEditor(this$static, jsObj){
$clinit_234();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_27(jsObj){
return new $wnd.Ext.form.HtmlEditor(jsObj);
}
 
function getClass_160(){
return Lcom_gwtext_client_widgets_form_HtmlEditor_2_classLit;
}
 
function getConfigPrototype_17(){
return configPrototype_18;
}
 
function getXType_26(){
return 'htmleditor';
}
 
function setHeight_5(height){
$setAttribute(this, 'height', height, true, false);
}
 
function HtmlEditor(){
}
 
_ = HtmlEditor.prototype = new Field();
_.create_0 = create_27;
_.getClass$ = getClass_160;
_.getConfigPrototype = getConfigPrototype_17;
_.getXType_0 = getXType_26;
_.setHeight_0 = setHeight_5;
_.typeId$ = 127;
var configPrototype_18 = null;
function $clinit_235(){
$clinit_235 = nullMethod;
$clinit_168();
}
 
function $Label_0(this$static, jsObj){
$clinit_235();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_28(jsObj){
return new $wnd.Ext.form.Label(jsObj);
}
 
function getClass_161(){
return Lcom_gwtext_client_widgets_form_Label_2_classLit;
}
 
function getXType_27(){
return 'label';
}
 
function Label_0(){
}
 
_ = Label_0.prototype = new BoxComponent();
_.create_0 = create_28;
_.getClass$ = getClass_161;
_.getXType_0 = getXType_27;
_.typeId$ = 128;
function $clinit_236(){
$clinit_236 = nullMethod;
$clinit_242();
fix_0();
}
 
function $NumberField(this$static, jsObj){
$clinit_236();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_29(jsObj){
return new $wnd.Ext.form.NumberField(jsObj);
}
 
function fix_0(){
$wnd.Ext.form.NumberField.prototype.fixPrecision = function(value){
var nan = isNaN(value);
if (!this.allowDecimals || (this.decimalPrecision == -1 || (nan || !value))) {
return nan?'':value;
}
return parseFloat(value).toFixed(this.decimalPrecision);
}
;
$wnd.Ext.form.NumberField.prototype.removeTrailingZeros = function(value){
var nan = isNaN(value);
if (!this.allowDecimals || (this.decimalPrecision == -1 || (nan || !value))) {
return nan?'':value;
}
var decPos = value.indexOf('.');
if (decPos > -1) {
var first = value.substring(0, decPos);
var second = value.substring(decPos, value.length);
while (second.charAt(second.length - 1) == '0')
second = second.substring(0, second.length - 1);
if (second.length > 1)
return first + second;
else
return first;
}
return value;
}
;
$wnd.Ext.form.NumberField.prototype.setValue = function(v){
v = this.fixPrecision(v);
if (this.removeTrailZeros && this.removeTrailZeros === true)
v = this.removeTrailingZeros(v);
v = isNaN(v)?'':String(v).replace('.', this.decimalSeparator);
$wnd.Ext.form.NumberField.superclass.setValue.call(this, v);
}
;
}
 
function getClass_162(){
return Lcom_gwtext_client_widgets_form_NumberField_2_classLit;
}
 
function getXType_28(){
return 'numberfield';
}
 
function NumberField(){
}
 
_ = NumberField.prototype = new TextField();
_.create_0 = create_29;
_.getClass$ = getClass_162;
_.getXType_0 = getXType_28;
_.typeId$ = 129;
function $clinit_237(){
var c;
$clinit_237 = nullMethod;
$clinit_225();
c = new $wnd.Ext.form.Radio();
configPrototype_19 = c.initialConfig;
}
 
function $Radio(this$static, jsObj){
$clinit_237();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_30(config){
return new $wnd.Ext.form.Radio(config);
}
 
function getClass_163(){
return Lcom_gwtext_client_widgets_form_Radio_2_classLit;
}
 
function getConfigPrototype_18(){
return configPrototype_19;
}
 
function getXType_29(){
return 'radio';
}
 
function setValue_1(value){
var component;
if (component = this.getJsObj() , component != null && component.rendered) {
$setValue_0(this, value);
}
else {
$setAttribute_1(this, 'inputValue', value, true, false);
}
}
 
function Radio(){
}
 
_ = Radio.prototype = new Checkbox();
_.create_0 = create_30;
_.getClass$ = getClass_163;
_.getConfigPrototype = getConfigPrototype_18;
_.getXType_0 = getXType_29;
_.setValue_1 = setValue_1;
_.typeId$ = 130;
var configPrototype_19 = null;
function $clinit_238(){
var c;
$clinit_238 = nullMethod;
$clinit_242();
c = new $wnd.Ext.form.TextArea();
configPrototype_20 = c.initialConfig;
}
 
function $TextArea(this$static){
$clinit_238();
$Component(this$static);
return this$static;
}
 
function $TextArea_0(this$static, jsObj){
$clinit_238();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_31(jsObj){
return new $wnd.Ext.form.TextArea(jsObj);
}
 
function getClass_164(){
return Lcom_gwtext_client_widgets_form_TextArea_2_classLit;
}
 
function getConfigPrototype_19(){
return configPrototype_20;
}
 
function getXType_30(){
return 'textarea';
}
 
function TextArea(){
}
 
_ = TextArea.prototype = new TextField();
_.create_0 = create_31;
_.getClass$ = getClass_164;
_.getConfigPrototype = getConfigPrototype_19;
_.getXType_0 = getXType_30;
_.typeId$ = 131;
var configPrototype_20 = null;
function $TextField$1(this$static, this$0, val$keyCode, val$listener){
this$static.this$0 = this$0;
this$static.val$keyCode = val$keyCode;
this$static.val$listener = val$listener;
return this$static;
}
 
function execute_14(){
$addKeyListener_0(this.this$0, this.val$keyCode, this.val$listener);
}
 
function getClass_165(){
return Lcom_gwtext_client_widgets_form_TextField$1_2_classLit;
}
 
function TextField$1(){
}
 
_ = TextField$1.prototype = new Object_0();
_.execute = execute_14;
_.getClass$ = getClass_165;
_.typeId$ = 0;
_.this$0 = null;
_.val$keyCode = 0;
_.val$listener = null;
function $TextField$4(this$static, this$0, val$listener){
this$static.this$0 = this$0;
this$static.val$listener = val$listener;
return this$static;
}
 
function execute_15(){
$addKeyPressListener(this.this$0, this.val$listener);
}
 
function getClass_166(){
return Lcom_gwtext_client_widgets_form_TextField$4_2_classLit;
}
 
function TextField$4(){
}
 
_ = TextField$4.prototype = new Object_0();
_.execute = execute_15;
_.getClass$ = getClass_166;
_.typeId$ = 0;
_.this$0 = null;
_.val$listener = null;
function $TextField$5(this$static, this$0, val$listener, val$listenerConfig){
this$static.this$0 = this$0;
this$static.val$listener = val$listener;
this$static.val$listenerConfig = val$listenerConfig;
return this$static;
}
 
function execute_16(){
$addKeyPressListener_0(this.this$0, this.val$listener, this.val$listenerConfig);
}
 
function getClass_167(){
return Lcom_gwtext_client_widgets_form_TextField$5_2_classLit;
}
 
function TextField$5(){
}
 
_ = TextField$5.prototype = new Object_0();
_.execute = execute_16;
_.getClass$ = getClass_167;
_.typeId$ = 0;
_.this$0 = null;
_.val$listener = null;
_.val$listenerConfig = null;
function $clinit_243(){
var c;
$clinit_243 = nullMethod;
$clinit_228();
c = new $wnd.Ext.form.TimeField();
configPrototype_22 = c.initialConfig;
}
 
function $TimeField(this$static, jsObj){
$clinit_243();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_33(jsObj){
return new $wnd.Ext.form.TimeField(jsObj);
}
 
function getClass_169(){
return Lcom_gwtext_client_widgets_form_TimeField_2_classLit;
}
 
function getConfigPrototype_21(){
return configPrototype_22;
}
 
function getXType_32(){
return 'timefield';
}
 
function TimeField(){
}
 
_ = TimeField.prototype = new ComboBox();
_.create_0 = create_33;
_.getClass$ = getClass_169;
_.getConfigPrototype = getConfigPrototype_21;
_.getXType_0 = getXType_32;
_.typeId$ = 132;
var configPrototype_22 = null;
function $clinit_244(){
$clinit_244 = nullMethod;
$clinit_128();
}
 
function $ComboBoxCallback(this$static, jsObj){
$clinit_244();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_170(){
return Lcom_gwtext_client_widgets_form_event_ComboBoxCallback_2_classLit;
}
 
function ComboBoxCallback(){
}
 
_ = ComboBoxCallback.prototype = new JsObject();
_.getClass$ = getClass_170;
_.typeId$ = 133;
function getClass_172(){
return Lcom_gwtext_client_widgets_form_event_FieldListenerAdapter_2_classLit;
}
 
function onBlur(field){
}
 
function onChange(field, newVal, oldVal){
}
 
function onFocus(field){
}
 
function onInvalid(field, msg){
}
 
function onSpecialKey(field, e){
}
 
function onValid(field){
}
 
function FieldListenerAdapter(){
}
 
_ = FieldListenerAdapter.prototype = new BoxComponentListenerAdapter();
_.getClass$ = getClass_172;
_.onBlur = onBlur;
_.onChange = onChange;
_.onFocus = onFocus;
_.onInvalid = onInvalid;
_.onSpecialKey = onSpecialKey;
_.onValid = onValid;
_.typeId$ = 0;
function doBeforeQuery(comboBox, cb){
return true;
}
 
function doBeforeSelect_0(comboBox, record, index){
return true;
}
 
function getClass_171(){
return Lcom_gwtext_client_widgets_form_event_ComboBoxListenerAdapter_2_classLit;
}
 
function onCollapse_0(comboBox){
}
 
function onExpand_0(comboBox){
}
 
function onSelect(comboBox, record, index){
}
 
function ComboBoxListenerAdapter(){
}
 
_ = ComboBoxListenerAdapter.prototype = new FieldListenerAdapter();
_.doBeforeQuery = doBeforeQuery;
_.doBeforeSelect_0 = doBeforeSelect_0;
_.getClass$ = getClass_171;
_.onCollapse_0 = onCollapse_0;
_.onExpand_0 = onExpand_0;
_.onSelect = onSelect;
_.typeId$ = 0;
function getClass_173(){
return Lcom_gwtext_client_widgets_form_event_TextFieldListenerAdapter_2_classLit;
}
 
function onAutoSize(field, width){
}
 
function TextFieldListenerAdapter(){
}
 
_ = TextFieldListenerAdapter.prototype = new FieldListenerAdapter();
_.getClass$ = getClass_173;
_.onAutoSize = onAutoSize;
_.typeId$ = 0;
function $clinit_251(){
$clinit_251 = nullMethod;
$clinit_128();
}
 
function getClass_174(){
return Lcom_gwtext_client_widgets_grid_AbstractSelectionModel_2_classLit;
}
 
function AbstractSelectionModel(){
}
 
_ = AbstractSelectionModel.prototype = new JsObject();
_.getClass$ = getClass_174;
_.typeId$ = 134;
function $clinit_252(){
$clinit_252 = nullMethod;
$clinit_117();
}
 
function getClass_175(){
return Lcom_gwtext_client_widgets_grid_BaseColumnConfig_2_classLit;
}
 
function BaseColumnConfig(){
}
 
_ = BaseColumnConfig.prototype = new BaseConfig();
_.getClass$ = getClass_175;
_.typeId$ = 135;
function $clinit_254(){
$clinit_254 = nullMethod;
$clinit_252();
}
 
function $ColumnConfig(this$static, header, dataIndex, width){
$clinit_254();
$ColumnConfig_2(this$static, header, dataIndex, width, false, null);
return this$static;
}
 
function $ColumnConfig_0(this$static, header, dataIndex, width, sortable){
$clinit_254();
$ColumnConfig_2(this$static, header, dataIndex, width, sortable, null);
return this$static;
}
 
function $ColumnConfig_1(this$static, header, dataIndex, width, sortable, renderer){
$clinit_254();
$ColumnConfig_2(this$static, header, dataIndex, width, sortable, renderer);
return this$static;
}
 
function $ColumnConfig_2(this$static, header, dataIndex, width, sortable, renderer){
$clinit_254();
this$static.jsObj = new Object();
this$static.jsObj['header'] = header;
this$static.jsObj['dataIndex'] = dataIndex;
this$static.jsObj['width'] = width;
this$static.jsObj['sortable'] = sortable;
if (renderer)
$setRenderer(this$static, renderer);
return this$static;
}
 
function $setRenderer(this$static, renderer){
var config = this$static.getJsObj();
config['renderer'] = function(val, cell, r, rowIndex, colNum, store){
var valJ = val == null || (val === undefined || val === '')?null:$wnd.GwtExt.convertToJavaType(val);
var recJ = ($clinit_148() , $Record(new Record(), r));
var cellJ = ($clinit_256() , new ColumnModel$1());
var storeJ = ($clinit_150() , $Store_0(new Store(), store));
return renderer.render_0(valJ, cellJ, recJ, rowIndex, colNum, storeJ);
}
;
}
 
function getClass_176(){
return Lcom_gwtext_client_widgets_grid_ColumnConfig_2_classLit;
}
 
function ColumnConfig(){
}
 
_ = ColumnConfig.prototype = new BaseColumnConfig();
_.getClass$ = getClass_176;
_.typeId$ = 136;
function $clinit_256(){
$clinit_256 = nullMethod;
$clinit_128();
extendFunctionality();
}
 
function $ColumnModel(this$static, jsObj){
$clinit_256();
this$static.jsObj = jsObj;
return this$static;
}
 
function $ColumnModel_0(this$static, columnConfigs){
var column, config, configJS, i;
$clinit_256();
config = initDim(_3Lcom_google_gwt_core_client_JavaScriptObject_2_classLit, 234, -1, columnConfigs.length, 0);
for (i = 0; i < columnConfigs.length; ++i) {
column = columnConfigs[i];
setCheck(config, i, column.jsObj);
}
configJS = convertToJavaScriptArray_0(config);
this$static.jsObj = new $wnd.Ext.grid.ColumnModel(configJS);
return this$static;
}
 
function extendFunctionality(){
$wnd.Ext.override($wnd.Ext.grid.ColumnModel, {userCustomCellEditor:null, setUserCustomCellEditor:function(editor){
this.userCustomCellEditor = editor;
}
, isUserCustomCellEditable:function(colIndex, rowIndex){
if (this.userCustomCellEditor == null)
return false;
return this.userCustomCellEditor.isUserCustomCellEditable(colIndex, rowIndex);
}
, getCellEditor:function(colIndex, rowIndex){
if (this.userCustomCellEditor == null)
return this.config[colIndex].editor;
var custEd = this.userCustomCellEditor.getUserCustomCellEditor(colIndex, rowIndex);
if (custEd == null)
return this.config[colIndex].editor;
return custEd;
}
});
}
 
function getClass_178(){
return Lcom_gwtext_client_widgets_grid_ColumnModel_2_classLit;
}
 
function ColumnModel(){
}
 
_ = ColumnModel.prototype = new JsObject();
_.getClass$ = getClass_178;
_.typeId$ = 137;
function getClass_177(){
return Lcom_gwtext_client_widgets_grid_ColumnModel$1_2_classLit;
}
 
function ColumnModel$1(){
}
 
_ = ColumnModel$1.prototype = new Object_0();
_.getClass$ = getClass_177;
_.typeId$ = 0;
function $clinit_259(){
var c;
$clinit_259 = nullMethod;
$clinit_193();
c = new $wnd.Ext.grid.GridPanel();
configPrototype_24 = c.initialConfig;
}
 
function $GridPanel_0(this$static, jsObj){
$clinit_259();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $addGridCellListener(this$static, listener){
var gridJ = this$static;
this$static.addListener_6('cellclick', function(self, rowIndex, colIndex, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onCellClick(gridJ, rowIndex, colIndex, e);
}
);
this$static.addListener_6('cellcontextmenu', function(self, rowIndex, colIndex, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onCellContextMenu(gridJ, rowIndex, colIndex, e);
}
);
this$static.addListener_6('celldblclick', function(self, rowIndex, colIndex, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onCellDblClick(gridJ, rowIndex, colIndex, e);
}
);
}
 
function $addGridRowListener(this$static, listener){
var gridJ = this$static;
this$static.addListener_6('rowclick', function(source, rowIndex, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onRowClick(gridJ, rowIndex, e);
}
);
this$static.addListener_6('rowdblclick', function(source, rowIndex, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onRowDblClick(gridJ, rowIndex, e);
}
);
this$static.addListener_6('rowcontextmenu', function(source, rowIndex, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onRowContextMenu(gridJ, rowIndex, e);
}
);
}
 
function $clearSortState(this$static, reload){
var grid = this$static.getOrCreateJsObj();
var view = grid.getView();
var sc = view.sortClasses;
var hds = view.mainHd.select('td').removeClass(sc);
var store = grid.store;
store.sortInfo = null;
store.lastOptions = null;
if (reload) {
store.reload({});
}
}
 
function $getSelectionModel(this$static){
var sm, smObj;
smObj = $getSelectionModelAsJavaScriptObject(this$static);
if (smObj) {
return $RowSelectionModel_0(new RowSelectionModel(), smObj);
}
else {
sm = $RowSelectionModel(new RowSelectionModel());
$setAttribute_0(this$static, 'sm', sm.jsObj, true, false);
return sm;
}
}
 
function $getSelectionModelAsJavaScriptObject(this$static){
var cmp_3, ret;
if (cmp_3 = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp_3 == null || cmp_3 === undefined?false:true) {
return $getJsObj_3(this$static).getSelectionModel();
}
else {
return ret = this$static.config_0['sm'] , ret === undefined?null:ret;
}
}
 
function $getStore(this$static){
var storeJS;
if (this$static.store_0) {
return this$static.store_0;
}
else {
storeJS = $getAttributeAsJavaScriptObject(this$static, 'store');
return !storeJS?null:$Store_0(new Store(), storeJS);
}
}
 
function $reconfigure(this$static, store, columnModel){
var grid = this$static.getOrCreateJsObj();
var storeJS = store.getJsObj();
var columnModelJS = columnModel.getJsObj();
grid.reconfigure(storeJS, columnModelJS);
}
 
function $setStore_1(this$static, store){
$setAttribute_0(this$static, 'store', $getJsObj_2(store), true, false);
this$static.store_0 = store;
}
 
function create_35(configJS){
return new $wnd.Ext.grid.GridPanel(configJS);
}
 
function getClass_181(){
return Lcom_gwtext_client_widgets_grid_GridPanel_2_classLit;
}
 
function getConfigPrototype_23(){
return configPrototype_24;
}
 
function getXType_34(){
return 'grid';
}
 
function initComponent_1(){
var component;
component = this.getOrCreateJsObj();
component.addEvents('post-render');
}
 
function setAutoHeight_0(autoHeight){
$setAttribute_2(this, 'autoHeight', autoHeight, true, false);
}
 
function GridPanel(){
}
 
_ = GridPanel.prototype = new Panel_0();
_.create_0 = create_35;
_.getClass$ = getClass_181;
_.getConfigPrototype = getConfigPrototype_23;
_.getXType_0 = getXType_34;
_.initComponent_0 = initComponent_1;
_.setAutoHeight = setAutoHeight_0;
_.typeId$ = 138;
_.store_0 = null;
var configPrototype_24 = null;
function $clinit_257(){
var c;
$clinit_257 = nullMethod;
$clinit_259();
c = new $wnd.Ext.grid.EditorGridPanel();
configPrototype_23 = c.initialConfig;
}
 
function $EditorGridPanel(this$static, jsObj){
$clinit_257();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_34(configJS){
return new $wnd.Ext.grid.EditorGridPanel(configJS);
}
 
function getClass_179(){
return Lcom_gwtext_client_widgets_grid_EditorGridPanel_2_classLit;
}
 
function getConfigPrototype_22(){
return configPrototype_23;
}
 
function getXType_33(){
return 'editorgrid';
}
 
function EditorGridPanel(){
}
 
_ = EditorGridPanel.prototype = new GridPanel();
_.create_0 = create_34;
_.getClass$ = getClass_179;
_.getConfigPrototype = getConfigPrototype_22;
_.getXType_0 = getXType_33;
_.typeId$ = 139;
var configPrototype_23 = null;
function $clinit_258(){
$clinit_258 = nullMethod;
$clinit_156();
}
 
function $GridDragData(this$static, jsObj){
$clinit_258();
this$static.jsObj = jsObj;
return this$static;
}
 
function $getGrid(this$static){
var gridJS, ret;
gridJS = (ret = this$static.jsObj['grid'] , ret === undefined?null:ret);
return $GridPanel_0(new GridPanel(), gridJS);
}
 
function $getSelections(this$static){
var recordsJS, ret;
recordsJS = (ret = this$static.jsObj['selections'] , ret === undefined?null:ret);
return convertFromNativeRecordsArray_0(recordsJS);
}
 
function convertFromNativeRecordsArray_0(nativeArray){
var i, record, records, recordsj;
recordsj = toArray(nativeArray);
records = initDim(_3Lcom_gwtext_client_data_Record_2_classLit, 249, 50, recordsj.length, 0);
for (i = 0; i < recordsj.length; ++i) {
record = recordsj[i];
records[i] = $Record(new Record(), record);
}
return records;
}
 
function getClass_180(){
return Lcom_gwtext_client_widgets_grid_GridDragData_2_classLit;
}
 
function GridDragData(){
}
 
_ = GridDragData.prototype = new DragData();
_.getClass$ = getClass_180;
_.typeId$ = 140;
function $clinit_260(){
$clinit_260 = nullMethod;
$clinit_128();
}
 
function $GridView_0(this$static, jsObj){
$clinit_260();
this$static.jsObj = jsObj;
this$static.configJS = new Object();
this$static.configJS = jsObj;
return this$static;
}
 
function $GridView(this$static){
$clinit_260();
this$static.configJS = new Object();
return this$static;
}
 
function $create_11(this$static, config){
var gridJ = this$static;
var gridV = new $wnd.Ext.grid.GridView(config);
gridV.getRowClass = function(record, index, rp, store){
var recordJ = ($clinit_148() , $Record(new Record(), record));
var rpJ = ($clinit_264() , $RowParams(new RowParams(), rp));
var storeJ = ($clinit_150() , $Store_0(new Store(), store));
return gridJ.getRowClass_0(recordJ, index, rpJ, storeJ);
}
;
return gridV;
}
 
function $findRowIndex(this$static, evtObj){
var index = -1;
var view = this$static.getJsObj();
var jsObj = evtObj.getJsObj();
try {
var t = $wnd.Ext.lib.Event.getTarget(jsObj);
index = view.grid.getView().findRowIndex(t);
if (index === false)
index = -1;
}
catch (e) {
}
return index;
}
 
function $getJsObj_4(this$static){
if (!this$static.jsObj) {
this$static.jsObj = $create_11(this$static, this$static.configJS);
}
return this$static.jsObj;
}
 
function getClass_182(){
return Lcom_gwtext_client_widgets_grid_GridView_2_classLit;
}
 
function getJsObj_5(){
return $getJsObj_4(this);
}
 
function getRowClass(record, index, rowParams, store){
return '';
}
 
function GridView(){
}
 
_ = GridView.prototype = new JsObject();
_.getClass$ = getClass_182;
_.getJsObj = getJsObj_5;
_.getRowClass_0 = getRowClass;
_.typeId$ = 141;
function $clinit_262(){
$clinit_262 = nullMethod;
$clinit_257();
$wnd.Ext.reg('propertygrid', $wnd.Ext.grid.PropertyGrid);
}
 
function $PropertyGridPanel(this$static){
$clinit_262();
$Component(this$static);
$addListener_3(this$static, 'render', $PropertyGridPanel$1(new PropertyGridPanel$1(), this$static));
return this$static;
}
 
function $PropertyGridPanel_0(this$static, jsObj){
$clinit_262();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $setSource(this$static, source){
var sourceJS_0, component, sourceJS, grid;
if (component = this$static.getJsObj() , component != null && component.rendered) {
sourceJS = getJsObj_0(source);
grid = this$static.getOrCreateJsObj();
grid.setSource(sourceJS);
}
else {
sourceJS_0 = getJsObj_0(source);
$setAttribute_0(this$static, 'source', sourceJS_0, true, false);
}
}
 
function create_36(configJS){
return new $wnd.Ext.grid.PropertyGrid(configJS);
}
 
function getClass_184(){
return Lcom_gwtext_client_widgets_grid_PropertyGridPanel_2_classLit;
}
 
function getXType_35(){
return 'propertygrid';
}
 
function PropertyGridPanel(){
}
 
_ = PropertyGridPanel.prototype = new EditorGridPanel();
_.create_0 = create_36;
_.getClass$ = getClass_184;
_.getXType_0 = getXType_35;
_.typeId$ = 142;
_.sorted = false;
function $PropertyGridPanel$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function $doClearSort(propGrid){
propGrid.store.sortInfo = null;
propGrid.setSource(propGrid.getSource());
}
 
function execute_17(){
if (!this.this$0.sorted) {
$clearSortState(this.this$0, false);
$doClearSort($getJsObj_3(this.this$0));
}
}
 
function getClass_183(){
return Lcom_gwtext_client_widgets_grid_PropertyGridPanel$1_2_classLit;
}
 
function PropertyGridPanel$1(){
}
 
_ = PropertyGridPanel$1.prototype = new Object_0();
_.execute = execute_17;
_.getClass$ = getClass_183;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_264(){
$clinit_264 = nullMethod;
$clinit_128();
}
 
function $RowParams(this$static, jsObj){
$clinit_264();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_185(){
return Lcom_gwtext_client_widgets_grid_RowParams_2_classLit;
}
 
function RowParams(){
}
 
_ = RowParams.prototype = new JsObject();
_.getClass$ = getClass_185;
_.typeId$ = 143;
function $clinit_265(){
$clinit_265 = nullMethod;
$clinit_251();
}
 
function $RowSelectionModel(this$static){
$clinit_265();
this$static.jsObj = new $wnd.Ext.grid.RowSelectionModel({singleSelect:false});
return this$static;
}
 
function $RowSelectionModel_0(this$static, jsObj){
$clinit_265();
this$static.jsObj = jsObj;
return this$static;
}
 
function $addListener_10(this$static, listener){
var sm = this$static.getJsObj();
var smJ = this$static;
sm.addListener('beforerowselect', function(source, rowIndex, keepExisting, record){
if (keepExisting === undefined) {
keepExisting = false;
}
var recordJ = ($clinit_148() , $Record(new Record(), record));
return listener.doBeforeRowSelect(smJ, rowIndex, keepExisting, recordJ);
}
);
sm.addListener('rowselect', function(source, rowIndex, record){
var recordJ = ($clinit_148() , $Record(new Record(), record));
listener.onRowSelect(smJ, rowIndex, recordJ);
}
);
sm.addListener('rowdeselect', function(source, rowIndex, record){
var recordJ = ($clinit_148() , $Record(new Record(), record));
listener.onRowDeselect(smJ, rowIndex, recordJ);
}
);
sm.addListener('selectionchange', function(source){
listener.onSelectionChange_0(smJ);
}
);
}
 
function $getCount_0(this$static){
var sm = this$static.getJsObj();
return sm.getCount();
}
 
function $selectRecords(this$static, records){
var sm = this$static.getJsObj();
var recordsJS = convertToJavaScriptArray_0(records);
sm.selectRecords(recordsJS);
}
 
function getClass_186(){
return Lcom_gwtext_client_widgets_grid_RowSelectionModel_2_classLit;
}
 
function RowSelectionModel(){
}
 
_ = RowSelectionModel.prototype = new AbstractSelectionModel();
_.getClass$ = getClass_186;
_.typeId$ = 144;
function getClass_187(){
return Lcom_gwtext_client_widgets_grid_event_GridCellListenerAdapter_2_classLit;
}
 
function onCellClick(grid, rowIndex, colindex, e){
}
 
function onCellContextMenu(grid, rowIndex, cellIndex, e){
}
 
function onCellDblClick(grid, rowIndex, colIndex, e){
}
 
function GridCellListenerAdapter(){
}
 
_ = GridCellListenerAdapter.prototype = new Object_0();
_.getClass$ = getClass_187;
_.onCellClick = onCellClick;
_.onCellContextMenu = onCellContextMenu;
_.onCellDblClick = onCellDblClick;
_.typeId$ = 0;
function doBeforeRowSelect(sm, rowIndex, keepExisting, record){
return true;
}
 
function getClass_188(){
return Lcom_gwtext_client_widgets_grid_event_RowSelectionListenerAdapter_2_classLit;
}
 
function onRowDeselect(sm, rowIndex, record){
}
 
function onRowSelect(sm, rowIndex, record){
}
 
function onSelectionChange_0(sm){
}
 
function RowSelectionListenerAdapter(){
}
 
_ = RowSelectionListenerAdapter.prototype = new Object_0();
_.doBeforeRowSelect = doBeforeRowSelect;
_.getClass$ = getClass_188;
_.onRowDeselect = onRowDeselect;
_.onRowSelect = onRowSelect;
_.onSelectionChange_0 = onSelectionChange_0;
_.typeId$ = 0;
function $getJsObj_5(this$static){
if (!this$static.jsObj) {
this$static.jsObj = this$static.create_0(this$static.configJS);
}
return this$static.jsObj;
}
 
function create_40(config){
return new $wnd.Ext.layout.ContainerLayout(config);
}
 
function getClass_194(){
return Lcom_gwtext_client_widgets_layout_ContainerLayout_2_classLit;
}
 
function getContainerAttributes_0(){
return null;
}
 
function ContainerLayout(){
}
 
_ = ContainerLayout.prototype = new Object_0();
_.create_0 = create_40;
_.getClass$ = getClass_194;
_.getContainerAttributes = getContainerAttributes_0;
_.typeId$ = 0;
_.jsObj = null;
function create_37(config){
return new $wnd.Ext.layout.AnchorLayout(config);
}
 
function getClass_189(){
return Lcom_gwtext_client_widgets_layout_AnchorLayout_2_classLit;
}
 
function getContainerAttributes(){
if (this.width != -1) {
return {anchorSize:{width:this.width, height:this.height}};
}
else {
return {};
}
}
 
function AnchorLayout(){
}
 
_ = AnchorLayout.prototype = new ContainerLayout();
_.create_0 = create_37;
_.getClass$ = getClass_189;
_.getContainerAttributes = getContainerAttributes;
_.typeId$ = 0;
_.height = -1;
_.width = -1;
function $BorderLayout(this$static){
this$static.configJS = new Object();
return this$static;
}
 
function create_38(config){
return new $wnd.Ext.layout.BorderLayout(config);
}
 
function getClass_191(){
return Lcom_gwtext_client_widgets_layout_BorderLayout_2_classLit;
}
 
function BorderLayout(){
}
 
_ = BorderLayout.prototype = new ContainerLayout();
_.create_0 = create_38;
_.getClass$ = getClass_191;
_.typeId$ = 0;
function $clinit_279(){
$clinit_279 = nullMethod;
$clinit_117();
}
 
function getClass_197(){
return Lcom_gwtext_client_widgets_layout_LayoutData_2_classLit;
}
 
function LayoutData(){
}
 
_ = LayoutData.prototype = new BaseConfig();
_.getClass$ = getClass_197;
_.typeId$ = 145;
function $clinit_272(){
$clinit_272 = nullMethod;
$clinit_279();
}
 
function $BorderLayoutData(this$static, region){
$clinit_272();
this$static.jsObj = new Object();
this$static.jsObj['region'] = region.position;
return this$static;
}
 
function getClass_190(){
return Lcom_gwtext_client_widgets_layout_BorderLayoutData_2_classLit;
}
 
function BorderLayoutData(){
}
 
_ = BorderLayoutData.prototype = new LayoutData();
_.getClass$ = getClass_190;
_.typeId$ = 146;
function $ColumnLayout(this$static){
this$static.configJS = new Object();
return this$static;
}
 
function create_39(config){
return new $wnd.Ext.layout.ColumnLayout(config);
}
 
function getClass_193(){
return Lcom_gwtext_client_widgets_layout_ColumnLayout_2_classLit;
}
 
function ColumnLayout(){
}
 
_ = ColumnLayout.prototype = new ContainerLayout();
_.create_0 = create_39;
_.getClass$ = getClass_193;
_.typeId$ = 0;
function $clinit_274(){
$clinit_274 = nullMethod;
$clinit_279();
}
 
function $ColumnLayoutData(this$static, columnWidth){
$clinit_274();
this$static.jsObj = new Object();
this$static.jsObj['columnWidth'] = columnWidth;
return this$static;
}
 
function getClass_192(){
return Lcom_gwtext_client_widgets_layout_ColumnLayoutData_2_classLit;
}
 
function ColumnLayoutData(){
}
 
_ = ColumnLayoutData.prototype = new LayoutData();
_.getClass$ = getClass_192;
_.typeId$ = 147;
function $FitLayout(this$static){
this$static.configJS = new Object();
return this$static;
}
 
function create_41(config){
return new $wnd.Ext.layout.FitLayout(config);
}
 
function getClass_195(){
return Lcom_gwtext_client_widgets_layout_FitLayout_2_classLit;
}
 
function FitLayout(){
}
 
_ = FitLayout.prototype = new ContainerLayout();
_.create_0 = create_41;
_.getClass$ = getClass_195;
_.typeId$ = 0;
function $FormLayout(this$static){
this$static.configJS = new Object();
return this$static;
}
 
function create_42(config){
return new $wnd.Ext.layout.FormLayout(config);
}
 
function getClass_196(){
return Lcom_gwtext_client_widgets_layout_FormLayout_2_classLit;
}
 
function FormLayout(){
}
 
_ = FormLayout.prototype = new AnchorLayout();
_.create_0 = create_42;
_.getClass$ = getClass_196;
_.typeId$ = 0;
function create_43(config){
return new $wnd.Ext.layout.TableLayout(config);
}
 
function getClass_198(){
return Lcom_gwtext_client_widgets_layout_TableLayout_2_classLit;
}
 
function TableLayout(){
}
 
_ = TableLayout.prototype = new ContainerLayout();
_.create_0 = create_43;
_.getClass$ = getClass_198;
_.typeId$ = 0;
function $VerticalLayout(this$static){
this$static.configJS = new Object();
this$static.configJS['columns'] = 1;
return this$static;
}
 
function getClass_199(){
return Lcom_gwtext_client_widgets_layout_VerticalLayout_2_classLit;
}
 
function VerticalLayout(){
}
 
_ = VerticalLayout.prototype = new TableLayout();
_.getClass$ = getClass_199;
_.typeId$ = 0;
function $clinit_282(){
$clinit_282 = nullMethod;
$clinit_183();
}
 
function $BaseItem(this$static, jsObj){
$clinit_282();
$Component_0(this$static, jsObj);
return this$static;
}
 
function create_44(config){
throw $IllegalArgumentException(new IllegalArgumentException(), 'must be overridden');
}
 
function getClass_200(){
return Lcom_gwtext_client_widgets_menu_BaseItem_2_classLit;
}
 
function getConfigPrototype_24(){
return null;
}
 
function BaseItem(){
}
 
_ = BaseItem.prototype = new Component();
_.create_0 = create_44;
_.getClass$ = getClass_200;
_.getConfigPrototype = getConfigPrototype_24;
_.typeId$ = 148;
function $clinit_283(){
var c;
$clinit_283 = nullMethod;
$clinit_282();
$wnd.Ext.reg('menu-item', $wnd.Ext.menu.Item);
c = new $wnd.Ext.menu.Item();
configPrototype_25 = c.initialConfig;
}
 
function $Item_0(this$static, text){
$clinit_283();
$Component(this$static);
if (text != null)
$setText_1(this$static, text);
return this$static;
}
 
function $Item(this$static, jsObj){
$clinit_283();
$Component_0(this$static, jsObj);
return this$static;
}
 
function $setText_1(this$static, text){
var component, item;
if (component = this$static.getJsObj() , component != null && component.rendered) {
item = this$static.getOrCreateJsObj();
item.setText(text);
}
else {
$setAttribute_1(this$static, 'text', text, true, false);
}
}
 
function create_45(config){
return new $wnd.Ext.menu.Item(config);
}
 
function getClass_201(){
return Lcom_gwtext_client_widgets_menu_Item_2_classLit;
}
 
function getConfigPrototype_25(){
return configPrototype_25;
}
 
function getXType_36(){
return 'menu-tem';
}
 
function Item(){
}
 
_ = Item.prototype = new BaseItem();
_.create_0 = create_45;
_.getClass$ = getClass_201;
_.getConfigPrototype = getConfigPrototype_25;
_.getXType_0 = getXType_36;
_.typeId$ = 149;
var configPrototype_25 = null;
function $Menu(this$static){
this$static.id_0 = $wnd.Ext.id();
this$static.config_0 = new Object();
this$static.config_0['id'] = this$static.id_0;
return this$static;
}
 
function $Menu_0(this$static, jsObj){
var ret;
this$static.id_0 = (ret = jsObj['id'] , ret === undefined?null:String(ret));
$setElement_1(this$static, $getElement_1(jsObj));
return this$static;
}
 
function $addItem_0(this$static, item){
var menu = this$static.getOrCreateJsObj();
var itemJS = item.getOrCreateJsObj();
menu.addItem(itemJS);
}
 
function $addListener_11(this$static, listener){
var menu = this$static.getOrCreateJsObj();
var menuJ = this$static;
menu.addListener('beforehide', function(source){
return listener.doBeforeHide_0(menuJ);
}
);
menu.addListener('beforeshow', function(source){
return listener.doBeforeShow_0(menuJ);
}
);
menu.addListener('click', function(source, menuItem, event_0){
var menuItemId = menuItem == null || menuItem === undefined?null:menuItem.id;
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
return listener.onClick_2(menuJ, menuItemId, e);
}
);
menu.addListener('hide', function(source){
return listener.onHide_0(menuJ);
}
);
menu.addListener('itemclick', function(item, event_0){
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
var itemJ = ($clinit_282() , $BaseItem(new BaseItem(), item));
return listener.onItemClick(itemJ, e);
}
);
menu.addListener('mouseout', function(source, event_0, menuItem){
var menuItemJ = null;
if (menuItem != null && !(menuItem === undefined)) {
menuItemJ = ($clinit_282() , $BaseItem(new BaseItem(), menuItem));
}
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
return listener.onMouseOut_0(menuJ, menuItemJ, e);
}
);
menu.addListener('mouseover', function(source, event_0, menuItem){
var menuItemJ = null;
if (menuItem != null && !(menuItem === undefined)) {
menuItemJ = ($clinit_282() , $BaseItem(new BaseItem(), menuItem));
}
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
return listener.onMouseOver_0(menuJ, menuItemJ, e);
}
);
menu.addListener('show', function(source){
return listener.onShow_0(menuJ);
}
);
}
 
function $getElement_1(jsObj){
var el = jsObj.getEl().dom;
if (el == null || el === undefined) {
return null;
}
else {
return el.dom || el;
}
}
 
function $getOrCreateJsObj_0(this$static){
if (this$static.jsObj) {
return this$static.jsObj;
}
else {
this$static.jsObj = new $wnd.Ext.menu.Menu(this$static.config_0);
return this$static.jsObj;
}
}
 
function $setElement_1(this$static, elem){
this$static.element = elem;
this$static.isElementSet = true;
}
 
function $showAt(this$static, xy){
$getOrCreateJsObj_0(this$static).showAt(convertToJavaScriptArray(xy), null);
}
 
function getClass_202(){
return Lcom_gwtext_client_widgets_menu_Menu_2_classLit;
}
 
function getElement_5(){
if (!this.isElementSet) {
if (!this.jsObj) {
this.jsObj = new $wnd.Ext.menu.Menu(this.config_0);
}
this.element = $getElement_1(this.jsObj);
this.isElementSet = true;
}
return this.element;
}
 
function getOrCreateJsObj_0(){
return $getOrCreateJsObj_0(this);
}
 
function Menu(){
}
 
_ = Menu.prototype = new Widget();
_.getClass$ = getClass_202;
_.getElement = getElement_5;
_.getOrCreateJsObj = getOrCreateJsObj_0;
_.typeId$ = 150;
_.config_0 = null;
_.id_0 = null;
_.isElementSet = false;
_.jsObj = null;
function doBeforeHide_0(menu){
}
 
function doBeforeShow_0(menu){
}
 
function getClass_203(){
return Lcom_gwtext_client_widgets_menu_event_MenuListenerAdapter_2_classLit;
}
 
function onClick_1(menu, menuItemId, e){
}
 
function onHide_0(menu){
}
 
function onItemClick(item, e){
}
 
function onMouseOut_0(menu, menuItem, e){
}
 
function onMouseOver_0(menu, menuItem, e){
}
 
function onShow_0(menu){
}
 
function MenuListenerAdapter(){
}
 
_ = MenuListenerAdapter.prototype = new Object_0();
_.doBeforeHide_0 = doBeforeHide_0;
_.doBeforeShow_0 = doBeforeShow_0;
_.getClass$ = getClass_203;
_.onClick_2 = onClick_1;
_.onHide_0 = onHide_0;
_.onItemClick = onItemClick;
_.onMouseOut_0 = onMouseOut_0;
_.onMouseOver_0 = onMouseOver_0;
_.onShow_0 = onShow_0;
_.typeId$ = 0;
function $clinit_288(){
$clinit_288 = nullMethod;
$clinit_156();
}
 
function $TreeDragData(this$static, jsObj){
$clinit_288();
this$static.jsObj = jsObj;
return this$static;
}
 
function getClass_204(){
return Lcom_gwtext_client_widgets_tree_TreeDragData_2_classLit;
}
 
function TreeDragData(){
}
 
_ = TreeDragData.prototype = new DragData();
_.getClass$ = getClass_204;
_.typeId$ = 151;
function $clinit_289(){
$clinit_289 = nullMethod;
$clinit_189();
}
 
function $TreeEditor(this$static, treePanel, field){
$clinit_289();
$Component(this$static);
$create_14(this$static, $getOrCreateJsObj(treePanel), $getOrCreateJsObj(field));
return this$static;
}
 
function $create_14(this$static, treePanel, field){
var te = new $wnd.Ext.tree.TreeEditor(treePanel, field);
var id = te.getId();
this$static.id_0 = id;
return te;
}
 
function $startEdit(this$static, node){
var editor = this$static.getOrCreateJsObj();
var nodeJS = node.getJsObj();
editor.triggerEdit(nodeJS);
}
 
function getClass_205(){
return Lcom_gwtext_client_widgets_tree_TreeEditor_2_classLit;
}
 
function setCls_1(cls){
$setAttribute_1(this, 'cls', cls, true, true);
}
 
function TreeEditor(){
}
 
_ = TreeEditor.prototype = new Editor();
_.getClass$ = getClass_205;
_.setCls = setCls_1;
_.typeId$ = 152;
function $clinit_291(){
$clinit_291 = nullMethod;
$clinit_144();
}
 
function $TreeNode(this$static){
$clinit_291();
this$static.configJS = new Object();
return this$static;
}
 
function $TreeNode_1(this$static, text){
$clinit_291();
this$static.configJS = new Object();
$setText_2(this$static, text);
return this$static;
}
 
function $TreeNode_0(this$static, jsObj){
$clinit_291();
this$static.jsObj = jsObj;
this$static.configJS = new Object();
return this$static;
}
 
function $expand(this$static){
var node;
if ($isRendered_0(this$static)) {
node = this$static.getJsObj();
node.expand();
}
else {
this$static.configJS['expanded'] = true;
}
}
 
function $getUI(this$static){
var node = this$static.getJsObj();
var ui = node.getUI();
return ui === undefined || ui == null?null:($clinit_290() , $TreeNodeUI(new TreeNodeUI(), ui));
}
 
function $isRendered_0(this$static){
var treeNodeUI, ui, el;
if (!this$static.jsObj)
return false;
treeNodeUI = $getUI(this$static);
if (!treeNodeUI) {
return false;
}
else {
return !!(ui = treeNodeUI.getJsObj() , el = ui.getEl() , el === undefined?null:el);
}
}
 
function $setText_2(this$static, text){
var node;
if (this$static.jsObj) {
node = this$static.getJsObj();
node.setText(text);
}
else {
this$static.configJS['text'] = text;
}
}
 
function create_46(config){
return new $wnd.Ext.tree.TreeNode(config);
}
 
function createNode_0(jsNode){
return $TreeNode_0(new TreeNode(), jsNode);
}
 
function getClass_207(){
return Lcom_gwtext_client_widgets_tree_TreeNode_2_classLit;
}
 
function TreeNode(){
}
 
_ = TreeNode.prototype = new Node_0();
_.create_0 = create_46;
_.createNode = createNode_0;
_.getClass$ = getClass_207;
_.typeId$ = 153;
function $clinit_290(){
$clinit_290 = nullMethod;
$clinit_128();
fix_1();
}
 
function $TreeNodeUI(this$static, jsObj){
$clinit_290();
this$static.jsObj = jsObj;
return this$static;
}
 
function $toggleCheck(this$static, value){
var ui = this$static.getJsObj();
ui.toggleCheck(value);
}
 
function fix_1(){
$wnd.Ext.override($wnd.Ext.tree.TreeNodeUI, {toggleCheck:function(value){
var cb = this.checkbox;
if (cb) {
var checkvalue = value === undefined?!cb.checked:value;
cb.checked = checkvalue;
this.node.attributes.checked = checkvalue;
}
}
});
}
 
function getClass_206(){
return Lcom_gwtext_client_widgets_tree_TreeNodeUI_2_classLit;
}
 
function TreeNodeUI(){
}
 
_ = TreeNodeUI.prototype = new JsObject();
_.getClass$ = getClass_206;
_.typeId$ = 154;
function $clinit_293(){
var c;
$clinit_293 = nullMethod;
$clinit_193();
c = new $wnd.Ext.tree.TreePanel();
configPrototype_26 = c.initialConfig;
}
 
function $TreePanel(this$static){
$clinit_293();
$Component(this$static);
return this$static;
}
 
function $addListener_12(this$static, listener){
this$static.addListener_3(listener);
var treePanelJ = this$static;
this$static.addListener_6('append', function(tree, parent, node, index){
var treeJ = ($clinit_152() , $Tree_0(new Tree(), tree));
var parentJ = ($clinit_291() , $TreeNode_0(new TreeNode(), parent));
var nodeJ = $TreeNode_0(new TreeNode(), node);
listener.onAppend(treeJ, parentJ, nodeJ, index);
}
);
this$static.addListener_6('beforeappend', function(tree, parent, node, index){
var treeJ = ($clinit_152() , $Tree_0(new Tree(), tree));
var parentJ = ($clinit_291() , $TreeNode_0(new TreeNode(), parent));
var nodeJ = $TreeNode_0(new TreeNode(), node);
return listener.doBeforeAppend(treeJ, parentJ, nodeJ);
}
);
this$static.addListener_6('beforeinsert', function(tree, parent, node, refNode){
var treeJ = ($clinit_152() , $Tree_0(new Tree(), tree));
var parentJ = ($clinit_291() , $TreeNode_0(new TreeNode(), parent));
var nodeJ = $TreeNode_0(new TreeNode(), node);
var refNodeJ = $TreeNode_0(new TreeNode(), refNode);
return listener.doBeforeInsert(treeJ, parentJ, nodeJ, refNodeJ);
}
);
this$static.addListener_6('insert', function(tree, parent, node, refNode){
var treeJ = ($clinit_152() , $Tree_0(new Tree(), tree));
var parentJ = ($clinit_291() , $TreeNode_0(new TreeNode(), parent));
var nodeJ = $TreeNode_0(new TreeNode(), node);
var refNodeJ = $TreeNode_0(new TreeNode(), refNode);
listener.onInsert(treeJ, parentJ, nodeJ, refNodeJ);
}
);
this$static.addListener_6('beforeremove', function(tree, parent, node){
var treeJ = ($clinit_152() , $Tree_0(new Tree(), tree));
var parentJ = ($clinit_291() , $TreeNode_0(new TreeNode(), parent));
var nodeJ = $TreeNode_0(new TreeNode(), node);
return listener.doBeforeRemove(treeJ, parentJ, nodeJ);
}
);
this$static.addListener_6('remove', function(tree, parent, node){
var treeJ = ($clinit_152() , $Tree_0(new Tree(), tree));
var parentJ = ($clinit_291() , $TreeNode_0(new TreeNode(), parent));
var nodeJ = $TreeNode_0(new TreeNode(), node);
listener.onRemove(treeJ, parentJ, nodeJ);
}
);
this$static.addListener_6('beforechildrenrendered', function(node, event_0){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
return listener.doBeforeChildrenRendered(nodeJ);
}
);
this$static.addListener_6('beforeclick', function(node, event_0){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
return listener.doBeforeClick_0(nodeJ, e);
}
);
this$static.addListener_6('beforecollapsenode', function(node, deep, anim){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
if (deep === undefined || deep == null)
deep = false;
if (anim === undefined || anim == null)
anim = false;
return listener.doBeforeCollapseNode(nodeJ, deep, anim);
}
);
this$static.addListener_6('beforeexpandnode', function(node, deep, anim){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
if (deep === undefined || deep == null)
deep = false;
if (anim === undefined || anim == null)
anim = false;
return listener.doBeforeExpandNode(nodeJ, deep, anim);
}
);
this$static.addListener_6('beforenodedrop', function(e){
var tree = e.tree;
var targetNode = e.target;
var data = e.data;
var point = e.point;
var source = e.source;
var rawEvent = e.rawEvent;
var dropNode = e.dropNode;
var targetNodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), targetNode));
var dragDataJ = data == null || data == undefined?null:instance_5(data);
var sourceJ = ($clinit_159() , $DragDrop(new DragDrop(), source));
var dropNodeJ = dropNode == null || dropNode === undefined?null:$TreeNode_0(new TreeNode(), dropNode);
var dropNodeCB = new TreePanel$3();
return listener.doBeforeNodeDrop(treePanelJ, targetNodeJ, dragDataJ, point, sourceJ, dropNodeJ, dropNodeCB);
}
);
this$static.addListener_6('beforeload', function(node){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
return listener.doBeforeLoad(nodeJ);
}
);
this$static.addListener_6('checkchange', function(node, checked){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
if (checked === undefined || checked == null)
checked = false;
listener.onCheckChange(nodeJ, checked);
}
);
this$static.addListener_6('click', function(node, event_0){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onClick_3(nodeJ, e);
}
);
this$static.addListener_6('collapsenode', function(node){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
listener.onCollapseNode(nodeJ);
}
);
this$static.addListener_6('contextmenu', function(node, event_0){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onContextMenu_0(nodeJ, e);
}
);
this$static.addListener_6('dblclick', function(node, event_0){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
var e = ($clinit_122() , $EventObject(new EventObject(), event_0));
listener.onDblClick_0(nodeJ, e);
}
);
this$static.addListener_6('disabledchange', function(node, disabled){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
if (disabled === undefined || disabled == null)
disabled = false;
listener.onDisabledChange(nodeJ, disabled);
}
);
this$static.addListener_6('dragdrop', function(treePanel, node, dd, e){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
var ddJ = ($clinit_155() , $DD(new DD(), dd));
listener.onDragDrop_2(treePanelJ, nodeJ, ddJ);
}
);
this$static.addListener_6('enddrag', function(treePanel, node, e){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
listener.onEndDrag(treePanelJ, nodeJ);
}
);
this$static.addListener_6('expandnode', function(node){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
listener.onExpandNode(nodeJ);
}
);
this$static.addListener_6('load', function(node){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
listener.onLoad_0(nodeJ);
}
);
this$static.addListener_6('nodedragover', function(e){
var tree = e.tree;
var targetNode = e.target;
var data = e.data;
var point = e.point;
var source = e.source;
var rawEvent = e.rawEvent;
var dropNode = e.dropNode;
var targetNodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), targetNode));
var dragDataJ = data == null || data == undefined?null:instance_5(data);
var sourceJ = ($clinit_159() , $DragDrop(new DragDrop(), source));
var dropNodeJ = dropNode == null || dropNode === undefined?null:$TreeNode_0(new TreeNode(), dropNode);
return listener.onNodeDragOver(treePanelJ, targetNodeJ, dragDataJ, point, sourceJ, dropNodeJ);
}
);
this$static.addListener_6('nodedrop', function(e){
var tree = e.tree;
var targetNode = e.target;
var data = e.data;
var point = e.point;
var source = e.source;
var rawEvent = e.rawEvent;
var dropNode = e.dropNode;
var targetNodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), targetNode));
var dragDataJ = data == null || data == undefined?null:instance_5(data);
var sourceJ = ($clinit_159() , $DragDrop(new DragDrop(), source));
var dropNodeJ = dropNode == null || dropNode === undefined?null:$TreeNode_0(new TreeNode(), dropNode);
listener.onNodeDrop(treePanelJ, targetNodeJ, dragDataJ, point, sourceJ, dropNodeJ);
}
);
this$static.addListener_6('beforemovenode', function(tree, node, oldParent, newParent, index){
var treeJ = ($clinit_152() , $Tree_0(new Tree(), tree));
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
var oldParentJ = $TreeNode_0(new TreeNode(), oldParent);
var newParentJ = $TreeNode_0(new TreeNode(), newParent);
return listener.doBeforeMoveNode(treeJ, nodeJ, oldParentJ, newParentJ, index);
}
);
this$static.addListener_6('movenode', function(tree, node, oldParent, newParent, index){
var treeJ = ($clinit_152() , $Tree_0(new Tree(), tree));
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
var oldParentJ = $TreeNode_0(new TreeNode(), oldParent);
var newParentJ = $TreeNode_0(new TreeNode(), newParent);
listener.onMoveNode(treeJ, nodeJ, oldParentJ, newParentJ, index);
}
);
this$static.addListener_6('startdrag', function(treePanel, node, e){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
listener.onStartDrag(treePanelJ, nodeJ);
}
);
this$static.addListener_6('textchange', function(node, newText, oldText){
var nodeJ = ($clinit_291() , $TreeNode_0(new TreeNode(), node));
if (newText === undefined)
newText = null;
if (oldText === undefined)
oldText = null;
listener.onTextChange(nodeJ, newText, oldText);
}
);
}
 
function $getNodeById_2(this$static, id){
var node;
node = $getNodeById_1($getOrCreateJsObj(this$static), id);
if (!node) {
return null;
}
else {
return $TreeNode_0(new TreeNode(), node);
}
}
 
function $getNodeById_1(tree, id){
var node = tree.getNodeById(id);
if (node === undefined) {
return null;
}
else {
return node;
}
}
 
function $getRootNode_1(this$static){
var rootJS, root;
rootJS = (root = $getOrCreateJsObj(this$static).getRootNode() , root === undefined?null:root);
return !rootJS?null:$TreeNode_0(new TreeNode(), rootJS);
}
 
function $setRootNode_0(this$static, node){
var component, tree, nodeJS;
if (component = this$static.getJsObj() , component != null && component.rendered) {
tree = this$static.getOrCreateJsObj();
nodeJS = node.getJsObj();
tree.setRootNode(nodeJS);
}
else {
$setAttribute_0(this$static, 'root', $getJsObj(node), true, false);
}
}
 
function create_47(config){
return new $wnd.Ext.tree.TreePanel(config);
}
 
function getClass_209(){
return Lcom_gwtext_client_widgets_tree_TreePanel_2_classLit;
}
 
function getConfigPrototype_26(){
return configPrototype_26;
}
 
function getXType_37(){
return 'treepanel';
}
 
function initComponent_2(){
var component;
$getAttributeAsJavaScriptObject(this, 'root');
component = this.getOrCreateJsObj();
component.addEvents('post-render');
}
 
function setLayout_2(layout){
throw $IllegalArgumentException(new IllegalArgumentException(), 'The layout of TreePanel should not be changed.');
}
 
function TreePanel(){
}
 
_ = TreePanel.prototype = new Panel_0();
_.create_0 = create_47;
_.getClass$ = getClass_209;
_.getConfigPrototype = getConfigPrototype_26;
_.getXType_0 = getXType_37;
_.initComponent_0 = initComponent_2;
_.setLayout = setLayout_2;
_.typeId$ = 155;
var configPrototype_26 = null;
function getClass_208(){
return Lcom_gwtext_client_widgets_tree_TreePanel$3_2_classLit;
}
 
function TreePanel$3(){
}
 
_ = TreePanel$3.prototype = new Object_0();
_.getClass$ = getClass_208;
_.typeId$ = 0;
function doBeforeAppend(tree, parent, node){
return true;
}
 
function doBeforeChildrenRendered(node){
return true;
}
 
function doBeforeClick_0(node, e){
return true;
}
 
function doBeforeCollapseNode(node, deep, anim){
return true;
}
 
function doBeforeExpandNode(node, deep, anim){
return true;
}
 
function doBeforeInsert(tree, parent, node, refNode){
return true;
}
 
function doBeforeLoad(node){
return true;
}
 
function doBeforeMoveNode(tree, node, oldParent, newParent, index){
return true;
}
 
function doBeforeNodeDrop(treePanel, target, dragData, point, source, dropNode, dropNodeCallback){
return true;
}
 
function doBeforeRemove_0(tree, parent, node){
return true;
}
 
function getClass_210(){
return Lcom_gwtext_client_widgets_tree_event_TreePanelListenerAdapter_2_classLit;
}
 
function onAppend(tree, parent, node, index){
}
 
function onCheckChange(node, checked){
}
 
function onClick_2(node, e){
}
 
function onCollapseNode(node){
}
 
function onContextMenu_0(node, e){
}
 
function onDblClick_0(node, e){
}
 
function onDisabledChange(node, disabled){
}
 
function onDragDrop_1(treePanel, node, dd){
}
 
function onEndDrag(treePanel, node){
}
 
function onExpandNode(node){
}
 
function onInsert(tree, parent, node, refNode){
}
 
function onLoad_2(node){
}
 
function onMoveNode(treePanel, node, oldParent, newParent, index){
}
 
function onNodeDragOver(treePanel, target, dragData, point, source, dropNode){
return true;
}
 
function onNodeDrop(treePanel, target, dragData, point, source, dropNode){
}
 
function onRemove_0(tree, parent, node){
}
 
function onStartDrag(treePanel, node){
}
 
function onTextChange(node, text, oldText){
}
 
function TreePanelListenerAdapter(){
}
 
_ = TreePanelListenerAdapter.prototype = new PanelListenerAdapter();
_.doBeforeAppend = doBeforeAppend;
_.doBeforeChildrenRendered = doBeforeChildrenRendered;
_.doBeforeClick_0 = doBeforeClick_0;
_.doBeforeCollapseNode = doBeforeCollapseNode;
_.doBeforeExpandNode = doBeforeExpandNode;
_.doBeforeInsert = doBeforeInsert;
_.doBeforeLoad = doBeforeLoad;
_.doBeforeMoveNode = doBeforeMoveNode;
_.doBeforeNodeDrop = doBeforeNodeDrop;
_.doBeforeRemove = doBeforeRemove_0;
_.getClass$ = getClass_210;
_.onAppend = onAppend;
_.onCheckChange = onCheckChange;
_.onClick_3 = onClick_2;
_.onCollapseNode = onCollapseNode;
_.onContextMenu_0 = onContextMenu_0;
_.onDblClick_0 = onDblClick_0;
_.onDisabledChange = onDisabledChange;
_.onDragDrop_2 = onDragDrop_1;
_.onEndDrag = onEndDrag;
_.onExpandNode = onExpandNode;
_.onInsert = onInsert;
_.onLoad_0 = onLoad_2;
_.onMoveNode = onMoveNode;
_.onNodeDragOver = onNodeDragOver;
_.onNodeDrop = onNodeDrop;
_.onRemove = onRemove_0;
_.onStartDrag = onStartDrag;
_.onTextChange = onTextChange;
_.typeId$ = 0;
function $clinit_298(){
var c;
$clinit_298 = nullMethod;
$clinit_209();
c = new $wnd.Ext.ux.UploadDialog.Dialog();
configPrototype_27 = c.initialConfig;
}
 
function $UploadDialog(this$static, title){
$clinit_298();
$Component(this$static);
$setTitle(this$static, title);
return this$static;
}
 
function $addListener_13(this$static, listener){
this$static.addListener_4(listener);
var uploadDialogJ = this$static;
this$static.addListener_6('filetest', function(source, filename){
return listener.onBeforeAdd(uploadDialogJ, filename);
}
);
this$static.addListener_6('fileadd', function(source, filename){
listener.onFileAdd(uploadDialogJ, filename);
}
);
this$static.addListener_6('fileremove', function(source, filename){
listener.onFileRemove(uploadDialogJ, filename);
}
);
this$static.addListener_6('resetqueue', function(source){
listener.onResetQueue(uploadDialogJ);
}
);
this$static.addListener_6('fileuploadstart', function(source, filename){
listener.onFileUploadStart(uploadDialogJ, filename);
}
);
this$static.addListener_6('uploadsuccess', function(source, filename, data){
listener.onUploadSuccess(uploadDialogJ, filename, data);
}
);
this$static.addListener_6('uploaderror', function(source, filename, data){
listener.onUploadError(uploadDialogJ, filename, data);
}
);
this$static.addListener_6('uploadfailed', function(source, filename){
listener.onUploadFailed(uploadDialogJ, filename);
}
);
this$static.addListener_6('uploadstart', function(source){
listener.onUploadStart(uploadDialogJ);
}
);
this$static.addListener_6('uploadstop', function(source){
listener.onUploadStop(uploadDialogJ);
}
);
this$static.addListener_6('uploadcomplete', function(source){
listener.onUploadComplete(uploadDialogJ);
}
);
}
 
function $setBaseParams(this$static, baseParams){
var paramObj, cmp, w, baseParamsJS;
if (cmp = $wnd.Ext.ComponentMgr.get(this$static.id_0) , cmp == null || cmp === undefined?false:true) {
w = this$static.getOrCreateJsObj();
baseParamsJS = getJsObj_0(baseParams);
w.base_params = baseParamsJS;
}
else {
if (baseParams != null && baseParams.length > 0) {
paramObj = getJsObj_0(baseParams);
configPrototype_27['base_params'] = paramObj;
}
}
}
 
function $setUrl_0(this$static, url){
var w = this$static.getOrCreateJsObj();
w.setUrl(url);
}
 
function create_48(config){
return new $wnd.Ext.ux.UploadDialog.Dialog(config);
}
 
function getClass_212(){
return Lcom_gwtextux_client_widgets_upload_UploadDialog_2_classLit;
}
 
function getConfigPrototype_27(){
return configPrototype_27;
}
 
function getXType_38(){
return 'uploaddialog';
}
 
function UploadDialog(){
}
 
_ = UploadDialog.prototype = new Window_0();
_.create_0 = create_48;
_.getClass$ = getClass_212;
_.getConfigPrototype = getConfigPrototype_27;
_.getXType_0 = getXType_38;
_.typeId$ = 156;
var configPrototype_27 = null;
function getClass_211(){
return Lcom_gwtextux_client_widgets_upload_UploadDialogListenerAdapter_2_classLit;
}
 
function onBeforeAdd(source, filename){
return true;
}
 
function onFileAdd(source, filename){
}
 
function onFileRemove(source, filename){
}
 
function onFileUploadStart(source, filename){
}
 
function onResetQueue(source){
}
 
function onUploadComplete(source){
}
 
function onUploadError(source, filename, data){
}
 
function onUploadFailed(source, filename){
}
 
function onUploadStart(source){
}
 
function onUploadStop(source){
}
 
function onUploadSuccess(source, filename, data){
}
 
function UploadDialogListenerAdapter(){
}
 
_ = UploadDialogListenerAdapter.prototype = new WindowListenerAdapter();
_.getClass$ = getClass_211;
_.onBeforeAdd = onBeforeAdd;
_.onFileAdd = onFileAdd;
_.onFileRemove = onFileRemove;
_.onFileUploadStart = onFileUploadStart;
_.onResetQueue = onResetQueue;
_.onUploadComplete = onUploadComplete;
_.onUploadError = onUploadError;
_.onUploadFailed = onUploadFailed;
_.onUploadStart = onUploadStart;
_.onUploadStop = onUploadStop;
_.onUploadSuccess = onUploadSuccess;
_.typeId$ = 0;
function $ArithmeticException(this$static, explanation){
this$static.detailMessage = explanation;
return this$static;
}
 
function getClass_213(){
return Ljava_lang_ArithmeticException_2_classLit;
}
 
function ArithmeticException(){
}
 
_ = ArithmeticException.prototype = new RuntimeException();
_.getClass$ = getClass_213;
_.typeId$ = 157;
function getClass_214(){
return Ljava_lang_ArrayStoreException_2_classLit;
}
 
function ArrayStoreException(){
}
 
_ = ArrayStoreException.prototype = new RuntimeException();
_.getClass$ = getClass_214;
_.typeId$ = 158;
function $clinit_302(){
$clinit_302 = nullMethod;
FALSE_0 = $Boolean(new Boolean_0(), false);
TRUE_0 = $Boolean(new Boolean_0(), true);
}
 
function $Boolean(this$static, value){
$clinit_302();
this$static.value = value;
return this$static;
}
 
function equals_8(o){
return o != null && canCast(o.typeId$, 42) && dynamicCast(o, 42).value == this.value;
}
 
function getClass_215(){
return Ljava_lang_Boolean_2_classLit;
}
 
function hashCode_9(){
return this.value?1231:1237;
}
 
function toString_14(){
return this.value?'true':'false';
}
 
function Boolean_0(){
}
 
_ = Boolean_0.prototype = new Object_0();
_.equals$ = equals_8;
_.getClass$ = getClass_215;
_.hashCode$ = hashCode_9;
_.toString$ = toString_14;
_.typeId$ = 161;
_.value = false;
var FALSE_0, TRUE_0;
function digit(c, radix){
if (radix < 2 || radix > 36) {
return -1;
}
if (c >= 48 && c < 48 + (radix < 10?radix:10)) {
return c - 48;
}
if (c >= 97 && c < radix + 97 - 10) {
return c - 97 + 10;
}
if (c >= 65 && c < radix + 65 - 10) {
return c - 65 + 10;
}
return -1;
}
 
function createForArray(packageName, className){
var clazz;
clazz = new Class();
clazz.typeName = packageName + className;
clazz.modifiers = 4;
return clazz;
}
 
function createForClass(packageName, className){
var clazz;
clazz = new Class();
clazz.typeName = packageName + className;
return clazz;
}
 
function createForEnum(packageName, className){
var clazz;
clazz = new Class();
clazz.typeName = packageName + className;
clazz.modifiers = 8;
return clazz;
}
 
function getClass_217(){
return Ljava_lang_Class_2_classLit;
}
 
function toString_15(){
return ((this.modifiers & 2) != 0?'interface ':(this.modifiers & 1) != 0?'':'class ') + this.typeName;
}
 
function Class(){
}
 
_ = Class.prototype = new Object_0();
_.getClass$ = getClass_217;
_.toString$ = toString_15;
_.typeId$ = 0;
_.modifiers = 0;
_.typeName = null;
function getClass_216(){
return Ljava_lang_ClassCastException_2_classLit;
}
 
function ClassCastException(){
}
 
_ = ClassCastException.prototype = new RuntimeException();
_.getClass$ = getClass_216;
_.typeId$ = 162;
function __parseAndValidateInt(s, radix, lowerBound, upperBound){
var i, length, startIndex, toReturn;
if (s == null) {
throw $NumberFormatException(new NumberFormatException(), 'null');
}
if (radix < 2 || radix > 36) {
throw $NumberFormatException(new NumberFormatException(), 'radix ' + radix + ' out of range');
}
length = s.length;
startIndex = length > 0 && s.charCodeAt(0) == 45?1:0;
for (i = startIndex; i < length; ++i) {
if (digit(s.charCodeAt(i), radix) == -1) {
throw $NumberFormatException(new NumberFormatException(), 'For input string: "' + s + '"');
}
}
toReturn = parseInt(s, radix);
if (isNaN(toReturn)) {
throw $NumberFormatException(new NumberFormatException(), 'For input string: "' + s + '"');
}
else if (toReturn < lowerBound || toReturn > upperBound) {
throw $NumberFormatException(new NumberFormatException(), 'For input string: "' + s + '"');
}
return toReturn;
}
 
function getClass_229(){
return Ljava_lang_Number_2_classLit;
}
 
function Number_0(){
}
 
_ = Number_0.prototype = new Object_0();
_.getClass$ = getClass_229;
_.typeId$ = 163;
function $Double(this$static, value){
this$static.value = value;
return this$static;
}
 
function equals_9(o){
return o != null && canCast(o.typeId$, 41) && dynamicCast(o, 41).value == this.value;
}
 
function getClass_218(){
return Ljava_lang_Double_2_classLit;
}
 
function hashCode_10(){
return ~~Math.max(Math.min(this.value, 2147483647), -2147483648);
}
 
function toString_16(){
return '' + this.value;
}
 
function Double(){
}
 
_ = Double.prototype = new Number_0();
_.equals$ = equals_9;
_.getClass$ = getClass_218;
_.hashCode$ = hashCode_10;
_.toString$ = toString_16;
_.typeId$ = 164;
_.value = 0;
function $Float(this$static, value){
this$static.value = value;
return this$static;
}
 
function equals_11(o){
return o != null && canCast(o.typeId$, 40) && dynamicCast(o, 40).value == this.value;
}
 
function getClass_221(){
return Ljava_lang_Float_2_classLit;
}
 
function hashCode_12(){
return ~~Math.max(Math.min(this.value, 2147483647), -2147483648);
}
 
function toString_18(){
return '' + this.value;
}
 
function Float(){
}
 
_ = Float.prototype = new Number_0();
_.equals$ = equals_11;
_.getClass$ = getClass_221;
_.hashCode$ = hashCode_12;
_.toString$ = toString_18;
_.typeId$ = 165;
_.value = 0;
function $IllegalArgumentException(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function getClass_222(){
return Ljava_lang_IllegalArgumentException_2_classLit;
}
 
function IllegalArgumentException(){
}
 
_ = IllegalArgumentException.prototype = new RuntimeException();
_.getClass$ = getClass_222;
_.typeId$ = 166;
function $IllegalStateException(this$static, s){
this$static.detailMessage = s;
return this$static;
}
 
function getClass_223(){
return Ljava_lang_IllegalStateException_2_classLit;
}
 
function IllegalStateException(){
}
 
_ = IllegalStateException.prototype = new RuntimeException();
_.getClass$ = getClass_223;
_.typeId$ = 167;
function $IndexOutOfBoundsException(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function getClass_224(){
return Ljava_lang_IndexOutOfBoundsException_2_classLit;
}
 
function IndexOutOfBoundsException(){
}
 
_ = IndexOutOfBoundsException.prototype = new RuntimeException();
_.getClass$ = getClass_224;
_.typeId$ = 168;
function $Integer(this$static, value){
this$static.value = value;
return this$static;
}
 
function equals_12(o){
return o != null && canCast(o.typeId$, 39) && dynamicCast(o, 39).value == this.value;
}
 
function getClass_225(){
return Ljava_lang_Integer_2_classLit;
}
 
function hashCode_13(){
return this.value;
}
 
function toPowerOfTwoString(value, shift){
var bitMask, buf, bufSize, digits, pos;
bufSize = ~~(32 / shift);
bitMask = (1 << shift) - 1;
buf = initDim(_3C_classLit, 0, -1, bufSize, 1);
digits = ($clinit_321() , digits_0);
pos = bufSize - 1;
if (value >= 0) {
while (value > bitMask) {
buf[pos--] = digits[value & bitMask];
value >>= shift;
}
}
else {
while (pos > 0) {
buf[pos--] = digits[value & bitMask];
value >>= shift;
}
}
buf[pos] = digits[value & bitMask];
return __valueOf(buf, pos, bufSize);
}
 
function toString_19(){
return '' + this.value;
}
 
function Integer(){
}
 
_ = Integer.prototype = new Number_0();
_.equals$ = equals_12;
_.getClass$ = getClass_225;
_.hashCode$ = hashCode_13;
_.toString$ = toString_19;
_.typeId$ = 169;
_.value = 0;
function $Long(this$static, value){
this$static.value = value;
return this$static;
}
 
function equals_13(o){
return o != null && canCast(o.typeId$, 57) && eq(dynamicCast(o, 57).value, this.value);
}
 
function getClass_226(){
return Ljava_lang_Long_2_classLit;
}
 
function hashCode_14(){
return lowBits_0(this.value);
}
 
function toString_20(){
return '' + toString_9(this.value);
}
 
function Long(){
}
 
_ = Long.prototype = new Number_0();
_.equals$ = equals_13;
_.getClass$ = getClass_226;
_.hashCode$ = hashCode_14;
_.toString$ = toString_20;
_.typeId$ = 170;
_.value = P0_longLit;
function abs(x_0){
return x_0 < 0?-x_0:x_0;
}
 
function $NullPointerException(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function getClass_227(){
return Ljava_lang_NullPointerException_2_classLit;
}
 
function NullPointerException(){
}
 
_ = NullPointerException.prototype = new RuntimeException();
_.getClass$ = getClass_227;
_.typeId$ = 171;
function $clinit_321(){
$clinit_321 = nullMethod;
digits_0 = initValues(_3C_classLit, 0, -1, [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122]);
}
 
var digits_0;
function $NumberFormatException(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function getClass_228(){
return Ljava_lang_NumberFormatException_2_classLit;
}
 
function NumberFormatException(){
}
 
_ = NumberFormatException.prototype = new IllegalArgumentException();
_.getClass$ = getClass_228;
_.typeId$ = 172;
function $equals_1(this$static, other){
if (!(other != null && canCast(other.typeId$, 1))) {
return false;
}
return String(this$static) == other;
}
 
function $equalsIgnoreCase(this$static, other){
if (other == null)
return false;
return this$static == other || this$static.toLowerCase() == other.toLowerCase();
}
 
function $replaceAll(this$static, regex, replace){
replace = __translateReplaceString(replace);
return this$static.replace(RegExp(regex, 'g'), replace);
}
 
function $split(this$static, regex, maxMatch){
var compiled = new RegExp(regex, 'g');
var out = [];
var count = 0;
var trail = this$static;
var lastTrail = null;
while (true) {
var matchObj = compiled.exec(trail);
if (matchObj == null || (trail == '' || count == maxMatch - 1 && maxMatch > 0)) {
out[count] = trail;
break;
}
else {
out[count] = trail.substring(0, matchObj.index);
trail = trail.substring(matchObj.index + matchObj[0].length, trail.length);
compiled.lastIndex = 0;
if (lastTrail == trail) {
out[count] = trail.substring(0, 1);
trail = trail.substring(1);
}
lastTrail = trail;
count++;
}
}
if (maxMatch == 0) {
var lastNonEmpty = out.length;
while (lastNonEmpty > 0 && out[lastNonEmpty - 1] == '') {
--lastNonEmpty;
}
if (lastNonEmpty < out.length) {
out.splice(lastNonEmpty, out.length - lastNonEmpty);
}
}
var jr = initDim(_3Ljava_lang_String_2_classLit, 261, 1, out.length, 0);
var i = 0;
for (i = 0; i < out.length; ++i) {
jr[i] = out[i];
}
return jr;
}
 
function $substring(this$static, beginIndex){
return this$static.substr(beginIndex, this$static.length - beginIndex);
}
 
function $trim(this$static){
if (this$static.length == 0 || this$static[0] > ' ' && this$static[this$static.length - 1] > ' ') {
return this$static;
}
var r1 = this$static.replace(/^(\s*)/, '');
var r2 = r1.replace(/\s*$/, '');
return r2;
}
 
function __translateReplaceString(replaceStr){
var pos;
pos = 0;
while (0 <= (pos = replaceStr.indexOf('\\', pos))) {
if (replaceStr.charCodeAt(pos + 1) == 36) {
replaceStr = replaceStr.substr(0, pos - 0) + '$' + $substring(replaceStr, ++pos);
}
else {
replaceStr = replaceStr.substr(0, pos - 0) + $substring(replaceStr, ++pos);
}
}
return replaceStr;
}
 
function __valueOf(x_0, start, end){
x_0 = x_0.slice(start, end);
return String.fromCharCode.apply(null, x_0);
}
 
function equals_15(other){
return $equals_1(this, other);
}
 
function getClass_234(){
return Ljava_lang_String_2_classLit;
}
 
function hashCode_16(){
return getHashCode_0(this);
}
 
function toString_24(){
return this;
}
 
_ = String.prototype;
_.equals$ = equals_15;
_.getClass$ = getClass_234;
_.hashCode$ = hashCode_16;
_.toString$ = toString_24;
_.typeId$ = 2;
function $clinit_326(){
$clinit_326 = nullMethod;
back = {};
front = {};
}
 
function compute(str){
var hashCode, i, inc, n_0;
n_0 = str.length;
inc = n_0 < 64?1:~~(n_0 / 32);
hashCode = 0;
for (i = 0; i < n_0; i += inc) {
hashCode <<= 1;
hashCode += str.charCodeAt(i);
}
hashCode |= 0;
return hashCode;
}
 
function getHashCode_0(str){
$clinit_326();
var key = ':' + str;
var result_0 = front[key];
if (result_0 != null) {
return result_0;
}
result_0 = back[key];
if (result_0 == null) {
result_0 = compute(str);
}
increment();
return front[key] = result_0;
}
 
function increment(){
if (count_0 == 256) {
back = front;
front = {};
count_0 = 0;
}
++count_0;
}
 
var back, count_0 = 0, front;
function $StringBuffer(this$static){
this$static.builder = $StringBuilder(new StringBuilder());
return this$static;
}
 
function $append(this$static, x_0){
$append_1(this$static.builder, '' + x_0);
return this$static;
}
 
function $append_0(this$static, toAppend){
$append_1(this$static.builder, toAppend);
return this$static;
}
 
function getClass_232(){
return Ljava_lang_StringBuffer_2_classLit;
}
 
function toString_22(){
return $toString_2(this.builder);
}
 
function StringBuffer(){
}
 
_ = StringBuffer.prototype = new Object_0();
_.getClass$ = getClass_232;
_.toString$ = toString_22;
_.typeId$ = 173;
function $StringBuilder(this$static){
this$static.stringArray = initDim(_3Ljava_lang_String_2_classLit, 261, 1, 0, 0);
return this$static;
}
 
function $append_1(this$static, toAppend){
var appendLength;
if (toAppend == null) {
toAppend = 'null';
}
appendLength = toAppend.length;
if (appendLength > 0) {
this$static.stringArray[this$static.arrayLen++] = toAppend;
this$static.stringLength += appendLength;
if (this$static.arrayLen > 1024) {
$toString_2(this$static);
this$static.stringArray.length = 1024;
}
}
return this$static;
}
 
function $toString_2(this$static){
var s;
if (this$static.arrayLen != 1) {
this$static.stringArray.length = this$static.arrayLen;
s = this$static.stringArray.join('');
this$static.stringArray = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [s]);
this$static.arrayLen = 1;
}
return this$static.stringArray[0];
}
 
function getClass_233(){
return Ljava_lang_StringBuilder_2_classLit;
}
 
function toString_23(){
return $toString_2(this);
}
 
function StringBuilder(){
}
 
_ = StringBuilder.prototype = new Object_0();
_.getClass$ = getClass_233;
_.toString$ = toString_23;
_.typeId$ = 174;
_.arrayLen = 0;
_.stringLength = 0;
function $UnsupportedOperationException(this$static, message){
this$static.detailMessage = message;
return this$static;
}
 
function getClass_236(){
return Ljava_lang_UnsupportedOperationException_2_classLit;
}
 
function UnsupportedOperationException(){
}
 
_ = UnsupportedOperationException.prototype = new RuntimeException();
_.getClass$ = getClass_236;
_.typeId$ = 175;
function $implFindEntry(this$static, key, remove){
var entry, iter, k;
for (iter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), this$static.entrySet().this$0); $hasNext_0(iter.iter);) {
entry = iter.last = dynamicCast($next_1(iter.iter), 58);
k = entry.getKey_0();
if (key == null?k == null:equals__devirtual$(key, k)) {
if (remove) {
$remove_6(iter);
}
return entry;
}
}
return null;
}
 
function $keySet_1(this$static){
var entrySet;
entrySet = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), this$static);
return $AbstractMap$1(new AbstractMap$1(), this$static, entrySet);
}
 
function containsKey_0(key){
return !!$implFindEntry(this, key, false);
}
 
function equals_18(obj){
var entry, entry$iterator, otherKey, otherMap, otherValue;
if ((obj == null?null:obj) === (this == null?null:this)) {
return true;
}
if (!(obj != null && canCast(obj.typeId$, 59))) {
return false;
}
otherMap = dynamicCast(obj, 59);
if (this.size_0() != otherMap.size_0()) {
return false;
}
for (entry$iterator = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), otherMap.entrySet().this$0); $hasNext_0(entry$iterator.iter);) {
entry = entry$iterator.last = dynamicCast($next_1(entry$iterator.iter), 58);
otherKey = entry.getKey_0();
otherValue = entry.getValue_0();
if (!this.containsKey(otherKey)) {
return false;
}
if (!equalsWithNullCheck(otherValue, this.get_1(otherKey))) {
return false;
}
}
return true;
}
 
function get_3(key){
var entry;
entry = $implFindEntry(this, key, false);
return !entry?null:entry.getValue_0();
}
 
function getClass_248(){
return Ljava_util_AbstractMap_2_classLit;
}
 
function hashCode_19(){
var entry, entry$iterator, hashCode;
hashCode = 0;
for (entry$iterator = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), this.entrySet().this$0); $hasNext_0(entry$iterator.iter);) {
entry = entry$iterator.last = dynamicCast($next_1(entry$iterator.iter), 58);
hashCode += entry.hashCode$();
hashCode = ~~hashCode;
}
return hashCode;
}
 
function size_3(){
return this.entrySet().this$0.size;
}
 
function toString_28(){
var comma, entry, iter, s;
s = '{';
comma = false;
for (iter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), this.entrySet().this$0); $hasNext_0(iter.iter);) {
entry = iter.last = dynamicCast($next_1(iter.iter), 58);
if (comma) {
s += ', ';
}
else {
comma = true;
}
s += '' + entry.getKey_0();
s += '=';
s += '' + entry.getValue_0();
}
return s + '}';
}
 
function AbstractMap(){
}
 
_ = AbstractMap.prototype = new Object_0();
_.containsKey = containsKey_0;
_.equals$ = equals_18;
_.get_1 = get_3;
_.getClass$ = getClass_248;
_.hashCode$ = hashCode_19;
_.size_0 = size_3;
_.toString$ = toString_28;
_.typeId$ = 176;
function $AbstractHashMap(this$static, ignored, alsoIgnored){
$clearImpl(this$static);
if (ignored < 0 || alsoIgnored < 0) {
throw $IllegalArgumentException(new IllegalArgumentException(), 'initial capacity was negative or load factor was non-positive');
}
return this$static;
}
 
function $addAllHashEntries(this$static, dest){
var hashCodeMap = this$static.hashCodeMap;
for (var hashCode in hashCodeMap) {
if (hashCode == parseInt(hashCode)) {
var array = hashCodeMap[hashCode];
for (var i = 0, c = array.length; i < c; ++i) {
dest.add_2(array[i]);
}
}
}
}
 
function $addAllStringEntries(this$static, dest){
var stringMap = this$static.stringMap;
for (var key in stringMap) {
if (key.charCodeAt(0) == 58) {
var entry = new_$_1(this$static, key.substring(1));
dest.add_2(entry);
}
}
}
 
function $clearImpl(this$static){
this$static.hashCodeMap = [];
this$static.stringMap = {};
this$static.nullSlotLive = false;
this$static.nullSlot = null;
this$static.size = 0;
}
 
function $containsKey(this$static, key){
return key == null?this$static.nullSlotLive:key != null && canCast(key.typeId$, 1)?$hasStringValue(this$static, dynamicCast(key, 1)):$hasHashValue(this$static, key, this$static.getHashCode(key));
}
 
function $get_2(this$static, key){
return key == null?this$static.nullSlot:key != null && canCast(key.typeId$, 1)?this$static.stringMap[':' + dynamicCast(key, 1)]:$getHashValue(this$static, key, this$static.getHashCode(key));
}
 
function $getHashValue(this$static, key, hashCode){
var array = this$static.hashCodeMap[hashCode];
if (array) {
for (var i = 0, c = array.length; i < c; ++i) {
var entry = array[i];
var entryKey = entry.getKey_0();
if (this$static.equalsBridge(key, entryKey)) {
return entry.getValue_0();
}
}
}
return null;
}
 
function $hasHashValue(this$static, key, hashCode){
var array = this$static.hashCodeMap[hashCode];
if (array) {
for (var i = 0, c = array.length; i < c; ++i) {
var entry = array[i];
var entryKey = entry.getKey_0();
if (this$static.equalsBridge(key, entryKey)) {
return true;
}
}
}
return false;
}
 
function $hasStringValue(this$static, key){
return ':' + key in this$static.stringMap;
}
 
function $put(this$static, key, value){
return key == null?$putNullSlot(this$static, value):key != null && canCast(key.typeId$, 1)?$putStringValue(this$static, dynamicCast(key, 1), value):$putHashValue(this$static, key, value, ~~hashCode__devirtual$(key));
}
 
function $putHashValue(this$static, key, value, hashCode){
var array = this$static.hashCodeMap[hashCode];
if (array) {
for (var i = 0, c = array.length; i < c; ++i) {
var entry = array[i];
var entryKey = entry.getKey_0();
if (this$static.equalsBridge(key, entryKey)) {
var previous = entry.getValue_0();
entry.setValue_0(value);
return previous;
}
}
}
else {
array = this$static.hashCodeMap[hashCode] = [];
}
var entry = $MapEntryImpl(new MapEntryImpl(), key, value);
array.push(entry);
++this$static.size;
return null;
}
 
function $putNullSlot(this$static, value){
var result_0;
result_0 = this$static.nullSlot;
this$static.nullSlot = value;
if (!this$static.nullSlotLive) {
this$static.nullSlotLive = true;
++this$static.size;
}
return result_0;
}
 
function $putStringValue(this$static, key, value){
var result_0, stringMap = this$static.stringMap;
key = ':' + key;
if (key in stringMap) {
result_0 = stringMap[key];
}
else {
++this$static.size;
}
stringMap[key] = value;
return result_0;
}
 
function $remove_7(this$static, key){
return key == null?$removeNullSlot(this$static):key != null && canCast(key.typeId$, 1)?$removeStringValue(this$static, dynamicCast(key, 1)):$removeHashValue(this$static, key, this$static.getHashCode(key));
}
 
function $removeHashValue(this$static, key, hashCode){
var array = this$static.hashCodeMap[hashCode];
if (array) {
for (var i = 0, c = array.length; i < c; ++i) {
var entry = array[i];
var entryKey = entry.getKey_0();
if (this$static.equalsBridge(key, entryKey)) {
if (array.length == 1) {
delete this$static.hashCodeMap[hashCode];
}
else {
array.splice(i, 1);
}
--this$static.size;
return entry.getValue_0();
}
}
}
return null;
}
 
function $removeNullSlot(this$static){
var result_0;
result_0 = this$static.nullSlot;
this$static.nullSlot = null;
if (this$static.nullSlotLive) {
this$static.nullSlotLive = false;
--this$static.size;
}
return result_0;
}
 
function $removeStringValue(this$static, key){
var result_0, stringMap = this$static.stringMap;
key = ':' + key;
if (key in stringMap) {
result_0 = stringMap[key];
--this$static.size;
delete stringMap[key];
}
return result_0;
}
 
function containsKey(key){
return key == null?this.nullSlotLive:key != null && canCast(key.typeId$, 1)?':' + dynamicCast(key, 1) in this.stringMap:$hasHashValue(this, key, this.getHashCode(key));
}
 
function entrySet_1(){
return $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), this);
}
 
function equalsBridge(value1, value2){
return this.equals(value1, value2);
}
 
function get_2(key){
return key == null?this.nullSlot:key != null && canCast(key.typeId$, 1)?this.stringMap[':' + dynamicCast(key, 1)]:$getHashValue(this, key, this.getHashCode(key));
}
 
function getClass_242(){
return Ljava_util_AbstractHashMap_2_classLit;
}
 
function size_1(){
return this.size;
}
 
function AbstractHashMap(){
}
 
_ = AbstractHashMap.prototype = new AbstractMap();
_.containsKey = containsKey;
_.entrySet = entrySet_1;
_.equalsBridge = equalsBridge;
_.get_1 = get_2;
_.getClass$ = getClass_242;
_.size_0 = size_1;
_.typeId$ = 177;
_.hashCodeMap = null;
_.nullSlot = null;
_.nullSlotLive = false;
_.size = 0;
_.stringMap = null;
function equals_19(o){
var iter, other, otherItem;
if ((o == null?null:o) === (this == null?null:this)) {
return true;
}
if (!(o != null && canCast(o.typeId$, 60))) {
return false;
}
other = dynamicCast(o, 60);
if (other.size_0() != this.size_0()) {
return false;
}
for (iter = other.iterator_0(); iter.hasNext();) {
otherItem = iter.next_0();
if (!this.contains(otherItem)) {
return false;
}
}
return true;
}
 
function getClass_249(){
return Ljava_util_AbstractSet_2_classLit;
}
 
function hashCode_20(){
var hashCode, iter, next;
hashCode = 0;
for (iter = this.iterator_0(); iter.hasNext();) {
next = iter.next_0();
if (next != null) {
hashCode += hashCode__devirtual$(next);
hashCode = ~~hashCode;
}
}
return hashCode;
}
 
function AbstractSet(){
}
 
_ = AbstractSet.prototype = new AbstractCollection();
_.equals$ = equals_19;
_.getClass$ = getClass_249;
_.hashCode$ = hashCode_20;
_.typeId$ = 178;
function $AbstractHashMap$EntrySet(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function $contains(this$static, o){
var entry, key, value;
if (o != null && canCast(o.typeId$, 58)) {
entry = dynamicCast(o, 58);
key = entry.getKey_0();
if ($containsKey(this$static.this$0, key)) {
value = $get_2(this$static.this$0, key);
return this$static.this$0.equals(entry.getValue_0(), value);
}
}
return false;
}
 
function contains_0(o){
return $contains(this, o);
}
 
function getClass_239(){
return Ljava_util_AbstractHashMap$EntrySet_2_classLit;
}
 
function iterator_4(){
return $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), this.this$0);
}
 
function size_0(){
return this.this$0.size;
}
 
function AbstractHashMap$EntrySet(){
}
 
_ = AbstractHashMap$EntrySet.prototype = new AbstractSet();
_.contains = contains_0;
_.getClass$ = getClass_239;
_.iterator_0 = iterator_4;
_.size_0 = size_0;
_.typeId$ = 179;
_.this$0 = null;
function $AbstractHashMap$EntrySetIterator(this$static, this$0){
var list;
this$static.this$0 = this$0;
list = $ArrayList(new ArrayList());
if (this$static.this$0.nullSlotLive) {
$add_8(list, $AbstractHashMap$MapEntryNull(new AbstractHashMap$MapEntryNull(), this$static.this$0));
}
$addAllStringEntries(this$static.this$0, list);
$addAllHashEntries(this$static.this$0, list);
this$static.iter = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), list);
return this$static;
}
 
function $next_0(this$static){
return this$static.last = dynamicCast($next_1(this$static.iter), 58);
}
 
function $remove_6(this$static){
if (!this$static.last) {
throw $IllegalStateException(new IllegalStateException(), 'Must call next() before remove().');
}
else {
$remove_8(this$static.iter);
$remove_7(this$static.this$0, this$static.last.getKey_0());
this$static.last = null;
}
}
 
function getClass_238(){
return Ljava_util_AbstractHashMap$EntrySetIterator_2_classLit;
}
 
function hasNext_2(){
return $hasNext_0(this.iter);
}
 
function next_3(){
return this.last = dynamicCast($next_1(this.iter), 58);
}
 
function AbstractHashMap$EntrySetIterator(){
}
 
_ = AbstractHashMap$EntrySetIterator.prototype = new Object_0();
_.getClass$ = getClass_238;
_.hasNext = hasNext_2;
_.next_0 = next_3;
_.typeId$ = 0;
_.iter = null;
_.last = null;
_.this$0 = null;
function equals_17(other){
var entry;
if (other != null && canCast(other.typeId$, 58)) {
entry = dynamicCast(other, 58);
if (equalsWithNullCheck(this.getKey_0(), entry.getKey_0()) && equalsWithNullCheck(this.getValue_0(), entry.getValue_0())) {
return true;
}
}
return false;
}
 
function getClass_247(){
return Ljava_util_AbstractMapEntry_2_classLit;
}
 
function hashCode_18(){
var keyHash, valueHash;
keyHash = 0;
valueHash = 0;
if (this.getKey_0() != null) {
keyHash = hashCode__devirtual$(this.getKey_0());
}
if (this.getValue_0() != null) {
valueHash = hashCode__devirtual$(this.getValue_0());
}
return keyHash ^ valueHash;
}
 
function toString_27(){
return this.getKey_0() + '=' + this.getValue_0();
}
 
function AbstractMapEntry(){
}
 
_ = AbstractMapEntry.prototype = new Object_0();
_.equals$ = equals_17;
_.getClass$ = getClass_247;
_.hashCode$ = hashCode_18;
_.toString$ = toString_27;
_.typeId$ = 180;
function $AbstractHashMap$MapEntryNull(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_240(){
return Ljava_util_AbstractHashMap$MapEntryNull_2_classLit;
}
 
function getKey(){
return null;
}
 
function getValue(){
return this.this$0.nullSlot;
}
 
function setValue_2(object){
return $putNullSlot(this.this$0, object);
}
 
function AbstractHashMap$MapEntryNull(){
}
 
_ = AbstractHashMap$MapEntryNull.prototype = new AbstractMapEntry();
_.getClass$ = getClass_240;
_.getKey_0 = getKey;
_.getValue_0 = getValue;
_.setValue_0 = setValue_2;
_.typeId$ = 181;
_.this$0 = null;
function $AbstractHashMap$MapEntryString(this$static, key, this$0){
this$static.this$0 = this$0;
this$static.key = key;
return this$static;
}
 
function getClass_241(){
return Ljava_util_AbstractHashMap$MapEntryString_2_classLit;
}
 
function getKey_0(){
return this.key;
}
 
function getValue_0(){
return this.this$0.stringMap[':' + this.key];
}
 
function new_$_1(this$outer, key){
return $AbstractHashMap$MapEntryString(new AbstractHashMap$MapEntryString(), key, this$outer);
}
 
function setValue_3(object){
return $putStringValue(this.this$0, this.key, object);
}
 
function AbstractHashMap$MapEntryString(){
}
 
_ = AbstractHashMap$MapEntryString.prototype = new AbstractMapEntry();
_.getClass$ = getClass_241;
_.getKey_0 = getKey_0;
_.getValue_0 = getValue_0;
_.setValue_0 = setValue_3;
_.typeId$ = 182;
_.key = null;
_.this$0 = null;
function $AbstractList$IteratorImpl(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function $hasNext_0(this$static){
return this$static.i < this$static.this$0.size_0();
}
 
function $next_1(this$static){
if (this$static.i >= this$static.this$0.size_0()) {
throw new NoSuchElementException();
}
return this$static.this$0.get_0(this$static.last = this$static.i++);
}
 
function $remove_8(this$static){
if (this$static.last < 0) {
throw new IllegalStateException();
}
this$static.this$0.remove_0(this$static.last);
this$static.i = this$static.last;
this$static.last = -1;
}
 
function getClass_243(){
return Ljava_util_AbstractList$IteratorImpl_2_classLit;
}
 
function hasNext_3(){
return this.i < this.this$0.size_0();
}
 
function next_4(){
return $next_1(this);
}
 
function AbstractList$IteratorImpl(){
}
 
_ = AbstractList$IteratorImpl.prototype = new Object_0();
_.getClass$ = getClass_243;
_.hasNext = hasNext_3;
_.next_0 = next_4;
_.typeId$ = 0;
_.i = 0;
_.last = -1;
_.this$0 = null;
function $AbstractMap$1(this$static, this$0, val$entrySet){
this$static.this$0 = this$0;
this$static.val$entrySet = val$entrySet;
return this$static;
}
 
function contains_1(key){
return $containsKey(this.this$0, key);
}
 
function getClass_246(){
return Ljava_util_AbstractMap$1_2_classLit;
}
 
function iterator_6(){
var outerIter;
return outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), this.val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter);
}
 
function size_2(){
return this.val$entrySet.this$0.size;
}
 
function AbstractMap$1(){
}
 
_ = AbstractMap$1.prototype = new AbstractSet();
_.contains = contains_1;
_.getClass$ = getClass_246;
_.iterator_0 = iterator_6;
_.size_0 = size_2;
_.typeId$ = 183;
_.this$0 = null;
_.val$entrySet = null;
function $AbstractMap$1$1(this$static, val$outerIter){
this$static.val$outerIter = val$outerIter;
return this$static;
}
 
function getClass_245(){
return Ljava_util_AbstractMap$1$1_2_classLit;
}
 
function hasNext_4(){
return $hasNext_0(this.val$outerIter.iter);
}
 
function next_5(){
var entry;
return entry = $next_0(this.val$outerIter) , entry.getKey_0();
}
 
function AbstractMap$1$1(){
}
 
_ = AbstractMap$1$1.prototype = new Object_0();
_.getClass$ = getClass_245;
_.hasNext = hasNext_4;
_.next_0 = next_5;
_.typeId$ = 0;
_.val$outerIter = null;
function $clinit_347(){
$clinit_347 = nullMethod;
DAYS = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']);
MONTHS = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']);
}
 
function $Date(this$static, date){
$clinit_347();
this$static.jsdate = new Date(date[1] + date[0]);
return this$static;
}
 
function equals_20(obj){
return obj != null && canCast(obj.typeId$, 43) && eq(fromDouble(this.jsdate.getTime()), fromDouble(dynamicCast(obj, 43).jsdate.getTime()));
}
 
function getClass_251(){
return Ljava_util_Date_2_classLit;
}
 
function hashCode_21(){
return lowBits_0(xor(fromDouble(this.jsdate.getTime()), shru(fromDouble(this.jsdate.getTime()), 32)));
}
 
function padTwo_0(number){
if (number < 10) {
return '0' + number;
}
else {
return '' + number;
}
}
 
function toString_29(){
var d = this.jsdate;
var padTwo = padTwo_0;
var day = DAYS[this.jsdate.getDay()];
var month = MONTHS[this.jsdate.getMonth()];
var offset = -d.getTimezoneOffset();
var hourOffset = String(offset >= 0?'+' + Math.floor(offset / 60):Math.ceil(offset / 60));
var minuteOffset = padTwo(Math.abs(offset) % 60);
return day + ' ' + month + ' ' + padTwo(d.getDate()) + ' ' + padTwo(d.getHours()) + ':' + padTwo(d.getMinutes()) + ':' + padTwo(d.getSeconds()) + ' GMT' + hourOffset + minuteOffset + ' ' + d.getFullYear();
}
 
function Date_0(){
}
 
_ = Date_0.prototype = new Object_0();
_.equals$ = equals_20;
_.getClass$ = getClass_251;
_.hashCode$ = hashCode_21;
_.toString$ = toString_29;
_.typeId$ = 184;
var DAYS, MONTHS;
function $HashMap(this$static){
$clearImpl(this$static);
return this$static;
}
 
function $HashMap_0(this$static, ignored){
$AbstractHashMap(this$static, ignored, 0);
return this$static;
}
 
function equals_21(value1, value2){
return (value1 == null?null:value1) === (value2 == null?null:value2) || value1 != null && equals__devirtual$(value1, value2);
}
 
function getClass_252(){
return Ljava_util_HashMap_2_classLit;
}
 
function getHashCode_1(key){
return ~~hashCode__devirtual$(key);
}
 
function HashMap(){
}
 
_ = HashMap.prototype = new AbstractHashMap();
_.equals = equals_21;
_.getClass$ = getClass_252;
_.getHashCode = getHashCode_1;
_.typeId$ = 185;
function $HashSet(this$static){
this$static.map = $HashMap(new HashMap());
return this$static;
}
 
function $add_9(this$static, o){
var old;
old = $put(this$static.map, o, this$static);
return old == null;
}
 
function add_10(o){
var old;
return old = $put(this.map, o, this) , old == null;
}
 
function contains_3(o){
return $containsKey(this.map, o);
}
 
function getClass_253(){
return Ljava_util_HashSet_2_classLit;
}
 
function iterator_7(){
var outerIter;
return outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), $keySet_1(this.map).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter);
}
 
function size_5(){
return this.map.size;
}
 
function toString_30(){
return $toString_4($keySet_1(this.map));
}
 
function HashSet(){
}
 
_ = HashSet.prototype = new AbstractSet();
_.add_2 = add_10;
_.contains = contains_3;
_.getClass$ = getClass_253;
_.iterator_0 = iterator_7;
_.size_0 = size_5;
_.toString$ = toString_30;
_.typeId$ = 186;
_.map = null;
function $MapEntryImpl(this$static, key, value){
this$static.key = key;
this$static.value = value;
return this$static;
}
 
function getClass_254(){
return Ljava_util_MapEntryImpl_2_classLit;
}
 
function getKey_1(){
return this.key;
}
 
function getValue_1(){
return this.value;
}
 
function setValue_4(value){
var old;
old = this.value;
this.value = value;
return old;
}
 
function MapEntryImpl(){
}
 
_ = MapEntryImpl.prototype = new AbstractMapEntry();
_.getClass$ = getClass_254;
_.getKey_0 = getKey_1;
_.getValue_0 = getValue_1;
_.setValue_0 = setValue_4;
_.typeId$ = 187;
_.key = null;
_.value = null;
function $MissingResourceException(this$static, s){
this$static.detailMessage = s;
return this$static;
}
 
function getClass_255(){
return Ljava_util_MissingResourceException_2_classLit;
}
 
function MissingResourceException(){
}
 
_ = MissingResourceException.prototype = new RuntimeException();
_.getClass$ = getClass_255;
_.typeId$ = 188;
function getClass_256(){
return Ljava_util_NoSuchElementException_2_classLit;
}
 
function NoSuchElementException(){
}
 
_ = NoSuchElementException.prototype = new RuntimeException();
_.getClass$ = getClass_256;
_.typeId$ = 189;
function equalsWithNullCheck(a, b){
return (a == null?null:a) === (b == null?null:b) || a != null && equals__devirtual$(a, b);
}
 
function $Vector(this$static, initialCapacity){
this$static.arrayList = $ArrayList_0(new ArrayList(), initialCapacity);
return this$static;
}
 
function add_12(o){
return $add_8(this.arrayList, o);
}
 
function add_11(index, o){
$add_7(this.arrayList, index, o);
}
 
function contains_4(elem){
return $indexOf_5(this.arrayList, elem, 0) != -1;
}
 
function get_5(index){
return $get_3(this.arrayList, index);
}
 
function getClass_257(){
return Ljava_util_Vector_2_classLit;
}
 
function iterator_8(){
return $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this.arrayList);
}
 
function remove_6(index){
return $remove_9(this.arrayList, index);
}
 
function size_6(){
return this.arrayList.size;
}
 
function toString_31(){
return $toString_4(this.arrayList);
}
 
function Vector(){
}
 
_ = Vector.prototype = new AbstractList();
_.add_2 = add_12;
_.add_0 = add_11;
_.contains = contains_4;
_.get_0 = get_5;
_.getClass$ = getClass_257;
_.iterator_0 = iterator_8;
_.remove_0 = remove_6;
_.size_0 = size_6;
_.toString$ = toString_31;
_.typeId$ = 190;
_.arrayList = null;
function $CarnetEnLigneMediateur(this$static){
this$static.panneauPrincipalCarnetEnLigne = $Panel_1(new Panel_0(), 'Carnet en ligne');
this$static.panneauPrincipalCarnetEnLigne.setLayout($VerticalLayout(new VerticalLayout()));
this$static.carnetEnLigneModele = Instance_0();
this$static.etatConnexionVue = $EtatConnexionVue(new EtatConnexionVue(), this$static);
this$static.ongletsObservationsImages = $TabPanel(new TabPanel());
$add_5(this$static.panneauPrincipalCarnetEnLigne, this$static.etatConnexionVue);
$add_5(this$static.panneauPrincipalCarnetEnLigne, this$static.ongletsObservationsImages);
this$static.observationMediateur = Instance_3(this$static);
this$static.imageMediateur = Instance_1();
$setSize_1(this$static.imageMediateur.panneauPrincipalImage, '100%', '50%');
$setSize_1(this$static.observationMediateur.panneauPrincipalObservation, '100%', '50%');
$add_5(this$static.ongletsObservationsImages, this$static.imageMediateur.panneauPrincipalImage);
$add_5(this$static.ongletsObservationsImages, this$static.observationMediateur.panneauPrincipalObservation);
return this$static;
}
 
function $afficheEtatConnexion(this$static){
if (this$static.utilisateur.identifie) {
$setEtat(this$static.etatConnexionVue, this$static.utilisateur.identifiant + ' (deconnexion)', true);
}
else {
$setEtat(this$static.etatConnexionVue, 'Utilisez ce carnet en ligne pour saisir vos observations, <u>identifiez-vous<\/u> pour les transmettre \xE0 Tela Botanica', false);
}
}
 
function $afficherDialogueConnexion(this$static){
var left, top;
if (!this$static.formulaireDeConnexionVue) {
this$static.formulaireDeConnexionVue = $FormulaireDeConnexionVue(new FormulaireDeConnexionVue(), this$static);
}
left = ~~((($clinit_63() , documentRoot).clientWidth - 512) / 2);
top = ~~((documentRoot.clientHeight - 256) / 2);
$setPopupPosition(this$static.formulaireDeConnexionVue, left, top);
$show(this$static.formulaireDeConnexionVue);
}
 
function $connecterUtilisateur(this$static, login, password){
this$static.tentativeConnection = true;
$connecterUtilisateur_0(this$static.carnetEnLigneModele, this$static, login, password);
}
 
function $deconnecterUtilisateur(this$static){
$deconnecterUtilisateur_0(this$static.carnetEnLigneModele, this$static, this$static.utilisateur.identifiant);
}
 
function $rafraichir(this$static, nouvelleDonnees){
if (nouvelleDonnees) {
this$static.utilisateur = nouvelleDonnees;
$afficheEtatConnexion(this$static);
if (this$static.tentativeConnection && !this$static.utilisateur.identifie) {
}
else {
if (this$static.tentativeConnection && this$static.utilisateur.identifie) {
$hide(this$static.formulaireDeConnexionVue);
}
}
$obtenirNombreObservation_0(this$static.observationMediateur);
}
}
 
function Instance(){
if (estInstancie_0) {
return null;
}
else {
estInstancie_0 = true;
return $CarnetEnLigneMediateur(new CarnetEnLigneMediateur());
}
}
 
function getClass_258(){
return Lorg_tela_1botanica_client_CarnetEnLigneMediateur_2_classLit;
}
 
function CarnetEnLigneMediateur(){
}
 
_ = CarnetEnLigneMediateur.prototype = new Object_0();
_.getClass$ = getClass_258;
_.typeId$ = 0;
_.carnetEnLigneModele = null;
_.etatConnexionVue = null;
_.formulaireDeConnexionVue = null;
_.imageMediateur = null;
_.observationMediateur = null;
_.ongletsObservationsImages = null;
_.tentativeConnection = false;
_.utilisateur = null;
var estInstancie_0 = false;
function $CarnetEnLigneModele(this$static){
this$static.config_0 = $Configuration(new Configuration());
return this$static;
}
 
function $connecterUtilisateur_0(this$static, r, login, password){
$connecteUtilisateur($UtilisateurAsynchroneDAO(new UtilisateurAsynchroneDAO(), this$static), r, login, password);
}
 
function $deconnecterUtilisateur_0(this$static, r, user){
$deconnecterUtilisateur_1($UtilisateurAsynchroneDAO(new UtilisateurAsynchroneDAO(), this$static), r, user);
}
 
function $getEtatUtilisateur(this$static, r){
$clinit_54();
$asyncGetImpl(httpRequest_0, $UtilisateurAsynchroneDAO(new UtilisateurAsynchroneDAO(), this$static).carnetEnLigneModele.config_0.serviceBaseUrl + '/User/', $UtilisateurAsynchroneDAO$1(new UtilisateurAsynchroneDAO$1(), r));
}
 
function Instance_0(){
if (estInstancie_1) {
return null;
}
else {
estInstancie_1 = true;
return $CarnetEnLigneModele(new CarnetEnLigneModele());
}
}
 
function getClass_259(){
return Lorg_tela_1botanica_client_CarnetEnLigneModele_2_classLit;
}
 
function CarnetEnLigneModele(){
}
 
_ = CarnetEnLigneModele.prototype = new Object_0();
_.getClass$ = getClass_259;
_.typeId$ = 0;
_.config_0 = null;
var estInstancie_1 = false;
function toCelString(str){
return str.substr(1, str.length - 1 - 1);
}
 
function $ImageMediateur(this$static){
var panneauListeImage, regionCentre, regionEst, regionNord, regionOuest, i, w;
this$static.panneauPrincipalImage = $Panel_1(new Panel_0(), 'Images');
this$static.detailsEtMotsCles = $Panel_1(new Panel_0(), 'D\xE9tails et mots cl\xE9s');
regionNord = $BorderLayoutData(new BorderLayoutData(), ($clinit_134() , NORTH));
regionCentre = $BorderLayoutData(new BorderLayoutData(), CENTER_0);
regionEst = $BorderLayoutData(new BorderLayoutData(), EAST);
regionEst.jsObj['split'] = true;
regionOuest = $BorderLayoutData(new BorderLayoutData(), WEST);
regionOuest.jsObj['split'] = true;
i = $IdVue(new IdVue(), this$static);
w = i.getOrCreateJsObj();
w.show();
this$static.iModele = Instance_2(this$static);
$initialiserArbreMotsCles(this$static.iModele);
this$static.panneauPrincipalImage.setLayout($BorderLayout(new BorderLayout()));
$setId_0(this$static.panneauPrincipalImage, 'x-main-panel-image');
this$static.filtres = $PanneauFiltresVues(new PanneauFiltresVues(), this$static);
this$static.panneauMenuEtOngletsImage = $Panel(new Panel_0());
this$static.panneauMenuEtOngletsImage.setLayout($BorderLayout(new BorderLayout()));
this$static.ongletsImage = $TabPanel(new TabPanel());
this$static.galerieImage = $GalerieImageVue(new GalerieImageVue(), this$static);
panneauListeImage = $Panel_1(new Panel_0(), 'Liste');
this$static.listeImage = $ListeImageVue_0(new ListeImageVue(), this$static);
panneauListeImage.setLayout($FitLayout(new FitLayout()));
$add_5(panneauListeImage, this$static.listeImage);
this$static.zoomImage = $ZoomImageVue(new ZoomImageVue(), this$static);
$add_5(this$static.ongletsImage, this$static.galerieImage);
$add_5(this$static.ongletsImage, panneauListeImage);
$add_5(this$static.ongletsImage, this$static.zoomImage);
this$static.menuImageVue = $MenuImageVue(new MenuImageVue(), this$static);
this$static.barreOutilsVue = $BarreOutilsVue(new BarreOutilsVue(), this$static);
$setAttribute_2(this$static.detailsEtMotsCles, 'animCollapse', true, true, true);
$setAttribute_2(this$static.detailsEtMotsCles, 'titleCollapse', true, true, false);
$setAttribute_2(this$static.detailsEtMotsCles, 'collapsible', true, true, false);
$ArbreMotsClesFiltreVue(new ArbreMotsClesFiltreVue(), this$static);
$BarreRechercheFiltreVue(new BarreRechercheFiltreVue(), this$static);
this$static.metadonneesIptcExif = $PanneauMetadonneesVue(new PanneauMetadonneesVue(), this$static);
$add_5(this$static.detailsEtMotsCles, this$static.metadonneesIptcExif);
$add_6(this$static.panneauMenuEtOngletsImage, this$static.barreOutilsVue, regionNord);
$add_6(this$static.panneauMenuEtOngletsImage, this$static.ongletsImage, regionCentre);
$add_6(this$static.panneauPrincipalImage, this$static.panneauMenuEtOngletsImage, regionCentre);
$add_6(this$static.panneauPrincipalImage, this$static.detailsEtMotsCles, regionEst);
$add_6(this$static.panneauPrincipalImage, this$static.filtres, regionOuest);
$setWidth_1(this$static.filtres, '15%');
$setWidth_1(this$static.detailsEtMotsCles, '15%');
return this$static;
}
 
function $ajouterImagesSelection(this$static){
var i, id, ids;
ids = $getVueSelectionnee(this$static).getIdSelectionnees();
id = '';
for (i = 0; i < ids.length; ++i) {
id += ' - ' + ids[i];
}
$ajouterImagesSelection_0(this$static.iModele, ids);
$wnd.alert(ids.length + ' image(s) ajout\xE9es au tampon ');
}
 
function $ajouterMotCleDansArbre(this$static, n_0, arbreMC){
$ajouterMotCleDansArbre_0(this$static.iModele, n_0, arbreMC);
$rafraichir_2(this$static.filtres.motsClesFiltres, n_0);
}
 
function $aucuneSelection(this$static){
var sm, dv;
if ((sm = $getSelectionModel(this$static.listeImage).getJsObj() , sm.getCount()) <= 0 && (dv = this$static.galerieImage.dView.getOrCreateJsObj() , dv.getSelectionCount()) <= 0) {
$disable(this$static.zoomImage);
$setDisabled(this$static.metadonneesIptcExif, true);
$desactiverPanneau(this$static.zoomImage);
this$static.selection = false;
}
}
 
function $changerNumeroPage(this$static, pageCourante){
$masquerChargement(this$static);
$changerNumeroPage_0(this$static.iModele, pageCourante);
this$static.galerieImage.pt.pageCourante = pageCourante;
this$static.listeImage.bt.pageCourante = pageCourante;
}
 
function $changerPageMaxEtCourante(this$static, pageMax, pageEncours, taillePage, nbElement){
var pages;
pages = initValues(_3I_classLit, 256, -1, [pageMax, pageEncours, taillePage, nbElement]);
$rafraichir_12(this$static.galerieImage.pt, pages);
$rafraichir_12(this$static.listeImage.bt, pages);
}
 
function $changerTaillePage(this$static, nouvelleTaillePage){
$masquerChargement(this$static);
$changerTaillePage_0(this$static.iModele, nouvelleTaillePage);
$setValue_0(this$static.galerieImage.pt.selecteurTaillePage, '' + nouvelleTaillePage);
$setValue_0(this$static.listeImage.bt.selecteurTaillePage, '' + nouvelleTaillePage);
}
 
function $changerUtilisateur(this$static){
$initialiserArbreMotsCles(this$static.iModele);
$masquerChargement(this$static);
$obtenirNombrePhotoGalerie(this$static.iModele);
}
 
function $clicBoutonZoomImage(this$static, arg){
var dv, imgNum, imgUrl, imgXY, infosImage, nRec, selected_0, st, storeIndex, store, store_0, sm, selected, store_1, store_2, component, component_0;
nRec = null;
if ($getVueSelectionnee(this$static) == this$static.galerieImage) {
dv = this$static.galerieImage.dView;
st = this$static.galerieImage.st;
if ((store = st.getJsObj() , store.getCount()) <= 0) {
return;
}
selected_0 = $indexOf_0(st, $getSelectedRecords(dv)[0]);
storeIndex = $indexOf_1(dv, selected_0);
}
else {
st = this$static.listeImage.st;
if ((store_0 = st.getJsObj() , store_0.getCount()) <= 0) {
return;
}
selected_0 = $indexOf_0(st, (sm = $getSelectionModel(this$static.listeImage).getJsObj() , selected = sm.getSelected() , selected == null?null:($clinit_148() , $Record(new Record(), selected))));
storeIndex = selected_0;
}
if ($equals_1(arg, 'prev')) {
if (selected_0 == 0) {
storeIndex = (store_1 = st.getJsObj() , store_1.getCount()) - 1;
nRec = $getAt(st, storeIndex);
}
else {
storeIndex = storeIndex - 1;
nRec = $getAt(st, storeIndex);
}
}
if ($equals_1(arg, 'suiv')) {
if (selected_0 == (store_2 = st.getJsObj() , store_2.getCount()) - 1) {
storeIndex = 0;
nRec = $getAt(st, 0);
}
else {
storeIndex = storeIndex + 1;
nRec = $getAt(st, storeIndex);
}
}
if (nRec) {
imgUrl = $getAsString(nRec, 'url_image');
imgNum = $getAsString(nRec, 'num_image');
imgXY = $getTailleImage(dynamicCast($get_2(this$static.iModele.cacheImage, $getAsString(nRec, 'num_image')), 63));
infosImage = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [imgUrl, imgXY[0], imgXY[1], imgNum]);
$rafraichir_11(this$static.zoomImage, infosImage);
if (component = this$static.galerieImage.getJsObj() , component != null && component.rendered) {
$select(this$static.galerieImage.dView, storeIndex);
}
if (component_0 = this$static.listeImage.getJsObj() , component_0 != null && component_0.rendered) {
$selectRecords($getSelectionModel(this$static.listeImage), initValues(_3Lcom_gwtext_client_data_Record_2_classLit, 249, 50, [nRec]));
}
$obtenirDonnes(this$static, imgNum);
}
}
 
function $clicGalerieImage(this$static, node, e){
var imgNum, imgUrl, imgXY, infosImage, rd;
rd = $getRecord(this$static.galerieImage.dView, node);
imgUrl = $getAsString(rd, 'url_image');
imgNum = $getAsString(rd, 'num_image');
imgXY = $getTailleImage(dynamicCast($get_2(this$static.iModele.cacheImage, $getAsString(rd, 'num_image')), 63));
infosImage = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [imgUrl, imgXY[0], imgXY[1], imgNum]);
$rafraichir_11(this$static.zoomImage, infosImage);
this$static.dernierIndexOnglet = 0;
if ($eventGetTypeInt($getBrowserEvent(e)) == 2) {
$setActiveTab(this$static.ongletsImage, 2);
}
$obtenirDonnes(this$static, imgNum);
}
 
function $clicListeImage(this$static){
var imgNum, imgUrl, imgXY, infosImage, rd, sm, selected;
rd = (sm = $getSelectionModel(this$static.listeImage).getJsObj() , selected = sm.getSelected() , selected == null?null:($clinit_148() , $Record(new Record(), selected)));
imgUrl = $getAsString(rd, 'url_image');
imgNum = $getAsString(rd, 'num_image');
imgXY = $getTailleImage(dynamicCast($get_2(this$static.iModele.cacheImage, $getAsString(rd, 'num_image')), 63));
infosImage = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [imgUrl, imgXY[0], imgXY[1], imgNum]);
$rafraichir_11(this$static.zoomImage, infosImage);
this$static.dernierIndexOnglet = 1;
$obtenirDonnes(this$static, imgNum);
}
 
function $demasquerChargement(this$static){
var masked, elem, el;
masked = get_1($getIdVueSelectionnee(this$static));
if (!!masked && (elem = masked.getJsObj() , elem.isMasked())) {
el = masked.getJsObj();
el.unmask();
}
}
 
function $deplacerMotCleDansArbre(this$static, n_0, arbreMC){
$deplacerMotCleDansArbre_0(this$static.iModele, n_0, arbreMC);
$rafraichir_2(this$static.filtres.motsClesFiltres, n_0);
}
 
function $doubleClicListeImage(this$static){
$clicListeImage(this$static);
$setActiveTab(this$static.ongletsImage, 2);
}
 
function $doubleClicZoomImage(this$static){
$setActiveTab(this$static.ongletsImage, this$static.dernierIndexOnglet);
}
 
function $getIdVueSelectionnee(this$static){
var active;
active = $getActiveTab(this$static.ongletsImage);
if (active != this$static.zoomImage) {
if (active == this$static.galerieImage) {
return this$static.galerieImage.id_0;
}
else {
return this$static.listeImage.id_0;
}
}
else {
if (this$static.dernierIndexOnglet == 0) {
return this$static.galerieImage.id_0;
}
else {
return this$static.listeImage.id_0;
}
}
}
 
function $getVueSelectionnee(this$static){
var active;
active = $getActiveTab(this$static.ongletsImage);
if (active != this$static.zoomImage) {
if (active == this$static.galerieImage) {
return this$static.galerieImage;
}
else {
return this$static.listeImage;
}
}
else {
if (this$static.dernierIndexOnglet == 0) {
return this$static.galerieImage;
}
else {
return this$static.listeImage;
}
}
}
 
function $lierImagesDD(this$static, e, data){
var aLier, gdd, i, idObs, idsImg, index, mv, rddrop;
gdd = dynamicCast(data, 62);
idsImg = '';
aLier = $getSelections(gdd);
for (i = 0; i < aLier.length; ++i) {
idsImg += $getAsString(aLier[i], 'id_image') + ',';
}
mv = this$static.metadonneesIptcExif.miniListeObservation;
index = $findRowIndex($GridView_0(new GridView(), $getOrCreateJsObj(mv).getView()), e);
rddrop = $getAt($getStore(mv), index);
if (rddrop) {
idObs = $getAsString(rddrop, 'id_obs') + ',';
$lierImagesObervations(this$static.iModele, idObs, idsImg);
}
return true;
}
 
function $lierObsDD(this$static, e, data, idDest){
var aLier, el, gdd, gv, i, idImg, idsObs, index, lv, rddrop, zv;
gdd = dynamicCast(data, 62);
idsObs = '';
aLier = $getSelections(gdd);
for (i = 0; i < aLier.length; ++i) {
idsObs += $getAsString(aLier[i], 'id_obs') + ',';
}
rddrop = null;
if ($equals_1(idDest, this$static.galerieImage.id_0)) {
gv = this$static.galerieImage;
index = $indexOf_2(gv.dView, $getTarget(e));
el = $getTarget(e);
while (index == -1 && !!el) {
index = $indexOf_2(gv.dView, el);
el = $getParentElement(el);
}
if (index != -1) {
rddrop = $getAt(gv.st, index);
}
}
if ($equals_1(idDest, this$static.listeImage.id_0)) {
lv = this$static.listeImage;
index = $findRowIndex($GridView_0(new GridView(), $getOrCreateJsObj(lv).getView()), e);
rddrop = $getAt(lv.st, index);
}
if (rddrop) {
idImg = $getAsString(rddrop, 'id_image') + ',';
$lierImagesObervations(this$static.iModele, idsObs, idImg);
return true;
}
if ($equals_1(idDest, this$static.zoomImage.id_0)) {
zv = this$static.zoomImage;
idImg = zv.idImage;
$lierImagesObervations(this$static.iModele, idsObs, idImg);
return true;
}
return false;
}
 
function $masquerChargement(this$static){
var masked, elem;
masked = get_1($getIdVueSelectionnee(this$static));
if (!!masked && !(elem = masked.getJsObj() , elem.isMasked())) {
$mask_0(masked, 'Chargement', true);
}
}
 
function $mettreAJourInfo(this$static, commentaires, date, note){
var ids;
ids = $getVueSelectionnee(this$static).getIdSelectionnees();
$mettreAJourCacheImage(this$static.iModele, commentaires, date, note, ids);
$mettreAjourInfos(this$static.listeImage, date, note);
}
 
function $mettreAjourMotsCles(this$static, motsClesEnCours, arbreMC){
var ids;
ids = $getIdSelectionnees(this$static.galerieImage);
$mettreAjourMotsCles_0(this$static.iModele, ids, motsClesEnCours, arbreMC);
}
 
function $modifierMotCleDansArbre(this$static, n_0, arbreMC){
$modifierMotCleDansArbre_0(this$static.iModele, n_0, arbreMC);
$rafraichir_2(this$static.filtres.motsClesFiltres, n_0);
}
 
function $montrerContextMenu(this$static, e){
$showAt(this$static.menuImageVue, initValues(_3I_classLit, 256, -1, [$getPageX(e), $getPageY(e)]));
}
 
function $montrerContextMenuArbre(this$static, n_0, ev){
var ajoutN, mn, suppN, menu, itemJS, menu_0, itemJS_0, e, e_0;
mn = $Menu(new Menu());
ajoutN = $Item_0(new Item(), 'Ajouter mot cle');
suppN = $Item_0(new Item(), 'Supprimer mot cle');
menu = mn.getOrCreateJsObj();
itemJS = ajoutN.getOrCreateJsObj();
menu.addItem(itemJS);
menu_0 = mn.getOrCreateJsObj();
itemJS_0 = suppN.getOrCreateJsObj();
menu_0.addItem(itemJS_0);
$addListener_11(mn, $ImageMediateur$1(new ImageMediateur$1(), this$static, suppN, n_0, ajoutN));
$showAt(mn, initValues(_3I_classLit, 256, -1, [(e = ev.getJsObj() , e.getPageX()), (e_0 = ev.getJsObj() , e_0.getPageY())]));
}
 
function $obtenirDonnes(this$static, imgNum){
$obtenirMetadonnees_0(this$static.iModele, this$static.metadonneesIptcExif, imgNum);
$obtenirMotsClesId_0(this$static.iModele, this$static.metadonneesIptcExif.panneauMotsCles, imgNum);
$obtenirNote_0(this$static.iModele, this$static.metadonneesIptcExif.noteVue, imgNum);
}
 
function $obtenirPhotoGalerie(this$static){
$masquerChargement(this$static);
$obtenirNombrePhotoGalerie(this$static.iModele);
}
 
function $rafraichirArbreMotsCles(this$static, arbreMC){
$rafraichir_3(this$static.metadonneesIptcExif.panneauMotsCles, arbreMC);
$rafraichir_2(this$static.filtres.motsClesFiltres, arbreMC);
}
 
function $rafraichirToutesVues(this$static){
$masquerChargement(this$static);
$obtenirNombrePhotoGalerie(this$static.iModele);
}
 
function $renvoyerFiltres(this$static){
var i, valeursFiltres;
valeursFiltres = $renvoyerValeursAFiltrer_2(this$static.filtres);
for (i = 0; i < valeursFiltres.length; ++i) {
if (equals__devirtual$(valeursFiltres[i], null)) {
$wnd.alert('Le filtre ' + i + ' est nul');
}
else {
if ($equals_1(valeursFiltres[i][0], null)) {
$wnd.alert('Le nom du filtre ' + i + ' est nul');
}
if ($equals_1(valeursFiltres[i][1], null)) {
$wnd.alert('La valeur du filtre ' + i + ' est nulle');
}
}
}
return valeursFiltres;
}
 
function $selection(this$static){
if (!this$static.selection) {
$setDisabled(this$static.metadonneesIptcExif, false);
$activerPanneau(this$static.zoomImage);
$enable(this$static.zoomImage);
this$static.selection = true;
}
}
 
function $supprimerImages(this$static){
var ids;
ids = null;
if (this$static.dernierIndexOnglet == 0) {
ids = $getIdSelectionnees(this$static.galerieImage);
}
else {
ids = $getIdSelectionnees_0(this$static.listeImage);
}
if (ids.length > 0) {
if ($wnd.confirm('Supprimer les images selectionnees ?')) {
$masquerChargement(this$static);
$supprimerImages_0(this$static.iModele, ids);
$aucuneSelection(this$static);
}
}
else {
$wnd.alert('Impossible de supprimer : aucune image selectionnee');
}
}
 
function $supprimerMotCleDansArbre(this$static, n_0){
$supprimerMotCleDansArbre_0(this$static.iModele, n_0);
$rafraichir_2(this$static.filtres.motsClesFiltres, $getId(n_0));
}
 
function $synchroniserDonneesZoomListeGalerie(this$static, o, r){
var li, store;
if (o != null && canCast(o.typeId$, 61)) {
li = dynamicCast(o, 61);
if ((store = li.getJsObj() , store.getCount()) <= 0) {
$aucuneSelection(this$static);
}
else {
$selection(this$static);
}
}
if (r != this$static.galerieImage) {
$rafraichir_7(this$static.galerieImage, o, false);
}
if (r != this$static.zoomImage) {
$rafraichir_11(this$static.zoomImage, o);
}
if (r != this$static.listeImage) {
$rafraichir_8(this$static.listeImage, o, false);
}
$aucuneSelection(this$static);
$demasquerChargement(this$static);
}
 
function $synchroniserSelection(this$static, string){
var i, ids, sel, dv, records, sm, records_0;
if ($equals_1(string, 'galerie') && this$static.dernierIndexOnglet != 2) {
sel = (dv = this$static.galerieImage.dView.getOrCreateJsObj() , records = dv.getSelectedRecords() , convertFromNativeRecordsArray(records));
$selectionnerEnregistrements(this$static.listeImage, sel);
}
if ($equals_1(string, 'liste') && this$static.dernierIndexOnglet != 0) {
sel = (sm = $getSelectionModel(this$static.listeImage).getJsObj() , records_0 = sm.getSelections() , records_0 == null?null:convertFromNativeRecordsArray(records_0));
ids = initDim(_3I_classLit, 256, -1, sel.length, 1);
for (i = 0; i < sel.length; ++i) {
ids[i] = $indexOf_0(this$static.galerieImage.st, sel[i]);
}
$select_0(this$static.galerieImage.dView, ids);
}
}
 
function Instance_1(){
if (estInstancie_2) {
return null;
}
else {
estInstancie_2 = true;
return $ImageMediateur(new ImageMediateur());
}
}
 
function getClass_261(){
return Lorg_tela_1botanica_client_image_ImageMediateur_2_classLit;
}
 
function ImageMediateur(){
}
 
_ = ImageMediateur.prototype = new Object_0();
_.getClass$ = getClass_261;
_.typeId$ = 0;
_.barreOutilsVue = null;
_.dernierIndexOnglet = 0;
_.filtres = null;
_.galerieImage = null;
_.iModele = null;
_.identifiant = '0';
_.listeImage = null;
_.menuImageVue = null;
_.metadonneesIptcExif = null;
_.ongletsImage = null;
_.panneauMenuEtOngletsImage = null;
_.selection = false;
_.zoomImage = null;
var estInstancie_2 = false;
function $ImageMediateur$1(this$static, this$0, val$suppN, val$n, val$ajoutN){
this$static.this$0 = this$0;
this$static.val$suppN = val$suppN;
this$static.val$n = val$n;
this$static.val$ajoutN = val$ajoutN;
return this$static;
}
 
function getClass_260(){
return Lorg_tela_1botanica_client_image_ImageMediateur$1_2_classLit;
}
 
function onItemClick_0(item, e){
if ($equals_0(item, this.val$suppN)) {
$supprimerNoeud(this.this$0.metadonneesIptcExif.panneauMotsCles, this.val$n);
}
if ($equals_0(item, this.val$ajoutN)) {
$ajouterNoeud(this.this$0.metadonneesIptcExif.panneauMotsCles, this.val$n);
}
}
 
function ImageMediateur$1(){
}
 
_ = ImageMediateur$1.prototype = new MenuListenerAdapter();
_.getClass$ = getClass_260;
_.onItemClick = onItemClick_0;
_.typeId$ = 0;
_.this$0 = null;
_.val$ajoutN = null;
_.val$n = null;
_.val$suppN = null;
function $ImageModele(this$static, im){
this$static.cacheImage = $ListeImageCarnet(new ListeImageCarnet(), 0);
this$static.motsCles = $HashMap_0(new HashMap(), 0);
this$static.arbreMotsCles = $Tree(new Tree());
this$static.selectionImages = $Vector(new Vector(), 0);
this$static.iMediateur = im;
this$static.config_0 = $Configuration(new Configuration());
return this$static;
}
 
function $ajouterImagesSelection_0(this$static, ids){
var i;
for (i = 0; i < ids.length; ++i) {
$add_8(this$static.selectionImages.arrayList, ids[i]);
}
}
 
function $ajouterMotCleDansArbre_0(this$static, n_0, arbreMC){
var MCDao, id, motCle, nouveauMotCle, parentId, parentUsObj, usObj;
MCDao = $MotsClesAsynchroneDAO(new MotsClesAsynchroneDAO(), this$static);
usObj = dynamicCast($getUserObject(n_0), 32);
motCle = usObj[0];
id = usObj[1];
parentId = '';
if ($equals_1(id, 'racine')) {
parentId = 'racine';
}
else {
parentUsObj = dynamicCast($getUserObject($getParentNode(n_0)), 32);
parentId = parentUsObj[1];
}
this$static.arbreMotsCles = arbreMC;
nouveauMotCle = '&identifiant=' + this$static.iMediateur.identifiant + '&motcle=' + motCle + '&id=' + id + '&parent=' + parentId;
$ajouterBaseDeDonnees(MCDao, nouveauMotCle);
}
 
function $calculerNbPages(this$static, nbElements){
var nPage, nPageInt, nPageRound;
nPage = nbElements / this$static.taillePage;
nPageRound = Math.ceil(nPage);
nPageInt = $Double(new Double(), nPageRound);
return ~~Math.max(Math.min(nPageInt.value, 2147483647), -2147483648);
}
 
function $calculerPageCourante(this$static, nbElements){
var nPageCourante, nPageInt, nPageRound, nouvelNbPages;
nouvelNbPages = $calculerNbPages(this$static, nbElements);
nPageCourante = this$static.pageEncours / this$static.pageMax * nouvelNbPages;
nPageRound = Math.ceil(nPageCourante);
nPageInt = $Double(new Double(), nPageRound);
return abs(~~Math.max(Math.min(nPageInt.value, 2147483647), -2147483648));
}
 
function $changerNumeroPage_0(this$static, nouvellePageCourante){
this$static.pageEncours = nouvellePageCourante;
$obtenirNombrePhotoGalerie(this$static);
}
 
function $changerTaillePage_0(this$static, nouvelleTaillePage){
this$static.taillePage = nouvelleTaillePage;
this$static.pageEncours = $calculerPageCourante(this$static, this$static.nbElements);
$obtenirNombrePhotoGalerie(this$static);
}
 
function $deplacerMotCleDansArbre_0(this$static, n_0, arbreMC){
var MCDao, id, motCle, motCleModifie, parentId, parentUsObj, usObj;
MCDao = $MotsClesAsynchroneDAO(new MotsClesAsynchroneDAO(), this$static);
usObj = dynamicCast($getUserObject(n_0), 32);
motCle = usObj[0];
id = usObj[1];
parentId = '';
if ($equals_1(id, 'racine')) {
parentId = 'racine';
}
else {
parentUsObj = dynamicCast($getUserObject($getParentNode(n_0)), 32);
parentId = parentUsObj[1];
}
this$static.arbreMotsCles = arbreMC;
motCleModifie = '&motcle=' + motCle + '&id=' + id + '&parent=' + parentId;
$deplacerBaseDeDonnees(MCDao, motCleModifie);
}
 
function $initialiserArbreMotsCles(this$static){
var MCDao;
MCDao = $MotsClesAsynchroneDAO(new MotsClesAsynchroneDAO(), this$static);
$obtenirListeMotsCles(MCDao, this$static);
}
 
function $lierImagesObervations(this$static, idsObs, idsImg){
var lienDAO;
lienDAO = $LienImageAsynchroneDAO(new LienImageAsynchroneDAO(), this$static);
$lierImageBaseDeDonnees(lienDAO, idsImg, idsObs);
}
 
function $mettreAJourCacheImage(this$static, commentaires, date, note, ids){
var i, ic, key, iaDaO;
for (i = 0; i < ids.length; ++i) {
key = ids[i];
ic = dynamicCast($get_2(this$static.cacheImage, key), 63);
'ci_meta_comment' == null?$putNullSlot(ic, commentaires):'ci_meta_comment' != null?$putStringValue(ic, 'ci_meta_comment', commentaires):$putHashValue(ic, 'ci_meta_comment', commentaires, ~~'ci_meta_comment'.hashCode$());
'ci_note_image' == null?$putNullSlot(ic, note):'ci_note_image' != null?$putStringValue(ic, 'ci_note_image', note):$putHashValue(ic, 'ci_note_image', note, ~~'ci_note_image'.hashCode$());
'ci_meta_date' == null?$putNullSlot(ic, date):'ci_meta_date' != null?$putStringValue(ic, 'ci_meta_date', date):$putHashValue(ic, 'ci_meta_date', date, ~~'ci_meta_date'.hashCode$());
iaDaO = $ImageAsynchroneDAO(new ImageAsynchroneDAO(), this$static);
$SynchroniserBaseDeDonnees(iaDaO, ic);
}
}
 
function $mettreAjourMotsCles_0(this$static, ids, motsClesEnCours, arbreMC){
var i, ic, imgDao;
for (i = 0; i < ids.length; ++i) {
if ($containsKey(this$static.cacheImage, ids[i])) {
ic = dynamicCast($get_2(this$static.cacheImage, ids[i]), 63);
'ci_meta_mots_cles' == null?$putNullSlot(ic, motsClesEnCours):'ci_meta_mots_cles' != null?$putStringValue(ic, 'ci_meta_mots_cles', motsClesEnCours):$putHashValue(ic, 'ci_meta_mots_cles', motsClesEnCours, ~~'ci_meta_mots_cles'.hashCode$());
imgDao = $ImageAsynchroneDAO(new ImageAsynchroneDAO(), this$static);
$SynchroniserMotsClesImageBaseDeDonnees(imgDao, ic);
}
}
this$static.arbreMotsCles = arbreMC;
}
 
function $mettreAjourMotsClesId_0(this$static, text, id){
$put(this$static.motsCles, id, text);
}
 
function $modifierMotCleDansArbre_0(this$static, n_0, arbreMC){
var MCDao, id, motCle, motCleModifie, parentId, parentUsObj, usObj;
MCDao = $MotsClesAsynchroneDAO(new MotsClesAsynchroneDAO(), this$static);
usObj = dynamicCast($getUserObject(n_0), 32);
motCle = usObj[0];
id = usObj[1];
parentId = '';
if ($equals_1(id, 'racine')) {
parentId = 'racine';
}
else {
parentUsObj = dynamicCast($getUserObject($getParentNode(n_0)), 32);
parentId = parentUsObj[1];
}
this$static.arbreMotsCles = arbreMC;
motCleModifie = '&motcle=' + motCle + '&id=' + id + '&parent=' + parentId;
$modifierBaseDeDonnees(MCDao, motCleModifie);
}
 
function $obtenirArbreMotCle(this$static, r){
$rafraichir_2(r, this$static.arbreMotsCles);
}
 
function $obtenirMetadonnees_0(this$static, r, id){
var im, meta, metaGen;
im = dynamicCast($get_2(this$static.cacheImage, id), 63);
meta = initDim(_3Ljava_lang_Object_2_classLit, 260, 0, 3, 0);
setCheck(meta, 0, $getMetadonnesExif(im));
setCheck(meta, 1, $getMetadonnesIptc(im));
setCheck(meta, 2, (metaGen = initDims_0([_3_3Ljava_lang_String_2_classLit, _3Ljava_lang_String_2_classLit], [267, 261], [32, 1], [2, 2], 0, 2, 0) , metaGen[0][0] = 'ci_meta_comment' , metaGen[0][1] = $renvoyerValeurCorrecte(im, 'ci_meta_comment') , metaGen[1][0] = 'ci_meta_date' , metaGen[1][1] = $renvoyerValeurCorrecte(im, 'ci_meta_date') , metaGen));
$rafraichir_10(r, meta);
}
 
function $obtenirMotsClesId_0(this$static, r, id){
var im, motsClesId, motsClesIdTab;
im = dynamicCast($get_2(this$static.cacheImage, id), 63);
motsClesId = $renvoyerValeurCorrecte(im, 'ci_meta_mots_cles');
motsClesIdTab = $split(motsClesId, ',', 0);
$rafraichir_3(r, motsClesIdTab);
}
 
function $obtenirNombrePhotoGalerie(this$static){
var criteres, i, niaDAO, tailleFiltres, utilisateur, valeursFiltres;
valeursFiltres = $renvoyerFiltres(this$static.iMediateur);
tailleFiltres = valeursFiltres.length;
criteres = initDims_0([_3_3Ljava_lang_String_2_classLit, _3Ljava_lang_String_2_classLit], [267, 261], [32, 1], [tailleFiltres + 1, 2], 0, 2, 0);
utilisateur = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_ce_utilisateur', '' + this$static.iMediateur.identifiant]);
criteres[0] = utilisateur;
for (i = 0; i < valeursFiltres.length; ++i) {
criteres[i + 1] = valeursFiltres[i];
}
niaDAO = $NombreImageAsynchroneDAO(new NombreImageAsynchroneDAO(), this$static);
$obtenirNombreImages(niaDAO, this$static, criteres);
}
 
function $obtenirNote_0(this$static, r, id){
var note;
$rafraichir_4(r, (note = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [$renvoyerValeurCorrecte(dynamicCast($get_2(this$static.cacheImage, id), 63), 'ci_note_image')]) , note));
}
 
function $obtenirPhotoGalerie_0(this$static){
var criteres2, i, liaDAO, limite, tailleFiltres, taillePage, valeursFiltres;
valeursFiltres = $renvoyerFiltres(this$static.iMediateur);
tailleFiltres = valeursFiltres.length;
criteres2 = initDims_0([_3_3Ljava_lang_String_2_classLit, _3Ljava_lang_String_2_classLit], [267, 261], [32, 1], [tailleFiltres + 2, 2], 0, 2, 0);
limite = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_limite', '' + this$static.taillePage]);
taillePage = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_numero_page', '' + this$static.pageEncours]);
criteres2[0] = limite;
criteres2[1] = taillePage;
for (i = 0; i < valeursFiltres.length; ++i) {
criteres2[i + 2] = valeursFiltres[i];
}
liaDAO = $ListeImageAsynchroneDAO(new ListeImageAsynchroneDAO(), this$static);
$ObtenirListeImages(liaDAO, this$static, criteres2);
}
 
function $rafraichir_0(this$static, nouvelleDonnees, repandreRafraichissement){
var data, dataProxy, defAppImage, defDatImage, defIdImage, defLieImage, defNoteImage, defNumImage, defTab, defUrlImage, defUrlImageM, defUrlImageS, i, id_noeud, im, it, j, mot_cle, node_0, noeud, pages, parent, parentNode, photoData, photoStore, rd, reader, reponse, root, taillemax, usObj, entrySet, outerIter, entry, infosFichier_1, infosFichier_0, infosFichier, note, store, store_0, node;
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 64)) {
data = dynamicCast(nouvelleDonnees, 64);
photoData = initDims_0([_3_3Ljava_lang_Object_2_classLit, _3Ljava_lang_Object_2_classLit], [266, 260], [31, 0], [data.size, 9], 0, 2, 0);
i = 0;
if (data.size == 0) {
this$static.pageEncours = 0;
}
for (it = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), (entrySet = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), data) , $AbstractMap$1(new AbstractMap$1(), data, entrySet)).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(it.val$outerIter.iter);) {
im = dynamicCast($get_2(data, (entry = $next_0(it.val$outerIter) , entry.getKey_0())), 63);
setCheck(photoData[i], 0, $renvoyerValeurCorrecte(im, 'ci_ordre'));
setCheck(photoData[i], 1, $renvoyerValeurCorrecte(im, 'ci_meta_date'));
setCheck(photoData[i], 2, $renvoyerValeurCorrecte(im, 'ci_meta_iptc_city'));
setCheck(photoData[i], 3, $renvoyerValeurCorrecte(im, 'ci_meta_make') + ' ' + $renvoyerValeurCorrecte(im, 'ci_meta_model'));
setCheck(photoData[i], 4, (infosFichier_1 = $getBaseFileName(im) , 'http://162.38.234.9/Documents/images_serveur/' + infosFichier_1[1] + '/' + infosFichier_1[2] + '/S/' + infosFichier_1[0] + '_S.jpg'));
setCheck(photoData[i], 5, (infosFichier_0 = $getBaseFileName(im) , 'http://162.38.234.9/Documents/images_serveur/' + infosFichier_0[1] + '/' + infosFichier_0[2] + '/M/' + infosFichier_0[0] + '_M.jpg'));
setCheck(photoData[i], 6, (infosFichier = $getBaseFileName(im) , 'http://162.38.234.9/Documents/images_serveur/' + infosFichier[1] + '/' + infosFichier[2] + '/L/' + infosFichier[0] + '_L.jpg'));
setCheck(photoData[i], 7, (note = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [$renvoyerValeurCorrecte(im, 'ci_note_image')]) , note));
setCheck(photoData[i], 8, $renvoyerValeurCorrecte(im, 'ci_id_image'));
++i;
}
defNumImage = $IntegerFieldDef(new IntegerFieldDef(), 'num_image');
defDatImage = $StringFieldDef(new StringFieldDef(), 'dat_image');
defLieImage = $StringFieldDef(new StringFieldDef(), 'lie_image');
defAppImage = $StringFieldDef(new StringFieldDef(), 'app_image');
defUrlImageS = $StringFieldDef(new StringFieldDef(), 'url_image_S');
defUrlImageM = $StringFieldDef(new StringFieldDef(), 'url_image_M');
defUrlImage = $StringFieldDef(new StringFieldDef(), 'url_image');
defNoteImage = $IntegerFieldDef(new IntegerFieldDef(), 'note_image');
defIdImage = $IntegerFieldDef(new IntegerFieldDef(), 'id_image');
defTab = initValues(_3Lcom_gwtext_client_data_FieldDef_2_classLit, 247, 37, [defNumImage, defDatImage, defLieImage, defAppImage, defUrlImageS, defUrlImageM, defUrlImage, defNoteImage, defIdImage]);
rd = $RecordDef(new RecordDef(), defTab);
dataProxy = $MemoryProxy(new MemoryProxy(), photoData);
reader = $ArrayReader_0(new ArrayReader(), rd);
photoStore = $Store_1(new Store(), dataProxy, reader);
this$static.cacheImage = dynamicCast(nouvelleDonnees, 64);
this$static.st = photoStore;
store = this$static.st.getJsObj();
store.load();
store_0 = this$static.st.getJsObj();
store_0.sort('num_image');
if (repandreRafraichissement) {
$synchroniserDonneesZoomListeGalerie(this$static.iMediateur, this$static.st, this$static);
}
}
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 4)) {
reponse = dynamicCast(nouvelleDonnees, 4);
taillemax = reponse.jsArray.length;
if (taillemax == 0) {
root = $TreeNode(new TreeNode());
$setId(root, 'racine');
$setText_2(root, 'Tags');
usObj = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['Tags', 'racine']);
$setUserObject(root, usObj);
$setRootNode(this$static.arbreMotsCles, root);
}
for (j = 0; j < taillemax; ++j) {
if ($get_0(reponse, j).isObject()) {
noeud = dynamicCast($get_0(reponse, j), 6);
id_noeud = $get_1(noeud, 'cmc_id_mot_cle_utilisateur').isString().value;
mot_cle = $get_1(noeud, 'cmc_mot_cle').isString().value;
parent = $get_1(noeud, 'cmc_id_parent').isString().value;
usObj = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [mot_cle, id_noeud]);
if ($equals_1(id_noeud, 'racine')) {
root = $TreeNode(new TreeNode());
$setId(root, id_noeud);
$setText_2(root, mot_cle);
$setUserObject(root, usObj);
$setRootNode(this$static.arbreMotsCles, root);
}
else {
node_0 = $TreeNode(new TreeNode());
$setId(node_0, id_noeud);
$setText_2(node_0, mot_cle);
node_0.configJS['checked'] = false;
parentNode = (node = this$static.arbreMotsCles.jsObj.getNodeById(parent) , !node?null:$Node_0(new Node_0(), node));
$setUserObject(node_0, usObj);
$appendChild_0(parentNode, node_0);
}
}
}
$rafraichirArbreMotsCles_0(this$static, this$static.arbreMotsCles);
$rafraichirArbreMotsCles(this$static.iMediateur, this$static.arbreMotsCles);
}
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 65)) {
pages = dynamicCast(nouvelleDonnees, 65);
this$static.pageMax = $calculerNbPages(this$static, pages[0]);
this$static.nbElements = pages[0];
$changerPageMaxEtCourante(this$static.iMediateur, this$static.pageMax, this$static.pageEncours, this$static.taillePage, pages[0]);
$obtenirPhotoGalerie_0(this$static);
}
}
 
function $rafraichirArbreMotsCles_0(this$static, o){
this$static.arbreMotsCles = o;
}
 
function $renvoyerSelection(this$static){
var idEncours, it, selection;
selection = '';
if (this$static.selectionImages.arrayList.size <= 0) {
selection += '-255';
}
else {
for (it = $AbstractList$IteratorImpl(new AbstractList$IteratorImpl(), this$static.selectionImages.arrayList); it.i < it.this$0.size_0();) {
idEncours = dynamicCast($next_1(it), 1);
selection += idEncours + ',';
}
}
return selection;
}
 
function $requeteTerminee(this$static){
$demasquerChargement(this$static.iMediateur);
$rafraichirToutesVues(this$static.iMediateur);
}
 
function $supprimerImages_0(this$static, ids){
var i, ic, key, liDao, rids;
rids = initDim(_3Ljava_lang_String_2_classLit, 261, 1, ids.length, 0);
liDao = $ListeImageAsynchroneDAO(new ListeImageAsynchroneDAO(), this$static);
for (i = 0; i < ids.length; ++i) {
key = ids[i];
ic = dynamicCast($get_2(this$static.cacheImage, key), 63);
rids[i] = $renvoyerValeurCorrecte(ic, 'ci_id_image');
$remove_7(this$static.cacheImage, key);
}
if (rids.length != 0) {
$supprimerBaseDeDonnees(liDao, rids);
}
}
 
function $supprimerMotCleDansArbre_0(this$static, n_0){
var MCDao, id, usObj;
MCDao = $MotsClesAsynchroneDAO(new MotsClesAsynchroneDAO(), this$static);
usObj = dynamicCast($getUserObject(n_0), 32);
id = usObj[1];
$supprimerBaseDeDonnees_0(MCDao, id);
}
 
function Instance_2(im){
if (!estInstancie_3) {
estInstancie_3 = true;
thisModele = $ImageModele(new ImageModele(), im);
}
return thisModele;
}
 
function getClass_262(){
return Lorg_tela_1botanica_client_image_ImageModele_2_classLit;
}
 
function ImageModele(){
}
 
_ = ImageModele.prototype = new Object_0();
_.getClass$ = getClass_262;
_.typeId$ = 0;
_.config_0 = null;
_.iMediateur = null;
_.nbElements = 0;
_.pageEncours = 0;
_.pageMax = 1;
_.st = null;
_.taillePage = 50;
var estInstancie_3 = false, thisModele = null;
function $clinit_374(){
$clinit_374 = nullMethod;
$clinit_209();
}
 
function $IdVue(this$static, im){
$clinit_374();
$Component(this$static);
$setTitle(this$static, 'Identification');
this$static.iMediateur = im;
this$static.champId = $TextField(new TextField());
this$static.ok = $Button_1(new Button_0(), 'OK');
$add_5(this$static, this$static.champId);
$add_5(this$static, this$static.ok);
$setSize_0(this$static, 156, 75);
$setAttribute_2(this$static, 'closable', false, true, false);
$setAttribute_2(this$static, 'modal', true, true, false);
$setAttribute_1(this$static, 'closeAction', HIDE.closeAction, true, false);
$addListener_1(this$static.ok, $IdVue$1(new IdVue$1(), this$static));
$addKeyListener_0(this$static.champId, ($clinit_122() , ENTER), $IdVue$2(new IdVue$2(), this$static));
$addListener_7(this$static, new IdVue$3());
return this$static;
}
 
function $valider(this$static){
var id, w;
id = $getValueAsString(this$static.champId);
this$static.iMediateur.identifiant = '' + getHashCode_0(id);
$changerUtilisateur(this$static.iMediateur);
w = this$static.getOrCreateJsObj();
w.close();
}
 
function getClass_266(){
return Lorg_tela_1botanica_client_interfaces_IdVue_2_classLit;
}
 
function IdVue(){
}
 
_ = IdVue.prototype = new Window_0();
_.getClass$ = getClass_266;
_.typeId$ = 191;
_.champId = null;
_.iMediateur = null;
_.ok = null;
function $IdVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_263(){
return Lorg_tela_1botanica_client_interfaces_IdVue$1_2_classLit;
}
 
function onClick_3(button, e){
$valider(this.this$0);
}
 
function IdVue$1(){
}
 
_ = IdVue$1.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_263;
_.onClick_0 = onClick_3;
_.typeId$ = 0;
_.this$0 = null;
function $IdVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_264(){
return Lorg_tela_1botanica_client_interfaces_IdVue$2_2_classLit;
}
 
function onKey(key, e){
$valider(this.this$0);
}
 
function IdVue$2(){
}
 
_ = IdVue$2.prototype = new Object_0();
_.getClass$ = getClass_264;
_.onKey = onKey;
_.typeId$ = 0;
_.this$0 = null;
function getClass_265(){
return Lorg_tela_1botanica_client_interfaces_IdVue$3_2_classLit;
}
 
function onClose_0(panel){
}
 
function IdVue$3(){
}
 
_ = IdVue$3.prototype = new WindowListenerAdapter();
_.getClass$ = getClass_265;
_.onClose = onClose_0;
_.typeId$ = 0;
function $Configuration(this$static){
this$static.serviceBaseUrl = $get(getDictionary('configuration'), 'serviceBaseUrl');
return this$static;
}
 
function getClass_267(){
return Lorg_tela_1botanica_client_modeles_Configuration_2_classLit;
}
 
function Configuration(){
}
 
_ = Configuration.prototype = new Object_0();
_.getClass$ = getClass_267;
_.typeId$ = 0;
_.serviceBaseUrl = null;
function $ImageAsynchroneDAO(this$static, im){
this$static.iModele = im;
return this$static;
}
 
function $SynchroniserBaseDeDonnees(this$static, ic){
var $e0, e, imgIt, key, postData, rb, valeur, entrySet, outerIter, entry;
postData = '';
for (imgIt = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), (entrySet = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), ic) , $AbstractMap$1(new AbstractMap$1(), ic, entrySet)).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(imgIt.val$outerIter.iter);) {
key = dynamicCast((entry = $next_0(imgIt.val$outerIter) , entry.getKey_0()), 1);
valeur = $renvoyerValeurCorrecte(ic, key);
postData += '&' + key + '=' + valeur;
}
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , POST), this$static.iModele.config_0.serviceBaseUrl + '/inventoryImage/' + this$static.iModele.iMediateur.identifiant + '/');
try {
$sendRequest(rb, postData, new ImageAsynchroneDAO$1());
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
 
function $SynchroniserMotsClesImageBaseDeDonnees(this$static, ic){
var $e0, e, id, motsCles, postData, rb;
postData = '';
motsCles = $renvoyerValeurCorrecte(ic, 'ci_meta_mots_cles');
id = $renvoyerValeurCorrecte(ic, 'ci_id_image');
postData += '&ci_id_image=' + id + '&ci_meta_mots_cles=' + motsCles;
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , POST), this$static.iModele.config_0.serviceBaseUrl + '/inventoryImage/' + this$static.iModele.iMediateur.identifiant + '/');
try {
$sendRequest(rb, postData, new ImageAsynchroneDAO$2());
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
 
function getClass_270(){
return Lorg_tela_1botanica_client_modeles_ImageAsynchroneDAO_2_classLit;
}
 
function ImageAsynchroneDAO(){
}
 
_ = ImageAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_270;
_.typeId$ = 0;
_.iModele = null;
function getClass_268(){
return Lorg_tela_1botanica_client_modeles_ImageAsynchroneDAO$1_2_classLit;
}
 
function onError(request, exception){
}
 
function onResponseReceived(request, response){
if ($equals_1(response.val$xmlHttpRequest.responseText, 'OK')) {
return;
}
else {
$wnd.alert('Probl\xE8me lors de la mise \xE0 jour des donn\xE9es');
}
}
 
function ImageAsynchroneDAO$1(){
}
 
_ = ImageAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_268;
_.onError = onError;
_.onResponseReceived = onResponseReceived;
_.typeId$ = 0;
function getClass_269(){
return Lorg_tela_1botanica_client_modeles_ImageAsynchroneDAO$2_2_classLit;
}
 
function onError_0(request, exception){
}
 
function onResponseReceived_0(request, response){
if ($equals_1(response.val$xmlHttpRequest.responseText, 'OK')) {
return;
}
else {
$wnd.alert('Probl\xE8me lors de la mise \xE0 jour des donn\xE9es');
}
}
 
function ImageAsynchroneDAO$2(){
}
 
_ = ImageAsynchroneDAO$2.prototype = new Object_0();
_.getClass$ = getClass_269;
_.onError = onError_0;
_.onResponseReceived = onResponseReceived_0;
_.typeId$ = 0;
function $ImageCarnet(this$static, image){
var im, iterator, key, valeur, keySet, outerIter, entry;
$clearImpl(this$static);
im = (keySet = $HashSet(new HashSet()) , $addAllKeys(image, keySet) , keySet);
for (iterator = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), $keySet_1(im.map).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(iterator.val$outerIter.iter);) {
key = dynamicCast((entry = $next_0(iterator.val$outerIter) , entry.getKey_0()), 1);
if ($get_1(image, key).isString()) {
valeur = $get_1(image, key).isString().value;
key == null?$putNullSlot(this$static, valeur):key != null?$putStringValue(this$static, key, valeur):$putHashValue(this$static, key, valeur, ~~key.hashCode$());
}
else {
key == null?$putNullSlot(this$static, ' '):key != null?$putStringValue(this$static, key, ' '):$putHashValue(this$static, key, ' ', ~~key.hashCode$());
}
}
return this$static;
}
 
function $getBaseFileName(this$static){
var dossierNv1, dossierNv2, fichierNv, i, id, infosFichier, maxZeros, nomFichier;
id = $renvoyerValeurCorrecte(this$static, 'ci_id_image');
maxZeros = 9 - id.length;
for (i = 0; i < maxZeros; ++i) {
id = '0' + id;
}
dossierNv1 = id.substr(0, 3 - 0);
dossierNv2 = id.substr(3, 6 - 3);
fichierNv = id.substr(6, 9 - 6);
nomFichier = dossierNv1 + '_' + dossierNv2 + '_' + fichierNv;
infosFichier = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [nomFichier, dossierNv1, dossierNv2]);
return infosFichier;
}
 
function $getMetadonnesExif(this$static){
var elem, genre, it, key, metaExif, nom, type, entrySet, outerIter, entry;
metaExif = initDims_0([_3_3Ljava_lang_String_2_classLit, _3Ljava_lang_String_2_classLit], [267, 261], [32, 1], [31, 2], 0, 2, 0);
elem = 0;
for (it = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), (entrySet = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), this$static) , $AbstractMap$1(new AbstractMap$1(), this$static, entrySet)).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(it.val$outerIter.iter);) {
key = dynamicCast((entry = $next_0(it.val$outerIter) , entry.getKey_0()), 1);
type = $split(key, '_', 3);
if ($equals_1(type[1], 'meta')) {
genre = $split(type[2], '_', 2);
if ($equals_1(genre[0], 'exif')) {
nom = genre[1];
metaExif[elem][0] = nom;
metaExif[elem][1] = $renvoyerValeurCorrecte(this$static, key);
++elem;
}
}
}
return metaExif;
}
 
function $getMetadonnesIptc(this$static){
var elem, genre, it, key, metaIptc, nom, type, entrySet, outerIter, entry;
metaIptc = initDims_0([_3_3Ljava_lang_String_2_classLit, _3Ljava_lang_String_2_classLit], [267, 261], [32, 1], [14, 2], 0, 2, 0);
elem = 0;
for (it = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), (entrySet = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), this$static) , $AbstractMap$1(new AbstractMap$1(), this$static, entrySet)).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(it.val$outerIter.iter);) {
key = dynamicCast((entry = $next_0(it.val$outerIter) , entry.getKey_0()), 1);
type = $split(key, '_', 3);
if ($equals_1(type[1], 'meta')) {
genre = $split(type[2], '_', 2);
if ($equals_1(genre[0], 'iptc')) {
nom = genre[1];
metaIptc[elem][0] = nom;
metaIptc[elem][1] = $renvoyerValeurCorrecte(this$static, key);
++elem;
}
}
}
return metaIptc;
}
 
function $getTailleImage(this$static){
var XY;
XY = initValues(_3Ljava_lang_String_2_classLit, 261, 1, [$renvoyerValeurCorrecte(this$static, 'ci_meta_height'), $renvoyerValeurCorrecte(this$static, 'ci_meta_width')]);
return XY;
}
 
function $renvoyerValeurCorrecte(this$static, cle){
var valeur;
if (cle == null?this$static.nullSlotLive:cle != null?':' + cle in this$static.stringMap:$hasHashValue(this$static, cle, ~~cle.hashCode$())) {
valeur = dynamicCast(cle == null?this$static.nullSlot:cle != null?this$static.stringMap[':' + cle]:$getHashValue(this$static, cle, ~~cle.hashCode$()), 1);
if ($equals_1(valeur, 'null') || valeur == null) {
return ' ';
}
else {
valeur = $replaceAll(valeur, '\0', '');
return valeur;
}
}
else {
return ' ';
}
}
 
function getClass_271(){
return Lorg_tela_1botanica_client_modeles_ImageCarnet_2_classLit;
}
 
function toString_32(){
var iterator, key, valeur, entrySet, outerIter, entry;
valeur = ' ';
for (iterator = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), (entrySet = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), this) , $AbstractMap$1(new AbstractMap$1(), this, entrySet)).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(iterator.val$outerIter.iter);) {
key = dynamicCast((entry = $next_0(iterator.val$outerIter) , entry.getKey_0()), 1);
if ((key == null?this.nullSlot:key != null?this.stringMap[':' + key]:$getHashValue(this, key, ~~key.hashCode$())) != null) {
valeur += 'cle : ' + key + ' valeur :' + dynamicCast(key == null?this.nullSlot:key != null?this.stringMap[':' + key]:$getHashValue(this, key, ~~key.hashCode$()), 1) + '\n';
}
}
return valeur;
}
 
function ImageCarnet(){
}
 
_ = ImageCarnet.prototype = new HashMap();
_.getClass$ = getClass_271;
_.toString$ = toString_32;
_.typeId$ = 192;
function $ImageUploaderAsynchroneDAO(this$static, im){
iModele = im;
return this$static;
}
 
function choisirMethodeUpload(){
var agt = navigator.userAgent.toLowerCase(), appelApplet, htmlForm, nPan, paramPostTarget, w, id, params, up, w_0;
var ie = agt.indexOf('msie') != -1;
var ns = navigator.appName.indexOf('Netscape') != -1;
var win = agt.indexOf('win') != -1 || agt.indexOf('32bit') != -1;
var mac = agt.indexOf('mac') != -1;
function detectIE(ClassID, name){
result = false;
document.write('<SCRIPT LANGUAGE=VBScript>\n on error resume next \n result = IsObject(CreateObject("' + ClassID + '"))<\/SCRIPT>\n');
if (result)
return name + ',';
else
return '';
}
 
function detectNS(ClassID, name){
n = '';
if (nse.indexOf(ClassID) != -1)
if (navigator.mimeTypes[ClassID].enabledPlugin != null)
n = name + ',';
return n;
}
 
if (ie && win) {
pluginlist = detectIE('Adobe.SVGCtl', 'SVG Viewer') + detectIE('SWCtl.SWCtl.1', 'Shockwave Director') + detectIE('ShockwaveFlash.ShockwaveFlash.1', 'Shockwave Flash') + detectIE('rmocx.RealPlayer G2 Control.1', 'RealPlayer') + detectIE('QuickTimeCheckObject.QuickTimeCheck.1', 'QuickTime') + detectIE('MediaPlayer.MediaPlayer.1', 'Windows Media Player') + detectIE('PDF.PdfCtrl.5', 'Acrobat Reader');
}
if (ns || !win) {
nse = '';
for (var i = 0; i < navigator.mimeTypes.length; i++)
nse += navigator.mimeTypes[i].type.toLowerCase();
pluginlist = detectNS('image/svg-xml', 'SVG Viewer') + detectNS('application/x-director', 'Shockwave Director') + detectNS('application/x-shockwave-flash', 'Shockwave Flash') + detectNS('audio/x-pn-realaudio-plugin', 'RealPlayer') + detectNS('video/quicktime', 'QuickTime') + detectNS('application/x-mplayer2', 'Windows Media Player') + detectNS('application/pdf', 'Acrobat Reader');
}
pluginlist += navigator.javaEnabled()?'Java,':'';
if (pluginlist.length > 0)
pluginlist = pluginlist.substring(0, pluginlist.length - 1);
if (pluginlist.indexOf('Java') != -1) {
nPan = $Window_0(new Window_0(), 'Upload multiple');
$setWidth_0(nPan, 640);
paramPostTarget = '<param name="postURL" value="' + iModele.config_0.serviceBaseUrl + '/InventoryImage/">';
appelApplet = '<applet code="wjhk.jupload2.JUploadApplet" archive="wjhk.jupload.jar" alt="" mayscript="" height="350" width="625">' + paramPostTarget + '<param name="uploadPolicy" value="PictureUploadPolicy">' + '<param name="maxChunkSize" value="0">' + '<param name="maxFileSize" value="10000000">' + '<param name="pictureTransmitMetadata" value="true">' + '<param name="nbFilesPerRequest" value="1">' + '<param name="allowedFileExtensions" value="jpg/jpeg/">' + '<param name="stringUploadSuccess" value="OK">' + '<param name="showLogWindow" value="false">' + '<param name="formData" value="postid">' + '<\/applet>';
htmlForm = '<form method="post" name="postid"><input type="hidden" name="identifiant" value="' + iModele.iMediateur.identifiant + '">' + '<\/form>';
$setHtml(nPan, '<p class="warning_upload"> A la fin de l\'envoi, veuillez fermer la fen\xEAtre pour acc\xE9der aux images. <\/p>' + appelApplet + htmlForm);
$setAttribute_2(nPan, 'modal', true, true, false);
$addListener_7(nPan, new ImageUploaderAsynchroneDAO$2());
w = nPan.getOrCreateJsObj();
w.show();
}
else {
up = $UploadDialog(new UploadDialog(), 'Upload simple de fichiers');
$setUrl_0(up, iModele.config_0.serviceBaseUrl + '/InventoryImage');
id = $UrlParam(new UrlParam(), 'identifiant', iModele.iMediateur.identifiant);
params = initValues(_3Lcom_gwtext_client_core_UrlParam_2_classLit, 246, 49, [id]);
$setBaseParams(up, params);
$setAttribute_2(up, 'modal', true, true, false);
$addListener_13(up, new ImageUploaderAsynchroneDAO$1());
w_0 = up.getOrCreateJsObj();
w_0.show();
}
}
 
function getClass_274(){
return Lorg_tela_1botanica_client_modeles_ImageUploaderAsynchroneDAO_2_classLit;
}
 
function ImageUploaderAsynchroneDAO(){
}
 
_ = ImageUploaderAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_274;
_.typeId$ = 0;
var iModele = null;
function getClass_272(){
return Lorg_tela_1botanica_client_modeles_ImageUploaderAsynchroneDAO$1_2_classLit;
}
 
function onClose_1(panel){
$requeteTerminee(iModele);
}
 
function onUploadComplete_0(source){
$requeteTerminee(iModele);
}
 
function ImageUploaderAsynchroneDAO$1(){
}
 
_ = ImageUploaderAsynchroneDAO$1.prototype = new UploadDialogListenerAdapter();
_.getClass$ = getClass_272;
_.onClose = onClose_1;
_.onUploadComplete = onUploadComplete_0;
_.typeId$ = 0;
function getClass_273(){
return Lorg_tela_1botanica_client_modeles_ImageUploaderAsynchroneDAO$2_2_classLit;
}
 
function onClose_2(panel){
$requeteTerminee(iModele);
}
 
function ImageUploaderAsynchroneDAO$2(){
}
 
_ = ImageUploaderAsynchroneDAO$2.prototype = new WindowListenerAdapter();
_.getClass$ = getClass_273;
_.onClose = onClose_2;
_.typeId$ = 0;
function $LienImageAsynchroneDAO(this$static, im){
this$static.iModele = im;
return this$static;
}
 
function $lierImageBaseDeDonnees(this$static, idsImages, idsObs){
var $e0, e, postData, rb;
postData = '';
postData += '&coi_ce_image=' + idsImages;
postData += '&coi_ce_observation=' + idsObs;
postData += '&identifiant=' + this$static.iModele.iMediateur.identifiant;
$wnd.alert('data post\xE9e : ' + postData);
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , POST), this$static.iModele.config_0.serviceBaseUrl + '/inventoryImageLink/');
try {
$sendRequest(rb, postData, new LienImageAsynchroneDAO$2());
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
 
function getClass_276(){
return Lorg_tela_1botanica_client_modeles_LienImageAsynchroneDAO_2_classLit;
}
 
function LienImageAsynchroneDAO(){
}
 
_ = LienImageAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_276;
_.typeId$ = 0;
_.iModele = null;
function getClass_275(){
return Lorg_tela_1botanica_client_modeles_LienImageAsynchroneDAO$2_2_classLit;
}
 
function onError_1(request, exception){
}
 
function onResponseReceived_1(request, response){
}
 
function LienImageAsynchroneDAO$2(){
}
 
_ = LienImageAsynchroneDAO$2.prototype = new Object_0();
_.getClass$ = getClass_275;
_.onError = onError_1;
_.onResponseReceived = onResponseReceived_1;
_.typeId$ = 0;
function $ListeImageAsynchroneDAO(this$static, im){
this$static.iModele = im;
return this$static;
}
 
function $ObtenirListeImages(this$static, r, criteres){
var $e0, e, i, rb, requete;
requete = '';
if (criteres != null) {
for (i = 0; i < criteres.length; ++i) {
if (!$equals_1(criteres[i][1], '')) {
if (i != 0) {
requete += '&';
}
requete += criteres[i][0] + '=' + criteres[i][1];
}
}
}
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , GET), this$static.iModele.config_0.serviceBaseUrl + '/InventoryImageList/' + this$static.iModele.iMediateur.identifiant + '/' + requete);
try {
$sendRequest(rb, null, $ListeImageAsynchroneDAO$1(new ListeImageAsynchroneDAO$1(), r));
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
 
function $supprimerBaseDeDonnees(this$static, ids){
var $e0, e, i, postData, rb, uid;
postData = '';
postData += '&action=DELETE';
uid = '';
for (i = 0; i < ids.length; ++i) {
uid += ids[i] + ',';
}
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , POST), this$static.iModele.config_0.serviceBaseUrl + '/inventoryImageList/' + this$static.iModele.iMediateur.identifiant + '/' + uid);
try {
$sendRequest(rb, postData, $ListeImageAsynchroneDAO$3(new ListeImageAsynchroneDAO$3(), this$static));
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
 
function getClass_279(){
return Lorg_tela_1botanica_client_modeles_ListeImageAsynchroneDAO_2_classLit;
}
 
function ListeImageAsynchroneDAO(){
}
 
_ = ListeImageAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_279;
_.typeId$ = 0;
_.iModele = null;
function $ListeImageAsynchroneDAO$1(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_277(){
return Lorg_tela_1botanica_client_modeles_ListeImageAsynchroneDAO$1_2_classLit;
}
 
function onError_2(request, exception){
}
 
function onResponseReceived_2(request, response){
var im, image, j, photoData, reponse, responseValue, taillemax;
responseValue = parse(response.val$xmlHttpRequest.responseText);
if (responseValue.isArray()) {
reponse = responseValue.isArray();
taillemax = reponse.jsArray.length;
photoData = $ListeImageCarnet(new ListeImageCarnet(), taillemax);
for (j = 0; j < taillemax; ++j) {
image = dynamicCast($get_0(reponse, j), 6);
im = $ImageCarnet(new ImageCarnet(), image);
$put(photoData, $renvoyerValeurCorrecte(im, 'ci_ordre'), im);
}
}
else {
if (responseValue.isObject()) {
photoData = $ListeImageCarnet(new ListeImageCarnet(), 1);
im = $ImageCarnet(new ImageCarnet(), responseValue.isObject());
$put(photoData, $renvoyerValeurCorrecte(im, 'ci_ordre'), im);
}
else {
photoData = $ListeImageCarnet(new ListeImageCarnet(), 0);
}
}
$rafraichir_0(this.val$r, photoData, true);
}
 
function ListeImageAsynchroneDAO$1(){
}
 
_ = ListeImageAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_277;
_.onError = onError_2;
_.onResponseReceived = onResponseReceived_2;
_.typeId$ = 0;
_.val$r = null;
function $ListeImageAsynchroneDAO$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_278(){
return Lorg_tela_1botanica_client_modeles_ListeImageAsynchroneDAO$3_2_classLit;
}
 
function onError_3(request, exception){
}
 
function onResponseReceived_3(request, response){
$requeteTerminee(this.this$0.iModele);
}
 
function ListeImageAsynchroneDAO$3(){
}
 
_ = ListeImageAsynchroneDAO$3.prototype = new Object_0();
_.getClass$ = getClass_278;
_.onError = onError_3;
_.onResponseReceived = onResponseReceived_3;
_.typeId$ = 0;
_.this$0 = null;
function $ListeImageCarnet(this$static, taille){
$AbstractHashMap(this$static, taille, 0);
return this$static;
}
 
function getClass_280(){
return Lorg_tela_1botanica_client_modeles_ListeImageCarnet_2_classLit;
}
 
function ListeImageCarnet(){
}
 
_ = ListeImageCarnet.prototype = new HashMap();
_.getClass$ = getClass_280;
_.typeId$ = 193;
function $ListeObservation(this$static, taille){
$AbstractHashMap(this$static, taille, 0);
return this$static;
}
 
function getClass_283(){
return Lorg_tela_1botanica_client_modeles_ListeObservation_2_classLit;
}
 
function ListeObservation(){
}
 
_ = ListeObservation.prototype = new HashMap();
_.getClass$ = getClass_283;
_.typeId$ = 194;
function $ListeObservationAsynchroneDAO(this$static, observationModele){
this$static.observationModele = observationModele;
return this$static;
}
 
function $obtenirListeObservation(this$static, r, utilisateur, criteres){
var i, requete;
requete = '';
if (criteres != null) {
for (i = 0; i < criteres.length; ++i) {
if (!$equals_1(criteres[i][1], '')) {
if (i != 0) {
requete += '&';
}
requete += criteres[i][0] + '=' + criteres[i][1];
}
}
}
$clinit_54();
$asyncGetImpl(httpRequest_0, this$static.observationModele.config_0.serviceBaseUrl + '/InventoryObservationList/' + utilisateur + '/' + requete, $ListeObservationAsynchroneDAO$1(new ListeObservationAsynchroneDAO$1(), r));
}
 
function getClass_282(){
return Lorg_tela_1botanica_client_modeles_ListeObservationAsynchroneDAO_2_classLit;
}
 
function ListeObservationAsynchroneDAO(){
}
 
_ = ListeObservationAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_282;
_.typeId$ = 0;
_.observationModele = null;
function $ListeObservationAsynchroneDAO$1(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_281(){
return Lorg_tela_1botanica_client_modeles_ListeObservationAsynchroneDAO$1_2_classLit;
}
 
function onCompletion(responseText){
var date, i, lieudit, nomRetenu, nomSaisi, numeroOrdre, obs, observation, observationData, reponse, responseValue, taillemax, transmis;
responseValue = parse(responseText);
reponse = null;
if (reponse = responseValue.isArray()) {
taillemax = reponse.jsArray.length;
observationData = $ListeObservation(new ListeObservation(), taillemax);
for (i = 0; i < taillemax; ++i) {
if (observation = $get_0(reponse, i).isArray()) {
transmis = dynamicCast($get_0(observation, 13), 8).value;
escapeValue(dynamicCast($get_0(observation, 14), 8).value);
nomSaisi = toCelString(escapeValue(dynamicCast($get_0(observation, 0), 8).value));
nomRetenu = toCelString(escapeValue(dynamicCast($get_0(observation, 2), 8).value));
dynamicCast($get_0(observation, 1), 8);
dynamicCast($get_0(observation, 3), 8);
dynamicCast($get_0(observation, 4), 8);
toCelString(escapeValue(dynamicCast($get_0(observation, 5), 8).value));
toCelString(escapeValue(dynamicCast($get_0(observation, 6), 8).value));
lieudit = toCelString(escapeValue(dynamicCast($get_0(observation, 9), 8).value));
toCelString(escapeValue(dynamicCast($get_0(observation, 10), 8).value));
toCelString(escapeValue(dynamicCast($get_0(observation, 11), 8).value));
toCelString(escapeValue(dynamicCast($get_0(observation, 12), 8).value));
date = dynamicCast($get_0(observation, 8), 8).value;
numeroOrdre = dynamicCast($get_0(observation, 7), 8).value;
obs = $Observation(new Observation(), transmis, nomSaisi, nomRetenu, lieudit, date, numeroOrdre);
$put(observationData, obs.numeroOrdre, obs);
}
}
$rafraichir_1(this.val$r, observationData, true);
}
}
 
function ListeObservationAsynchroneDAO$1(){
}
 
_ = ListeObservationAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_281;
_.onCompletion = onCompletion;
_.typeId$ = 0;
_.val$r = null;
function $ListeReferentielCommune(this$static, taille){
$AbstractHashMap(this$static, taille, 0);
return this$static;
}
 
function getClass_286(){
return Lorg_tela_1botanica_client_modeles_ListeReferentielCommune_2_classLit;
}
 
function ListeReferentielCommune(){
}
 
_ = ListeReferentielCommune.prototype = new HashMap();
_.getClass$ = getClass_286;
_.typeId$ = 195;
function $ListeReferentielCommuneAsynchroneDAO(this$static, observationModele){
this$static.observationModele = observationModele;
return this$static;
}
 
function getClass_285(){
return Lorg_tela_1botanica_client_modeles_ListeReferentielCommuneAsynchroneDAO_2_classLit;
}
 
function ListeReferentielCommuneAsynchroneDAO(){
}
 
_ = ListeReferentielCommuneAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_285;
_.typeId$ = 0;
_.observationModele = null;
function $ListeReferentielCommuneAsynchroneDAO$1(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_284(){
return Lorg_tela_1botanica_client_modeles_ListeReferentielCommuneAsynchroneDAO$1_2_classLit;
}
 
function onCompletion_0(responseText){
var com, commune, communes, departement, i, referentielCommuneData, reponse, responseValue, taillemax;
responseValue = parse(responseText);
reponse = null;
if (reponse = responseValue.isArray()) {
taillemax = reponse.jsArray.length;
referentielCommuneData = $ListeReferentielCommune(new ListeReferentielCommune(), taillemax);
for (i = 0; i < taillemax; ++i) {
if (communes = $get_0(reponse, i).isArray()) {
commune = dynamicCast($get_0(communes, 0), 8).value;
departement = dynamicCast($get_0(communes, 1), 8).value;
com = $ReferentielCommune(new ReferentielCommune(), commune, departement);
$put(referentielCommuneData, com.commune + com.departement, com);
}
}
$rafraichir_6(this.val$r, referentielCommuneData);
}
}
 
function ListeReferentielCommuneAsynchroneDAO$1(){
}
 
_ = ListeReferentielCommuneAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_284;
_.onCompletion = onCompletion_0;
_.typeId$ = 0;
_.val$r = null;
function $ListeReferentielNom(this$static, taille){
$AbstractHashMap(this$static, taille, 0);
return this$static;
}
 
function getClass_289(){
return Lorg_tela_1botanica_client_modeles_ListeReferentielNom_2_classLit;
}
 
function ListeReferentielNom(){
}
 
_ = ListeReferentielNom.prototype = new HashMap();
_.getClass$ = getClass_289;
_.typeId$ = 196;
function $ListeReferentielNomAsynchroneDAO(this$static, observationModele){
this$static.observationModele = observationModele;
return this$static;
}
 
function getClass_288(){
return Lorg_tela_1botanica_client_modeles_ListeReferentielNomAsynchroneDAO_2_classLit;
}
 
function ListeReferentielNomAsynchroneDAO(){
}
 
_ = ListeReferentielNomAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_288;
_.typeId$ = 0;
_.observationModele = null;
function $ListeReferentielNomAsynchroneDAO$1(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_287(){
return Lorg_tela_1botanica_client_modeles_ListeReferentielNomAsynchroneDAO$1_2_classLit;
}
 
function onCompletion_1(responseText){
var i, nom, nomScientifique, noms, numeroNom, referentielNomData, reponse, responseValue, taillemax;
responseValue = parse(responseText);
reponse = null;
if (reponse = responseValue.isArray()) {
taillemax = reponse.jsArray.length;
referentielNomData = $ListeReferentielNom(new ListeReferentielNom(), taillemax);
for (i = 0; i < taillemax; ++i) {
if (noms = $get_0(reponse, i).isArray()) {
nom = toCelString(escapeValue(dynamicCast($get_0(noms, 0), 8).value));
numeroNom = toCelString(escapeValue(dynamicCast($get_0(noms, 1), 8).value));
nomScientifique = $ReferentielNom(new ReferentielNom(), nom, numeroNom);
$put(referentielNomData, nomScientifique.numeroNom, nomScientifique);
}
}
$rafraichir_6(this.val$r, referentielNomData);
}
}
 
function ListeReferentielNomAsynchroneDAO$1(){
}
 
_ = ListeReferentielNomAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_287;
_.onCompletion = onCompletion_1;
_.typeId$ = 0;
_.val$r = null;
function $MotsClesAsynchroneDAO(this$static, im){
this$static.iModele = im;
return this$static;
}
 
function $ajouterBaseDeDonnees(this$static, motcle){
var $e0, e, postData, rb;
if (!$equals_1(motcle, '')) {
postData = motcle;
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , POST), this$static.iModele.config_0.serviceBaseUrl + '/InventoryKeyWordList/');
try {
$sendRequest(rb, postData, new MotsClesAsynchroneDAO$2());
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
}
 
function $deplacerBaseDeDonnees(this$static, motcle){
var $e0, e, postData, rb;
if (!$equals_1(motcle, '')) {
postData = '';
postData += '&action=deplacement' + motcle;
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , POST), this$static.iModele.config_0.serviceBaseUrl + '/InventoryKeyWordList/' + this$static.iModele.iMediateur.identifiant);
try {
$sendRequest(rb, postData, new MotsClesAsynchroneDAO$5());
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
}
 
function $modifierBaseDeDonnees(this$static, motcle){
var $e0, e, postData, rb;
if (!$equals_1(motcle, '')) {
postData = '';
postData += '&action=modification' + motcle;
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , POST), this$static.iModele.config_0.serviceBaseUrl + '/InventoryKeyWordList/' + this$static.iModele.iMediateur.identifiant);
try {
$sendRequest(rb, postData, new MotsClesAsynchroneDAO$4());
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
}
 
function $obtenirListeMotsCles(this$static, r){
var $e0, e, rb;
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , GET), this$static.iModele.config_0.serviceBaseUrl + '/InventoryKeyWordList/' + this$static.iModele.iMediateur.identifiant);
try {
$sendRequest(rb, null, $MotsClesAsynchroneDAO$1(new MotsClesAsynchroneDAO$1(), r));
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
 
function $supprimerBaseDeDonnees_0(this$static, motcle){
var $e0, e, postData, rb;
if (!$equals_1(motcle, '')) {
postData = '';
postData += '&action=DELETE';
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , POST), this$static.iModele.config_0.serviceBaseUrl + '/InventoryKeyWordList/' + this$static.iModele.iMediateur.identifiant + '/' + motcle);
try {
$sendRequest(rb, postData, new MotsClesAsynchroneDAO$3());
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
}
 
function getClass_295(){
return Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO_2_classLit;
}
 
function MotsClesAsynchroneDAO(){
}
 
_ = MotsClesAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_295;
_.typeId$ = 0;
_.iModele = null;
function $MotsClesAsynchroneDAO$1(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_290(){
return Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$1_2_classLit;
}
 
function onError_4(request, exception){
}
 
function onResponseReceived_4(request, response){
var reponse, responseValue;
responseValue = parse(response.val$xmlHttpRequest.responseText);
if (responseValue.isArray()) {
reponse = responseValue.isArray();
$rafraichir_0(this.val$r, reponse, true);
}
}
 
function MotsClesAsynchroneDAO$1(){
}
 
_ = MotsClesAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_290;
_.onError = onError_4;
_.onResponseReceived = onResponseReceived_4;
_.typeId$ = 0;
_.val$r = null;
function getClass_291(){
return Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$2_2_classLit;
}
 
function onError_5(request, exception){
}
 
function onResponseReceived_5(request, response){
if ($equals_1(response.val$xmlHttpRequest.responseText, 'ERROR')) {
$wnd.alert("Attention, la base de donn\xE9es des mots cl\xE9s n'est plus synchronis\xE9e avec l'application,nous vous invitons \xE0 recharger la page. ");
}
}
 
function MotsClesAsynchroneDAO$2(){
}
 
_ = MotsClesAsynchroneDAO$2.prototype = new Object_0();
_.getClass$ = getClass_291;
_.onError = onError_5;
_.onResponseReceived = onResponseReceived_5;
_.typeId$ = 0;
function getClass_292(){
return Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$3_2_classLit;
}
 
function onError_6(request, exception){
}
 
function onResponseReceived_6(request, response){
if ((response == null?null:response) === ('ERROR' == null?null:'ERROR')) {
$wnd.alert("Attention, la base de donn\xE9es des mots cl\xE9s n'est plus synchronis\xE9e avec l'application,nous vous invitons \xE0 recharger la page. ");
}
}
 
function MotsClesAsynchroneDAO$3(){
}
 
_ = MotsClesAsynchroneDAO$3.prototype = new Object_0();
_.getClass$ = getClass_292;
_.onError = onError_6;
_.onResponseReceived = onResponseReceived_6;
_.typeId$ = 0;
function getClass_293(){
return Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$4_2_classLit;
}
 
function onError_7(request, exception){
}
 
function onResponseReceived_7(request, response){
}
 
function MotsClesAsynchroneDAO$4(){
}
 
_ = MotsClesAsynchroneDAO$4.prototype = new Object_0();
_.getClass$ = getClass_293;
_.onError = onError_7;
_.onResponseReceived = onResponseReceived_7;
_.typeId$ = 0;
function getClass_294(){
return Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$5_2_classLit;
}
 
function onError_8(request, exception){
}
 
function onResponseReceived_8(request, response){
}
 
function MotsClesAsynchroneDAO$5(){
}
 
_ = MotsClesAsynchroneDAO$5.prototype = new Object_0();
_.getClass$ = getClass_294;
_.onError = onError_8;
_.onResponseReceived = onResponseReceived_8;
_.typeId$ = 0;
function $NombreImageAsynchroneDAO(this$static, im){
this$static.iModele = im;
return this$static;
}
 
function $obtenirNombreImages(this$static, r, criteres){
var $e0, e, i, rb, requete;
requete = '';
if (criteres != null) {
for (i = 0; i < criteres.length; ++i) {
if (!$equals_1(criteres[i][1], '')) {
if (i != 0) {
requete += '&';
}
requete += criteres[i][0] + '=' + criteres[i][1];
}
}
}
rb = $RequestBuilder(new RequestBuilder(), ($clinit_15() , GET), this$static.iModele.config_0.serviceBaseUrl + '/InventoryImageCount/' + this$static.iModele.iMediateur.identifiant + '/' + requete);
try {
$sendRequest(rb, null, $NombreImageAsynchroneDAO$1(new NombreImageAsynchroneDAO$1(), r));
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 66)) {
e = $e0;
$printStackTrace(e);
}
else
throw $e0;
}
}
 
function getClass_297(){
return Lorg_tela_1botanica_client_modeles_NombreImageAsynchroneDAO_2_classLit;
}
 
function NombreImageAsynchroneDAO(){
}
 
_ = NombreImageAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_297;
_.typeId$ = 0;
_.iModele = null;
function $NombreImageAsynchroneDAO$1(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_296(){
return Lorg_tela_1botanica_client_modeles_NombreImageAsynchroneDAO$1_2_classLit;
}
 
function onError_9(request, exception){
}
 
function onResponseReceived_9(request, response){
var maxImages, nbImages, reponseNombre, res, responseValue, v, func;
responseValue = parse(response.val$xmlHttpRequest.responseText);
if (responseValue.isArray()) {
res = (v = responseValue.isArray().jsArray[0] , func = ($clinit_32() , typeMap)[typeof v] , func?func(v):throwUnknownTypeException(typeof v));
reponseNombre = res.isString();
maxImages = __parseAndValidateInt(reponseNombre.value, 10, -2147483648, 2147483647);
nbImages = initValues(_3I_classLit, 256, -1, [maxImages]);
$rafraichir_0(this.val$r, nbImages, true);
}
}
 
function NombreImageAsynchroneDAO$1(){
}
 
_ = NombreImageAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_296;
_.onError = onError_9;
_.onResponseReceived = onResponseReceived_9;
_.typeId$ = 0;
_.val$r = null;
function $NombreObservationAsynchroneDAO(this$static, observationModele){
this$static.observationModele = observationModele;
return this$static;
}
 
function $obtenirNombreObservation(this$static, r, utilisateur, criteres){
var i, requete;
requete = '';
if (criteres != null) {
for (i = 0; i < criteres.length; ++i) {
if (!$equals_1(criteres[i][1], '')) {
if (i != 0) {
requete += '&';
}
requete += criteres[i][0] + '=' + criteres[i][1];
}
}
}
$clinit_54();
$asyncGetImpl(httpRequest_0, this$static.observationModele.config_0.serviceBaseUrl + '/InventoryObservationCount/' + utilisateur + '/' + requete, $NombreObservationAsynchroneDAO$1(new NombreObservationAsynchroneDAO$1(), r));
}
 
function getClass_299(){
return Lorg_tela_1botanica_client_modeles_NombreObservationAsynchroneDAO_2_classLit;
}
 
function NombreObservationAsynchroneDAO(){
}
 
_ = NombreObservationAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_299;
_.typeId$ = 0;
_.observationModele = null;
function $NombreObservationAsynchroneDAO$1(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_298(){
return Lorg_tela_1botanica_client_modeles_NombreObservationAsynchroneDAO$1_2_classLit;
}
 
function onCompletion_2(responseText){
var maxObservations, nbObservations, reponseNombre, res, responseValue, v, func;
responseValue = parse(responseText);
if (responseValue.isArray()) {
res = (v = responseValue.isArray().jsArray[0] , func = ($clinit_32() , typeMap)[typeof v] , func?func(v):throwUnknownTypeException(typeof v));
reponseNombre = res.isString();
maxObservations = __parseAndValidateInt(reponseNombre.value, 10, -2147483648, 2147483647);
nbObservations = initValues(_3I_classLit, 256, -1, [maxObservations]);
$rafraichir_1(this.val$r, nbObservations, true);
}
}
 
function NombreObservationAsynchroneDAO$1(){
}
 
_ = NombreObservationAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_298;
_.onCompletion = onCompletion_2;
_.typeId$ = 0;
_.val$r = null;
function $Observation(this$static, transmis, nomSaisi, nomRetenu, lieudit, date, numeroOrdre){
this$static.transmis = transmis;
this$static.nomSaisi = nomSaisi;
this$static.nomRetenu = nomRetenu;
this$static.lieudit = lieudit;
this$static.date = date;
this$static.numeroOrdre = numeroOrdre;
return this$static;
}
 
function getClass_300(){
return Lorg_tela_1botanica_client_modeles_Observation_2_classLit;
}
 
function Observation(){
}
 
_ = Observation.prototype = new Object_0();
_.getClass$ = getClass_300;
_.typeId$ = 197;
_.date = null;
_.lieudit = null;
_.nomRetenu = null;
_.nomSaisi = null;
_.numeroOrdre = null;
_.transmis = null;
function $ReferentielCommune(this$static, commune, departement){
this$static.commune = commune;
this$static.departement = departement;
return this$static;
}
 
function getClass_301(){
return Lorg_tela_1botanica_client_modeles_ReferentielCommune_2_classLit;
}
 
function ReferentielCommune(){
}
 
_ = ReferentielCommune.prototype = new Object_0();
_.getClass$ = getClass_301;
_.typeId$ = 198;
_.commune = null;
_.departement = null;
function $ReferentielNom(this$static, nom, numeroNom){
this$static.nom = nom;
this$static.numeroNom = numeroNom;
return this$static;
}
 
function getClass_302(){
return Lorg_tela_1botanica_client_modeles_ReferentielNom_2_classLit;
}
 
function ReferentielNom(){
}
 
_ = ReferentielNom.prototype = new Object_0();
_.getClass$ = getClass_302;
_.typeId$ = 199;
_.nom = null;
_.numeroNom = null;
function $Utilisateur(this$static, identifiant, identifie){
this$static.identifiant = identifiant;
this$static.identifie = identifie;
return this$static;
}
 
function getClass_307(){
return Lorg_tela_1botanica_client_modeles_Utilisateur_2_classLit;
}
 
function Utilisateur(){
}
 
_ = Utilisateur.prototype = new Object_0();
_.getClass$ = getClass_307;
_.typeId$ = 0;
_.identifiant = null;
_.identifie = false;
function $UtilisateurAsynchroneDAO(this$static, carnetEnLigneModele){
this$static.carnetEnLigneModele = carnetEnLigneModele;
return this$static;
}
 
function $connecteUtilisateur(this$static, r, login, password){
$clinit_54();
$asyncGetImpl(httpRequest_0, this$static.carnetEnLigneModele.config_0.serviceBaseUrl + '/User/' + login + '/' + password, $UtilisateurAsynchroneDAO$3(new UtilisateurAsynchroneDAO$3(), r));
}
 
function $deconnecterUtilisateur_1(this$static, r, user){
$clinit_54();
$asyncGetImpl(httpRequest_0, this$static.carnetEnLigneModele.config_0.serviceBaseUrl + '/User/' + user, $UtilisateurAsynchroneDAO$2(new UtilisateurAsynchroneDAO$2(), r));
}
 
function getClass_306(){
return Lorg_tela_1botanica_client_modeles_UtilisateurAsynchroneDAO_2_classLit;
}
 
function UtilisateurAsynchroneDAO(){
}
 
_ = UtilisateurAsynchroneDAO.prototype = new Object_0();
_.getClass$ = getClass_306;
_.typeId$ = 0;
_.carnetEnLigneModele = null;
function $UtilisateurAsynchroneDAO$1(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_303(){
return Lorg_tela_1botanica_client_modeles_UtilisateurAsynchroneDAO$1_2_classLit;
}
 
function onCompletion_3(str){
var identifiant, identifie, jsonArray, jsonValue;
jsonValue = parse(str);
if (jsonArray = jsonValue.isArray()) {
identifiant = dynamicCast($get_0(jsonArray, 0), 8).value;
identifie = dynamicCast($get_0(jsonArray, 1), 67).value;
$rafraichir(this.val$r, $Utilisateur(new Utilisateur(), identifiant, identifie));
}
}
 
function UtilisateurAsynchroneDAO$1(){
}
 
_ = UtilisateurAsynchroneDAO$1.prototype = new Object_0();
_.getClass$ = getClass_303;
_.onCompletion = onCompletion_3;
_.typeId$ = 0;
_.val$r = null;
function $UtilisateurAsynchroneDAO$2(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_304(){
return Lorg_tela_1botanica_client_modeles_UtilisateurAsynchroneDAO$2_2_classLit;
}
 
function onCompletion_4(str){
var identifiant, identifie, jsonArray, jsonValue;
jsonValue = parse(str);
if (jsonArray = jsonValue.isArray()) {
identifiant = dynamicCast($get_0(jsonArray, 0), 8).value;
identifie = dynamicCast($get_0(jsonArray, 1), 67).value;
$rafraichir(this.val$r, $Utilisateur(new Utilisateur(), identifiant, identifie));
}
}
 
function UtilisateurAsynchroneDAO$2(){
}
 
_ = UtilisateurAsynchroneDAO$2.prototype = new Object_0();
_.getClass$ = getClass_304;
_.onCompletion = onCompletion_4;
_.typeId$ = 0;
_.val$r = null;
function $UtilisateurAsynchroneDAO$3(this$static, val$r){
this$static.val$r = val$r;
return this$static;
}
 
function getClass_305(){
return Lorg_tela_1botanica_client_modeles_UtilisateurAsynchroneDAO$3_2_classLit;
}
 
function onCompletion_5(str){
var identifiant, identifie, jsonArray, jsonValue;
jsonValue = parse(str);
if (jsonArray = jsonValue.isArray()) {
identifiant = dynamicCast($get_0(jsonArray, 0), 8).value;
identifie = dynamicCast($get_0(jsonArray, 1), 67).value;
$rafraichir(this.val$r, $Utilisateur(new Utilisateur(), identifiant, identifie));
}
}
 
function UtilisateurAsynchroneDAO$3(){
}
 
_ = UtilisateurAsynchroneDAO$3.prototype = new Object_0();
_.getClass$ = getClass_305;
_.onCompletion = onCompletion_5;
_.typeId$ = 0;
_.val$r = null;
function $ObservationMediateur(this$static, carnetEnLigneMediateur){
this$static.panneauPrincipalObservation = $Panel_1(new Panel_0(), 'Observation');
$AbstractHashMap(new ListeObservation(), 0, 0);
this$static.carnetEnLigneMediateur = carnetEnLigneMediateur;
this$static.observationModele = Instance_4(this$static);
this$static.listeObservation = $ListeObservationVue(new ListeObservationVue(), this$static);
this$static.formulaireSaisieObservationVue = $FormulaireSaisieObservationVue(new FormulaireSaisieObservationVue(), this$static);
$add_5(this$static.panneauPrincipalObservation, this$static.formulaireSaisieObservationVue);
$add_5(this$static.panneauPrincipalObservation, this$static.listeObservation);
return this$static;
}
 
function $calculerNbPages_0(this$static, nbElements){
var nPage, nPageInt, nPageRound;
nPage = nbElements / this$static.taillePage;
nPageRound = Math.ceil(nPage);
nPageInt = $Double(new Double(), nPageRound);
return ~~Math.max(Math.min(nPageInt.value, 2147483647), -2147483648);
}
 
function $calculerPageCourante_0(this$static, nbElements){
var nPageCourante, nPageInt, nPageRound, nouvelNbPages;
nouvelNbPages = $calculerNbPages_0(this$static, nbElements);
nPageCourante = this$static.pageEncours / this$static.pageMax * nouvelNbPages;
nPageRound = Math.ceil(nPageCourante);
nPageInt = $Double(new Double(), nPageRound);
return abs(~~Math.max(Math.min(nPageInt.value, 2147483647), -2147483648));
}
 
function $changerNumeroPage_1(this$static, pageCourante){
this$static.pageEncours = pageCourante;
$masquerChargement_0(this$static.listeObservation);
$obtenirNombreObservation_1(this$static.observationModele, this$static);
this$static.listeObservation.bt.pageCourante = pageCourante;
}
 
function $changerPageMaxEtCourante_0(this$static, pageMax, pageEncours, taillePage, nbElement){
var pages;
pages = initValues(_3I_classLit, 256, -1, [pageMax, pageEncours, taillePage, nbElement]);
$rafraichir_5(this$static.listeObservation.bt, pages);
}
 
function $changerTaillePage_1(this$static, nouvelleTaillePage){
this$static.taillePage = nouvelleTaillePage;
this$static.pageEncours = $calculerPageCourante_0(this$static, this$static.nbElements);
$masquerChargement_0(this$static.listeObservation);
$obtenirNombreObservation_1(this$static.observationModele, this$static);
$setValue_0(this$static.listeObservation.bt.selecteurTaillePage, '' + nouvelleTaillePage);
}
 
function $obtenirNombreObservation_0(this$static){
$masquerChargement_0(this$static.listeObservation);
$obtenirNombreObservation_1(this$static.observationModele, this$static);
}
 
function $rafraichir_1(this$static, nouvelleDonnees, repandreRafraichissement){
var data, dataProxy, defDateObservation, defEtatObservation, defLieuObservation, defNomRetenuObservation, defNomSaisiObservation, defOrdreObservation, defTab, i, it, obs, observationData, observationStore, pages, rd, reader, entrySet, outerIter, entry, store, store_0;
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 68)) {
data = dynamicCast(nouvelleDonnees, 68);
observationData = initDims_0([_3_3Ljava_lang_Object_2_classLit, _3Ljava_lang_Object_2_classLit], [266, 260], [31, 0], [data.size, 8], 0, 2, 0);
i = 0;
if (data.size == 0) {
this$static.pageEncours = 0;
}
for (it = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), (entrySet = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), data) , $AbstractMap$1(new AbstractMap$1(), data, entrySet)).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(it.val$outerIter.iter);) {
obs = dynamicCast($get_2(data, (entry = $next_0(it.val$outerIter) , entry.getKey_0())), 69);
setCheck(observationData[i], 0, obs.transmis);
setCheck(observationData[i], 1, obs.nomSaisi);
setCheck(observationData[i], 2, obs.nomRetenu);
setCheck(observationData[i], 3, obs.lieudit);
setCheck(observationData[i], 4, obs.date);
setCheck(observationData[i], 5, obs.numeroOrdre);
++i;
}
defEtatObservation = $StringFieldDef(new StringFieldDef(), 'etat_observation');
defNomSaisiObservation = $StringFieldDef(new StringFieldDef(), 'nomSaisi_observation');
defNomRetenuObservation = $StringFieldDef(new StringFieldDef(), 'nomRetenu_observation');
defLieuObservation = $StringFieldDef(new StringFieldDef(), 'lieu_observation');
defDateObservation = $StringFieldDef(new StringFieldDef(), 'date_observation');
defOrdreObservation = $StringFieldDef(new StringFieldDef(), 'ordre_observation');
defTab = initValues(_3Lcom_gwtext_client_data_FieldDef_2_classLit, 247, 37, [defEtatObservation, defNomSaisiObservation, defNomRetenuObservation, defLieuObservation, defDateObservation, defOrdreObservation]);
rd = $RecordDef(new RecordDef(), defTab);
dataProxy = $MemoryProxy(new MemoryProxy(), observationData);
reader = $ArrayReader_0(new ArrayReader(), rd);
observationStore = $Store_1(new Store(), dataProxy, reader);
this$static.st = observationStore;
store = this$static.st.getJsObj();
store.load();
store_0 = this$static.st.getJsObj();
store_0.sort('ordre_observation');
if (repandreRafraichissement) {
$rafraichir_9(this$static.listeObservation, this$static.st);
}
}
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 65)) {
pages = dynamicCast(nouvelleDonnees, 65);
this$static.pageMax = $calculerNbPages_0(this$static, pages[0]);
this$static.nbElements = pages[0];
$changerPageMaxEtCourante_0(this$static, this$static.pageMax, this$static.pageEncours, this$static.taillePage, pages[0]);
$obtenirListeObservation_0(this$static.observationModele, this$static, this$static.taillePage, this$static.pageEncours);
}
}
 
function $renvoyerFiltres_0(){
var valeursFiltres;
valeursFiltres = initValues(_3_3Ljava_lang_String_2_classLit, 267, 32, [initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['location', 'Saint-Martin-de-Londres'])]);
return valeursFiltres;
}
 
function Instance_3(carnetEnLigneMediateur){
if (estInstancie_4) {
return null;
}
else {
estInstancie_4 = true;
return $ObservationMediateur(new ObservationMediateur(), carnetEnLigneMediateur);
}
}
 
function getClass_308(){
return Lorg_tela_1botanica_client_observation_ObservationMediateur_2_classLit;
}
 
function ObservationMediateur(){
}
 
_ = ObservationMediateur.prototype = new Object_0();
_.getClass$ = getClass_308;
_.typeId$ = 0;
_.carnetEnLigneMediateur = null;
_.formulaireSaisieObservationVue = null;
_.listeObservation = null;
_.nbElements = 0;
_.observationModele = null;
_.pageEncours = 0;
_.pageMax = 1;
_.st = null;
_.taillePage = 20;
var estInstancie_4 = false;
function $ObservationModele(this$static, observationMediateur){
this$static.observationMediateur = observationMediateur;
this$static.config_0 = $Configuration(new Configuration());
return this$static;
}
 
function $obtenirListeObservation_0(this$static, r, taillePage, pageEncours){
var criteres2, loaDAO, motsClesFiltres;
motsClesFiltres = $renvoyerFiltres_0();
criteres2 = initValues(_3_3Ljava_lang_String_2_classLit, 267, 32, [initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['limite', '' + taillePage]), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['numero_page', '' + pageEncours]), initValues(_3Ljava_lang_String_2_classLit, 261, 1, [motsClesFiltres[0][0], motsClesFiltres[0][1]])]);
loaDAO = $ListeObservationAsynchroneDAO(new ListeObservationAsynchroneDAO(), this$static);
$obtenirListeObservation(loaDAO, r, this$static.observationMediateur.carnetEnLigneMediateur.utilisateur.identifiant, criteres2);
}
 
function $obtenirListeReferentielCommune_0(this$static, r, critere){
var refDAO;
refDAO = $ListeReferentielCommuneAsynchroneDAO(new ListeReferentielCommuneAsynchroneDAO(), this$static);
$clinit_54();
$asyncGetImpl(httpRequest_0, refDAO.observationModele.config_0.serviceBaseUrl + '/LocationSearch/' + critere, $ListeReferentielCommuneAsynchroneDAO$1(new ListeReferentielCommuneAsynchroneDAO$1(), r));
}
 
function $obtenirListeReferentielNom_0(this$static, r, critere){
var nomDAO;
nomDAO = $ListeReferentielNomAsynchroneDAO(new ListeReferentielNomAsynchroneDAO(), this$static);
$clinit_54();
$asyncGetImpl(httpRequest_0, nomDAO.observationModele.config_0.serviceBaseUrl + '/NameSearch/' + critere, $ListeReferentielNomAsynchroneDAO$1(new ListeReferentielNomAsynchroneDAO$1(), r));
}
 
function $obtenirNombreObservation_1(this$static, r){
var criteres, motsClesFiltres, noaDAO;
motsClesFiltres = $renvoyerFiltres_0();
criteres = initValues(_3_3Ljava_lang_String_2_classLit, 267, 32, [initValues(_3Ljava_lang_String_2_classLit, 261, 1, [motsClesFiltres[0][0], motsClesFiltres[0][1]])]);
noaDAO = $NombreObservationAsynchroneDAO(new NombreObservationAsynchroneDAO(), this$static);
$obtenirNombreObservation(noaDAO, r, this$static.observationMediateur.carnetEnLigneMediateur.utilisateur.identifiant, criteres);
}
 
function Instance_4(observationMediateur){
if (estInstancie_5) {
return null;
}
else {
estInstancie_5 = true;
return $ObservationModele(new ObservationModele(), observationMediateur);
}
}
 
function getClass_309(){
return Lorg_tela_1botanica_client_observation_ObservationModele_2_classLit;
}
 
function ObservationModele(){
}
 
_ = ObservationModele.prototype = new Object_0();
_.getClass$ = getClass_309;
_.typeId$ = 0;
_.config_0 = null;
_.observationMediateur = null;
var estInstancie_5 = false;
function $clinit_423(){
$clinit_423 = nullMethod;
$clinit_193();
}
 
function $ArbreMotsClesFiltreVue(this$static, im){
var labelRecherche;
$clinit_423();
$Component(this$static);
this$static.iMediateur = im;
labelRecherche = $Label(new Label(), 'Mots cl\xE9s :');
this$static.arbreMotsCles = $TreePanel(new TreePanel());
$setPaddings(this$static, 5, 5, 5, 5);
$setAttribute_2(this$static, 'border', false, true, false);
$setAttribute_2(this$static, 'collapsible', true, true, false);
$setAttribute_2(this$static, 'autoWidth', true, true, false);
$add_3(this$static, labelRecherche);
$addListener_6(this$static, $ArbreMotsClesFiltreVue$1(new ArbreMotsClesFiltreVue$1(), this$static));
this$static.estInstancie = false;
return this$static;
}
 
function $copierFilsNoeud(this$static, ndPereOriginal, ndPereCopie){
var child, i, ndNodeFils, usObj, node, childJS, node_0;
if (!!ndPereCopie && !!ndPereOriginal) {
ndNodeFils = $getChildNodes(ndPereOriginal);
for (i = 0; i < ndNodeFils.length; ++i) {
usObj = dynamicCast($getUserObject(ndNodeFils[i]), 32);
child = $TreeNode_1(new TreeNode(), usObj[0]);
$setId(child, usObj[1] + '_filtre');
child.configJS['checked'] = false;
$setUserObject(child, usObj);
node = ndPereCopie.getJsObj();
childJS = child.getJsObj();
node.appendChild(childJS);
if (!(node_0 = ndNodeFils[i].getJsObj() , node_0.isLeaf())) {
$copierFilsNoeud(this$static, ndNodeFils[i], child);
}
}
}
}
 
function $rafraichir_2(this$static, nouvelleDonnees){
var child, idPereFiltre, idSupp, nd, ndPereOriginal, nouvelArbre, usObj, tree, node_14, tree_0, node_15, node_12, tree_1, node_16, tree_2, node_17, node_13;
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 70)) {
nouvelArbre = dynamicCast(nouvelleDonnees, 70);
$eachChild($getRootNode_1(this$static.arbreMotsCles), new ArbreMotsClesFiltreVue$2());
$copierFilsNoeud(this$static, $getRootNode(nouvelArbre), $getRootNode_1(this$static.arbreMotsCles));
if (!this$static.estInstancie) {
this$static.estInstancie = true;
}
$show_0(this$static);
}
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 71)) {
nd = dynamicCast(nouvelleDonnees, 71);
if (!(node_14 = (tree = this$static.arbreMotsCles.getOrCreateJsObj() , $clinit_152() , $Tree_0(new Tree(), tree)).jsObj.getNodeById($getId(nd) + '_filtre') , !node_14?null:$Node_0(new Node_0(), node_14))) {
}
else {
node_12 = (node_15 = (tree_0 = this$static.arbreMotsCles.getOrCreateJsObj() , $Tree_0(new Tree(), tree_0)).jsObj.getNodeById($getId(nd) + '_filtre') , !node_15?null:$Node_0(new Node_0(), node_15)).getJsObj();
node_12.remove();
}
ndPereOriginal = $getParentNode(nd);
idPereFiltre = $getId(ndPereOriginal) + '_filtre';
usObj = dynamicCast($getUserObject(nd), 32);
child = $TreeNode_1(new TreeNode(), usObj[0]);
$setId(child, usObj[1] + '_filtre');
child.configJS['checked'] = false;
$setUserObject(child, usObj);
$appendChild_0($getNodeById_2(this$static.arbreMotsCles, idPereFiltre), child);
$copierFilsNoeud(this$static, nd, child);
}
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 1)) {
idSupp = dynamicCast(nouvelleDonnees, 1) + '_filtre';
if (node_16 = (tree_1 = this$static.arbreMotsCles.getOrCreateJsObj() , $clinit_152() , $Tree_0(new Tree(), tree_1)).jsObj.getNodeById(idSupp) , !node_16?null:$Node_0(new Node_0(), node_16)) {
node_13 = (node_17 = (tree_2 = this$static.arbreMotsCles.getOrCreateJsObj() , $Tree_0(new Tree(), tree_2)).jsObj.getNodeById(idSupp) , !node_17?null:$Node_0(new Node_0(), node_17)).getJsObj();
node_13.remove();
}
}
}
 
function $renvoyerValeursAFiltrer(this$static){
var valeursFiltrees;
$valider_0(this$static);
valeursFiltrees = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_meta_mots_cles', this$static.motsClesEncours]);
return valeursFiltrees;
}
 
function $valider_0(this$static){
if (this$static.estInstancie) {
this$static.motsClesEncours = '';
$cascade($getRootNode_1(this$static.arbreMotsCles), $ArbreMotsClesFiltreVue$3(new ArbreMotsClesFiltreVue$3(), this$static));
}
}
 
function getClass_313(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesFiltreVue_2_classLit;
}
 
function ArbreMotsClesFiltreVue(){
}
 
_ = ArbreMotsClesFiltreVue.prototype = new Panel_0();
_.getClass$ = getClass_313;
_.typeId$ = 200;
_.arbreMotsCles = null;
_.estInstancie = false;
_.iMediateur = null;
_.motsClesEncours = '';
function $ArbreMotsClesFiltreVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_310(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesFiltreVue$1_2_classLit;
}
 
function onRender_0(component){
var root, usObject;
$setAttribute_2(this.this$0.arbreMotsCles, 'enableDD', false, true, false);
$setId_0(this.this$0.arbreMotsCles, 'x-view-tree-filter');
$setAttribute_2(this.this$0.arbreMotsCles, 'autoWidth', false, true, false);
$setAttribute_2(this.this$0.arbreMotsCles, 'autoScroll', true, true, false);
$setAttribute_2(this.this$0.arbreMotsCles, 'border', false, true, false);
root = $TreeNode_1(new TreeNode(), 'Tags');
$setId(root, 'racine_filtre');
usObject = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['Mots cl\xE9s', 'racine']);
$setUserObject(root, usObject);
$setRootNode_0(this.this$0.arbreMotsCles, root);
$setAttribute_2(this.this$0.arbreMotsCles, 'rootVisible', true, true, false);
$setAttribute_2(this.this$0.arbreMotsCles, 'border', false, true, false);
$add_5(dynamicCast(component, 72), this.this$0.arbreMotsCles);
$obtenirArbreMotCle(this.this$0.iMediateur.iModele, this.this$0.iMediateur.filtres.motsClesFiltres);
this.this$0.estInstancie = true;
}
 
function ArbreMotsClesFiltreVue$1(){
}
 
_ = ArbreMotsClesFiltreVue$1.prototype = new PanelListenerAdapter();
_.getClass$ = getClass_310;
_.onRender = onRender_0;
_.typeId$ = 0;
_.this$0 = null;
function execute_18(node){
$remove_5(node);
return true;
}
 
function getClass_311(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesFiltreVue$2_2_classLit;
}
 
function ArbreMotsClesFiltreVue$2(){
}
 
_ = ArbreMotsClesFiltreVue$2.prototype = new Object_0();
_.execute_1 = execute_18;
_.getClass$ = getClass_311;
_.typeId$ = 0;
function $ArbreMotsClesFiltreVue$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_19(node_3){
var tn, usObject, ui;
tn = $getNodeById_2(this.this$0.arbreMotsCles, $getId(node_3));
usObject = dynamicCast($getUserObject(tn), 32);
$mettreAjourMotsClesId_0(this.this$0.iMediateur.iModele, usObject[0], usObject[1]);
if (ui = $getUI(tn).getJsObj() , ui.isChecked()) {
this.this$0.motsClesEncours += usObject[1] + ',';
}
return true;
}
 
function getClass_312(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesFiltreVue$3_2_classLit;
}
 
function ArbreMotsClesFiltreVue$3(){
}
 
_ = ArbreMotsClesFiltreVue$3.prototype = new Object_0();
_.execute_1 = execute_19;
_.getClass$ = getClass_312;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_428(){
$clinit_428 = nullMethod;
$clinit_193();
}
 
function $ArbreMotsClesVue(this$static, im){
var root, usObject;
$clinit_428();
$Component(this$static);
$setTitle(this$static, 'Mots cl\xE9s');
$setLayout(this$static, $VerticalLayout(new VerticalLayout()));
this$static.iMediateur = im;
this$static.arbreMotsCles = $TreePanel(new TreePanel());
$setAttribute_2(this$static.arbreMotsCles, 'enableDD', true, true, false);
$setId_0(this$static.arbreMotsCles, 'x-view-tree-keyword');
root = $TreeNode_1(new TreeNode(), 'Tags');
$setId(root, 'racine');
usObject = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['Mots cl\xE9s', 'racine']);
$setUserObject(root, usObject);
$setRootNode_0(this$static.arbreMotsCles, root);
$setAttribute_2(this$static.arbreMotsCles, 'rootVisible', false, true, false);
$setAttribute_2(this$static.arbreMotsCles, 'border', false, true, false);
$setWidth_0(this$static.arbreMotsCles, 500);
this$static.tfEdit = $TextField(new TextField());
$setAttribute_2(this$static.tfEdit, 'autoWidth', true, true, false);
this$static.te = $TreeEditor(new TreeEditor(), this$static.arbreMotsCles, this$static.tfEdit);
this$static.valider = $Button_1(new Button_0(), 'Appliquer');
$add_5(this$static.arbreMotsCles, this$static.te);
$add_5(this$static, this$static.arbreMotsCles);
$add_5(this$static, this$static.valider);
$setAttribute_2(this$static, 'border', false, true, false);
$setAttribute_2(this$static, 'collapsible', true, true, false);
$setAttribute_2(this$static, 'titleCollapse', true, true, false);
$addListener_12(this$static.arbreMotsCles, $ArbreMotsClesVue$1(new ArbreMotsClesVue$1(), this$static));
$addListener_1(this$static.valider, $ArbreMotsClesVue$2(new ArbreMotsClesVue$2(), this$static));
return this$static;
}
 
function $ajouterNoeud(this$static, parent){
var nd, usObject, id, node, childJS;
this$static.ajoutNoeud = true;
nd = $TreeNode_1(new TreeNode(), '');
nd.configJS['cls'] = 'x-view-treenode-keyword';
nd.configJS['checked'] = true;
usObject = initDim(_3Ljava_lang_String_2_classLit, 261, 1, 2, 0);
usObject[0] = '';
usObject[1] = '' + ((id = $getId(nd) , id != null?getHashCode_0(id):0) + Math.random() * 10000);
$setId(nd, usObject[1]);
$setUserObject(nd, usObject);
node = parent.getJsObj();
childJS = nd.getJsObj();
node.appendChild(childJS);
$expand(parent);
$startEdit(this$static.te, nd);
}
 
function $cocherMotsCles(this$static, motsClesIds){
if (!!this$static.arbreMotsCles && !!$getRootNode_1(this$static.arbreMotsCles)) {
$cascade($getRootNode_1(this$static.arbreMotsCles), $ArbreMotsClesVue$3(new ArbreMotsClesVue$3(), this$static, motsClesIds));
}
}
 
function $gererClicNoeud(node){
var ui, ui_0, ui_1;
if (ui = $getUI(node).getJsObj() , ui.isChecked()) {
ui_0 = $getUI(node).getJsObj();
ui_0.toggleCheck(false);
}
else {
ui_1 = $getUI(node).getJsObj();
ui_1.toggleCheck(true);
}
}
 
function $rafraichir_3(this$static, nouvelleDonnees){
var i, motsClesIds, nouvelArbre, root_11, rootChild, usObject, node;
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 70)) {
nouvelArbre = dynamicCast(nouvelleDonnees, 70);
if ($getChildNodes($getRootNode(nouvelArbre)).length <= 0) {
root_11 = $TreeNode_1(new TreeNode(), 'Tags');
$setId(root_11, 'racine');
usObject = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['Mots cl\xE9s', 'racine']);
$setUserObject(root_11, usObject);
}
rootChild = $getChildNodes($getRootNode_1(this$static.arbreMotsCles));
for (i = 0; i < rootChild.length; ++i) {
node = rootChild[i].getJsObj();
node.remove();
}
$appendChild_0($getRootNode_1(this$static.arbreMotsCles), $getRootNode(nouvelArbre));
if (!this$static.estInstancie) {
this$static.estInstancie = true;
}
if (!this$static.motsCleInitialises && this$static.motsClesEnAttente != null) {
this$static.motsCleInitialises = true;
}
}
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 32)) {
if (this$static.estInstancie && nouvelleDonnees != null) {
motsClesIds = dynamicCast(nouvelleDonnees, 32);
$cocherMotsCles(this$static, motsClesIds);
}
else {
this$static.motsClesEnAttente = dynamicCast(nouvelleDonnees, 32);
}
}
}
 
function $supprimerNoeud(this$static, n_0){
var node_0, node_3, tree;
if ($equals_1($getId(n_0), (node_0 = $getRootNode_1(this$static.arbreMotsCles).getJsObj() , node_0.id === undefined?null:node_0.id.toString()))) {
$wnd.alert("Impossible de supprimer la racine de l'arbre");
}
else {
$removeChild_0($getParentNode(n_0), n_0);
node_3 = n_0.getJsObj();
node_3.destroy();
$supprimerMotCleDansArbre(this$static.iMediateur, n_0, (tree = this$static.arbreMotsCles.getOrCreateJsObj() , $clinit_152() , $Tree_0(new Tree(), tree)));
}
}
 
function getClass_318(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesVue_2_classLit;
}
 
function ArbreMotsClesVue(){
}
 
_ = ArbreMotsClesVue.prototype = new Panel_0();
_.getClass$ = getClass_318;
_.typeId$ = 201;
_.ajoutNoeud = false;
_.arbreMotsCles = null;
_.estInstancie = false;
_.iMediateur = null;
_.modifNoeud = false;
_.motsCleInitialises = false;
_.motsClesEnAttente = null;
_.motsClesEnCours = '';
_.te = null;
_.tfEdit = null;
_.valider = null;
function $ArbreMotsClesVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_314(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesVue$1_2_classLit;
}
 
function onClick_4(node, e){
$stopEvent(e);
$gererClicNoeud(node);
}
 
function onContextMenu_1(node, e){
$stopEvent(e);
$montrerContextMenuArbre(this.this$0.iMediateur, node, e);
}
 
function onDblClick_1(node, e){
this.this$0.modifNoeud = true;
if (!$equals_1($getId(node), 'racine')) {
$startEdit(this.this$0.te, node);
}
}
 
function onMoveNode_0(tree_0, node, oldParent, newParent, index){
var tree;
$deplacerMotCleDansArbre(this.this$0.iMediateur, node, (tree = this.this$0.arbreMotsCles.getOrCreateJsObj() , $clinit_152() , $Tree_0(new Tree(), tree)));
}
 
function onTextChange_0(node, text, oldText){
var nd, usObject, tree, tree_0;
nd = node;
usObject = initDim(_3Ljava_lang_String_2_classLit, 261, 1, 2, 0);
usObject[0] = text;
usObject[1] = dynamicCast($getUserObject(nd), 32)[1];
$setUserObject(nd, usObject);
if (this.this$0.ajoutNoeud) {
$ajouterMotCleDansArbre(this.this$0.iMediateur, nd, (tree = this.this$0.arbreMotsCles.getOrCreateJsObj() , $clinit_152() , $Tree_0(new Tree(), tree)));
this.this$0.ajoutNoeud = false;
}
else {
if (this.this$0.modifNoeud) {
$modifierMotCleDansArbre(this.this$0.iMediateur, nd, (tree_0 = this.this$0.arbreMotsCles.getOrCreateJsObj() , $clinit_152() , $Tree_0(new Tree(), tree_0)));
this.this$0.modifNoeud = false;
}
}
}
 
function ArbreMotsClesVue$1(){
}
 
_ = ArbreMotsClesVue$1.prototype = new TreePanelListenerAdapter();
_.getClass$ = getClass_314;
_.onClick_3 = onClick_4;
_.onContextMenu_0 = onContextMenu_1;
_.onDblClick_0 = onDblClick_1;
_.onMoveNode = onMoveNode_0;
_.onTextChange = onTextChange_0;
_.typeId$ = 0;
_.this$0 = null;
function $ArbreMotsClesVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_316(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesVue$2_2_classLit;
}
 
function onClick_5(button, e){
var tree;
this.this$0.motsClesEnCours = '';
$cascade($getRootNode_1(this.this$0.arbreMotsCles), $ArbreMotsClesVue$2$1(new ArbreMotsClesVue$2$1(), this));
$mettreAjourMotsCles(this.this$0.iMediateur, this.this$0.motsClesEnCours, (tree = this.this$0.arbreMotsCles.getOrCreateJsObj() , $clinit_152() , $Tree_0(new Tree(), tree)));
}
 
function ArbreMotsClesVue$2(){
}
 
_ = ArbreMotsClesVue$2.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_316;
_.onClick_0 = onClick_5;
_.typeId$ = 0;
_.this$0 = null;
function $ArbreMotsClesVue$2$1(this$static, this$1){
this$static.this$1 = this$1;
return this$static;
}
 
function execute_20(node_3){
var tn, usObject, ui;
tn = $getNodeById_2(this.this$1.this$0.arbreMotsCles, $getId(node_3));
usObject = dynamicCast($getUserObject(tn), 32);
$mettreAjourMotsClesId_0(this.this$1.this$0.iMediateur.iModele, usObject[0], usObject[1]);
if (ui = $getUI(tn).getJsObj() , ui.isChecked()) {
this.this$1.this$0.motsClesEnCours += usObject[1] + ',';
}
return true;
}
 
function getClass_315(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesVue$2$1_2_classLit;
}
 
function ArbreMotsClesVue$2$1(){
}
 
_ = ArbreMotsClesVue$2$1.prototype = new Object_0();
_.execute_1 = execute_20;
_.getClass$ = getClass_315;
_.typeId$ = 0;
_.this$1 = null;
function $ArbreMotsClesVue$3(this$static, this$0, val$motsClesIds){
this$static.this$0 = this$0;
this$static.val$motsClesIds = val$motsClesIds;
return this$static;
}
 
function execute_21(node_0){
var i, nodeId, usObject, node, ui_0, ui;
for (i = 0; i < this.val$motsClesIds.length; ++i) {
usObject = dynamicCast($getUserObject(node_0), 32);
nodeId = usObject[1];
if ($equals_1(nodeId, this.val$motsClesIds[i])) {
$toggleCheck((node = $getNodeById_2(this.this$0.arbreMotsCles, nodeId).getJsObj() , ui_0 = node.getUI() , ui_0 === undefined || ui_0 == null?null:($clinit_290() , $TreeNodeUI(new TreeNodeUI(), ui_0))), true);
return true;
}
ui = $getUI($getNodeById_2(this.this$0.arbreMotsCles, $getId(node_0))).getJsObj();
ui.toggleCheck(false);
}
return true;
}
 
function getClass_317(){
return Lorg_tela_1botanica_client_vues_ArbreMotsClesVue$3_2_classLit;
}
 
function ArbreMotsClesVue$3(){
}
 
_ = ArbreMotsClesVue$3.prototype = new Object_0();
_.execute_1 = execute_21;
_.getClass$ = getClass_317;
_.typeId$ = 0;
_.this$0 = null;
_.val$motsClesIds = null;
function $clinit_431(){
$clinit_431 = nullMethod;
$clinit_193();
}
 
function $BarreNotationVue(this$static, noteMax){
$clinit_431();
$Component(this$static);
$setNoteMax(this$static, noteMax);
$setSize_0(this$static, 200, 100);
$setAttribute_2(this$static, 'bodyBorder', false, true, false);
$setAttribute_2(this$static, 'border', false, true, false);
$setCls(this$static, 'x-view-notation');
$ajouterListeners_0(this$static);
return this$static;
}
 
function $afficherNote(this$static){
var i, j;
if (this$static.estNote) {
for (i = 0; i <= this$static.noteEnCours; ++i) {
this$static.etoiles[i].element.src = 'note-on.gif';
}
for (j = this$static.noteEnCours + 1; j < this$static.noteMax; ++j) {
this$static.etoiles[j].element.src = 'note-off.gif';
}
}
else {
for (i = 0; i < this$static.noteMax; ++i) {
this$static.etoiles[i].element.src = 'note-off.gif';
}
}
}
 
function $ajouterListeners_0(this$static){
var i;
for (i = 0; i < this$static.etoiles.length; ++i) {
$addMouseListener(this$static.etoiles[i], $BarreNotationVue$1(new BarreNotationVue$1(), this$static));
$addClickListener_0(this$static.etoiles[i], $BarreNotationVue$2(new BarreNotationVue$2(), this$static));
}
}
 
function $noter(this$static, note){
this$static.noteEnCours = note;
this$static.estNote = true;
$afficherNote(this$static);
}
 
function $rafraichir_4(this$static, nouvelleDonnees){
var note, noteInt;
if (nouvelleDonnees != null) {
note = nouvelleDonnees;
noteInt = __parseAndValidateInt(note[0], 10, -2147483648, 2147483647);
if (noteInt != -1 && noteInt >= 0) {
this$static.noteEnCours = noteInt;
this$static.estNote = true;
$afficherNote(this$static);
}
else {
this$static.estNote = false;
this$static.noteEnCours = 0;
$afficherNote(this$static);
}
}
}
 
function $setNoteMax(this$static, nMax){
var i;
this$static.noteMax = nMax;
this$static.etoiles = initDim(_3Lcom_google_gwt_user_client_ui_Image_2_classLit, 236, 19, this$static.noteMax, 0);
for (i = 0; i < this$static.noteMax; ++i) {
setCheck(this$static.etoiles, i, $Image_0(new Image_0(), 'etoile_vide.jpg'));
setStylePrimaryName(this$static.etoiles[i].getElement(), 'x-view-notation-bar');
$add_3(this$static, this$static.etoiles[i]);
}
}
 
function getClass_321(){
return Lorg_tela_1botanica_client_vues_BarreNotationVue_2_classLit;
}
 
function BarreNotationVue(){
}
 
_ = BarreNotationVue.prototype = new Panel_0();
_.getClass$ = getClass_321;
_.typeId$ = 202;
_.estNote = false;
_.etoiles = null;
_.noteEnCours = 0;
_.noteMax = 0;
function $BarreNotationVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_319(){
return Lorg_tela_1botanica_client_vues_BarreNotationVue$1_2_classLit;
}
 
function onMouseEnter_1(sender){
var enCours, i;
enCours = dynamicCast(sender, 19);
for (i = 0; this.this$0.etoiles[i] != enCours; ++i) {
this.this$0.etoiles[i].element.src = 'note-hover.gif';
}
enCours.element.src = 'note-hover.gif';
}
 
function onMouseLeave_1(sender){
$afficherNote(this.this$0);
}
 
function BarreNotationVue$1(){
}
 
_ = BarreNotationVue$1.prototype = new MouseListenerAdapter();
_.getClass$ = getClass_319;
_.onMouseEnter = onMouseEnter_1;
_.onMouseLeave = onMouseLeave_1;
_.typeId$ = 203;
_.this$0 = null;
function $BarreNotationVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_320(){
return Lorg_tela_1botanica_client_vues_BarreNotationVue$2_2_classLit;
}
 
function onClick_6(sender){
var i;
i = 0;
while (this.this$0.etoiles[i] != dynamicCast(sender, 19)) {
++i;
}
$noter(this.this$0, i);
}
 
function BarreNotationVue$2(){
}
 
_ = BarreNotationVue$2.prototype = new Object_0();
_.getClass$ = getClass_320;
_.onClick = onClick_6;
_.typeId$ = 204;
_.this$0 = null;
function $clinit_432(){
$clinit_432 = nullMethod;
$clinit_204();
}
 
function $BarreOutilsVue(this$static, im){
$clinit_432();
$Component(this$static);
this$static.imageMenu = $MenuImageVue(new MenuImageVue(), im);
$MenuFiltreVue(new MenuFiltreVue());
this$static.idMenu = $MenuIdVue(new MenuIdVue(), im);
this$static.images = $ToolbarMenuButton(new ToolbarMenuButton(), 'Fichiers', this$static.imageMenu);
this$static.utilisateur = $ToolbarMenuButton(new ToolbarMenuButton(), 'Utilisateur', this$static.idMenu);
$addButton_1(this$static, this$static.images);
$addButton_1(this$static, this$static.utilisateur);
return this$static;
}
 
function getClass_322(){
return Lorg_tela_1botanica_client_vues_BarreOutilsVue_2_classLit;
}
 
function BarreOutilsVue(){
}
 
_ = BarreOutilsVue.prototype = new Toolbar();
_.getClass$ = getClass_322;
_.typeId$ = 205;
_.idMenu = null;
_.imageMenu = null;
_.images = null;
_.utilisateur = null;
function $clinit_438(){
$clinit_438 = nullMethod;
$clinit_204();
}
 
function $BarrePaginationObservationVue(this$static, im){
var store, tp, pages, template;
$clinit_438();
$Component(this$static);
this$static.prevPage = $ToolbarButton_1(new ToolbarButton(), '<<');
this$static.suivPage = $ToolbarButton_1(new ToolbarButton(), '>>');
this$static.page = $ToolbarTextItem(new ToolbarTextItem(), 'Page ');
this$static.champPage = $TextField_1(new TextField(), '' + (this$static.pageCourante + 1));
this$static.surTotalPage = $ToolbarTextItem(new ToolbarTextItem(), ' sur ' + this$static.pageTotale);
this$static.afficherNbElem = $ToolbarTextItem(new ToolbarTextItem(), 'Afficher ');
this$static.selecteurTaillePage = $ComboBox(new ComboBox());
this$static.nbElemParPage = $ToolbarTextItem(new ToolbarTextItem(), ' Observations par page ');
this$static.intervalleElements = $ToolbarTextItem(new ToolbarTextItem(), 'Observations ' + this$static.pageCourante * this$static.taillePage + ' sur ' + this$static.nbElement);
this$static.observationMediateur = im;
$addButton_0(this$static, this$static.prevPage);
$addSpacer(this$static);
$addItem(this$static, this$static.page);
$addField(this$static, this$static.champPage);
$addItem(this$static, this$static.surTotalPage);
$addSpacer(this$static);
$addButton_0(this$static, this$static.suivPage);
$setWidth_0(this$static.champPage, 30);
$addSpacer(this$static);
$addItem(this$static, this$static.afficherNbElem);
store = $SimpleStore_0(new SimpleStore(), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['nb_page']), (pages = initValues(_3_3Ljava_lang_String_2_classLit, 267, 32, [initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['100']), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['50']), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['30']), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['20']), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['10'])]) , pages));
$load(store);
tp = $Template(new Template(), '<div class="x-combo-list-item">{nb_page}<div class="x-clear"><\/div><\/div>');
template = tp.getJsObj();
template.compile();
$setTpl(this$static.selecteurTaillePage, tp);
$setStore_0(this$static.selecteurTaillePage, store);
$setWidth_0(this$static.selecteurTaillePage, 40);
$setEditable(this$static.selecteurTaillePage, false);
$addField(this$static, this$static.selecteurTaillePage);
$setValue_0(this$static.selecteurTaillePage, '20');
$setWidth_0(this$static.selecteurTaillePage, 50);
$addItem(this$static, this$static.nbElemParPage);
$addFill(this$static);
$addItem(this$static, this$static.intervalleElements);
$addSpacer(this$static);
$addListener_1(this$static.prevPage, $BarrePaginationObservationVue$1(new BarrePaginationObservationVue$1(), this$static));
$addListener_1(this$static.suivPage, $BarrePaginationObservationVue$2(new BarrePaginationObservationVue$2(), this$static));
$addListener_9(this$static.champPage, $BarrePaginationObservationVue$3(new BarrePaginationObservationVue$3(), this$static));
$addKeyPressListener(this$static.champPage, $BarrePaginationObservationVue$4(new BarrePaginationObservationVue$4(), this$static));
$addListener_8(this$static.selecteurTaillePage, $BarrePaginationObservationVue$5(new BarrePaginationObservationVue$5(), this$static));
return this$static;
}
 
function $rafraichir_5(this$static, nouvelleDonnees){
var page;
if (nouvelleDonnees != null) {
page = nouvelleDonnees;
this$static.pageTotale = page[0];
this$static.pageCourante = page[1];
this$static.taillePage = page[2];
this$static.nbElement = page[3];
if (this$static.pageCourante >= this$static.pageTotale && this$static.pageCourante != 0) {
this$static.pageCourante = this$static.pageTotale - 1;
$changerNumeroPage_1(this$static.observationMediateur, this$static.pageCourante);
}
}
$rafraichirNumeroPage(this$static);
}
 
function $rafraichirNumeroPage(this$static){
var tbi, tbi_0, tbi_1, tbi_2;
tbi = this$static.surTotalPage.jsObj;
tbi.el.innerHTML = ' sur ' + this$static.pageTotale;
if (this$static.nbElement == 0) {
this$static.champPage.setValue_1('0');
tbi_0 = this$static.intervalleElements.jsObj;
tbi_0.el.innerHTML = 'Observations 0 - 0 sur 0';
}
else {
this$static.champPage.setValue_1('' + (this$static.pageCourante + 1));
if (this$static.pageCourante + 1 != this$static.pageTotale) {
tbi_1 = this$static.intervalleElements.jsObj;
tbi_1.el.innerHTML = 'Observations ' + this$static.pageCourante * this$static.taillePage + ' - ' + (this$static.pageCourante + 1) * this$static.taillePage + ' sur ' + this$static.nbElement;
}
else {
tbi_2 = this$static.intervalleElements.jsObj;
tbi_2.el.innerHTML = 'Observations ' + this$static.pageCourante * this$static.taillePage + ' - ' + this$static.nbElement + ' sur ' + this$static.nbElement;
}
}
}
 
function getClass_328(){
return Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue_2_classLit;
}
 
function BarrePaginationObservationVue(){
}
 
_ = BarrePaginationObservationVue.prototype = new Toolbar();
_.getClass$ = getClass_328;
_.typeId$ = 206;
_.nbElement = 0;
_.observationMediateur = null;
_.pageCourante = 0;
_.pageTotale = 1;
_.taillePage = 0;
function $BarrePaginationObservationVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_323(){
return Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$1_2_classLit;
}
 
function onClick_7(button, e){
if (this.this$0.pageCourante > 0) {
--this.this$0.pageCourante;
$rafraichirNumeroPage(this.this$0);
$changerNumeroPage_1(this.this$0.observationMediateur, this.this$0.pageCourante);
}
}
 
function BarrePaginationObservationVue$1(){
}
 
_ = BarrePaginationObservationVue$1.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_323;
_.onClick_0 = onClick_7;
_.typeId$ = 0;
_.this$0 = null;
function $BarrePaginationObservationVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_324(){
return Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$2_2_classLit;
}
 
function onClick_8(button, e){
if (this.this$0.pageCourante < this.this$0.pageTotale - 1) {
++this.this$0.pageCourante;
$rafraichirNumeroPage(this.this$0);
$changerNumeroPage_1(this.this$0.observationMediateur, this.this$0.pageCourante);
}
}
 
function BarrePaginationObservationVue$2(){
}
 
_ = BarrePaginationObservationVue$2.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_324;
_.onClick_0 = onClick_8;
_.typeId$ = 0;
_.this$0 = null;
function $BarrePaginationObservationVue$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_325(){
return Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$3_2_classLit;
}
 
function onFocus_0(field){
$focus_0(this.this$0.champPage, true);
}
 
function onSpecialKey_0(field_0, e){
var $e0, nouvellePage, field;
if ($getKey(e) == ($clinit_122() , ENTER)) {
nouvellePage = this.this$0.pageCourante;
try {
nouvellePage = __parseAndValidateInt((field = this.this$0.champPage.getOrCreateJsObj() , field.getRawValue()), 10, -2147483648, 2147483647);
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 73)) {
$rafraichirNumeroPage(this.this$0);
$focus_0(this.this$0.champPage, true);
return;
}
else
throw $e0;
}
if (nouvellePage != this.this$0.pageCourante + 1 && nouvellePage > 0 && nouvellePage <= this.this$0.pageTotale) {
this.this$0.pageCourante = nouvellePage - 1;
$changerNumeroPage_1(this.this$0.observationMediateur, this.this$0.pageCourante);
}
else {
$rafraichirNumeroPage(this.this$0);
$focus_0(this.this$0.champPage, true);
}
}
}
 
function BarrePaginationObservationVue$3(){
}
 
_ = BarrePaginationObservationVue$3.prototype = new TextFieldListenerAdapter();
_.getClass$ = getClass_325;
_.onFocus = onFocus_0;
_.onSpecialKey = onSpecialKey_0;
_.typeId$ = 0;
_.this$0 = null;
function $BarrePaginationObservationVue$4(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_22(e){
if (null != String.fromCharCode($getCharCode(e) & 65535).match(/\d/)) {
return;
}
if ($getKey(e) == ($clinit_122() , ENTER) || $getKey(e) == BACKSPACE) {
return;
}
else {
$rafraichirNumeroPage(this.this$0);
$stopEvent(e);
}
}
 
function getClass_326(){
return Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$4_2_classLit;
}
 
function BarrePaginationObservationVue$4(){
}
 
_ = BarrePaginationObservationVue$4.prototype = new Object_0();
_.execute_0 = execute_22;
_.getClass$ = getClass_326;
_.typeId$ = 0;
_.this$0 = null;
function $BarrePaginationObservationVue$5(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_327(){
return Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$5_2_classLit;
}
 
function onSelect_0(comboBox, record_0, index){
var nouvelleTaillePage, nouvelleTaillePageString, record, value;
nouvelleTaillePageString = (record = $getAt(comboBox.store_0, index).getJsObj() , value = record.get('nb_page') , value === undefined || (value == null || value === '')?null:value.toString());
nouvelleTaillePage = __parseAndValidateInt(nouvelleTaillePageString, 10, -2147483648, 2147483647);
if (nouvelleTaillePage != this.this$0.taillePage) {
$changerTaillePage_1(this.this$0.observationMediateur, nouvelleTaillePage);
}
$setValue_0(comboBox, nouvelleTaillePageString);
}
 
function BarrePaginationObservationVue$5(){
}
 
_ = BarrePaginationObservationVue$5.prototype = new ComboBoxListenerAdapter();
_.getClass$ = getClass_327;
_.onSelect = onSelect_0;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_440(){
$clinit_440 = nullMethod;
$clinit_193();
}
 
function $BarreRechercheFiltreVue(this$static, im){
var labelRecherche;
$clinit_440();
$Component(this$static);
this$static.iMediateur = im;
labelRecherche = $Label(new Label(), 'Commentaires :');
this$static.champRecherche = $TextField(new TextField());
$add_3(this$static, labelRecherche);
$add_5(this$static, this$static.champRecherche);
$setPaddings(this$static, 5, 5, 5, 5);
$setAttribute_2(this$static, 'border', false, true, false);
$setAttribute_2(this$static, 'autoWidth', true, true, false);
$setAttribute_2(this$static, 'collapsible', true, true, false);
$addKeyListener_0(this$static.champRecherche, ($clinit_122() , ENTER), $BarreRechercheFiltreVue$1(new BarreRechercheFiltreVue$1(), this$static));
return this$static;
}
 
function $renvoyerValeursAFiltrer_0(this$static){
var valeurFiltre;
this$static.motsAChercher = $getValueAsString(this$static.champRecherche);
valeurFiltre = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_meta_comment', this$static.motsAChercher]);
return valeurFiltre;
}
 
function $valider_1(this$static){
this$static.motsAChercher = $getValueAsString(this$static.champRecherche);
}
 
function getClass_330(){
return Lorg_tela_1botanica_client_vues_BarreRechercheFiltreVue_2_classLit;
}
 
function BarreRechercheFiltreVue(){
}
 
_ = BarreRechercheFiltreVue.prototype = new Panel_0();
_.getClass$ = getClass_330;
_.typeId$ = 207;
_.champRecherche = null;
_.iMediateur = null;
_.motsAChercher = '';
function $BarreRechercheFiltreVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_329(){
return Lorg_tela_1botanica_client_vues_BarreRechercheFiltreVue$1_2_classLit;
}
 
function onKey_0(key, e){
$valider_1(this.this$0);
$obtenirPhotoGalerie(this.this$0.iMediateur);
}
 
function BarreRechercheFiltreVue$1(){
}
 
_ = BarreRechercheFiltreVue$1.prototype = new Object_0();
_.getClass$ = getClass_329;
_.onKey = onKey_0;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_441(){
$clinit_441 = nullMethod;
$clinit_193();
}
 
function $DateFiltreVue(this$static){
var labelRecherche;
$clinit_441();
$Component(this$static);
$setPaddings(this$static, 5, 5, 5, 5);
$setAttribute_2(this$static, 'collapsible', true, true, false);
$setAttribute_2(this$static, 'border', false, true, false);
labelRecherche = $Label(new Label(), 'Date :');
$add_3(this$static, labelRecherche);
this$static.filtreDate = $DateField(new DateField());
$setAttribute_2(this$static.filtreDate, 'autoWidth', true, true, false);
$setAttribute_1(this$static.filtreDate, 'format', 'd/m/Y', true, true);
$add_5(this$static, this$static.filtreDate);
return this$static;
}
 
function $renvoyerValeursAFiltrer_1(this$static){
var dateFormatee, dates, dt, valeursFiltres, field_0, field;
if (field_0 = this$static.filtreDate.getOrCreateJsObj() , field_0.isValid()) {
dt = (field = this$static.filtreDate.getOrCreateJsObj() , field.getRawValue());
dates = $split(dt, '/', 0);
if (dates.length == 3) {
dateFormatee = dates[2] + '-' + dates[1] + '-' + dates[0];
valeursFiltres = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_meta_date', dateFormatee]);
return valeursFiltres;
}
}
valeursFiltres = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_meta_date', '']);
return valeursFiltres;
}
 
function getClass_331(){
return Lorg_tela_1botanica_client_vues_DateFiltreVue_2_classLit;
}
 
function DateFiltreVue(){
}
 
_ = DateFiltreVue.prototype = new Panel_0();
_.getClass$ = getClass_331;
_.typeId$ = 208;
_.filtreDate = null;
function $clinit_443(){
$clinit_443 = nullMethod;
$clinit_193();
}
 
function $EtatConnexionVue(this$static, cm){
$clinit_443();
$Component(this$static);
this$static.carnetEnLigneMediateur = cm;
$setSize_0(this$static, 800, 20);
$setAttribute_2(this$static, 'bodyBorder', false, true, false);
$setAttribute_2(this$static, 'border', false, true, false);
this$static.labelEtatConnexion = $HTML_0(new HTML(), '', false);
$add_3(this$static, this$static.labelEtatConnexion);
$addClickListener_1(this$static.labelEtatConnexion, $EtatConnexionVue$1(new EtatConnexionVue$1(), this$static));
return this$static;
}
 
function $setEtat(this$static, text, connecte){
this$static.labelEtatConnexion.element.innerHTML = text || '';
this$static.connecte = connecte;
}
 
function getClass_333(){
return Lorg_tela_1botanica_client_vues_EtatConnexionVue_2_classLit;
}
 
function EtatConnexionVue(){
}
 
_ = EtatConnexionVue.prototype = new Panel_0();
_.getClass$ = getClass_333;
_.typeId$ = 209;
_.carnetEnLigneMediateur = null;
_.connecte = false;
_.labelEtatConnexion = null;
function $EtatConnexionVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_332(){
return Lorg_tela_1botanica_client_vues_EtatConnexionVue$1_2_classLit;
}
 
function onClick_9(sender){
if (this.this$0.connecte) {
$deconnecterUtilisateur(this.this$0.carnetEnLigneMediateur);
}
else {
$afficherDialogueConnexion(this.this$0.carnetEnLigneMediateur);
}
}
 
function EtatConnexionVue$1(){
}
 
_ = EtatConnexionVue$1.prototype = new Object_0();
_.getClass$ = getClass_332;
_.onClick = onClick_9;
_.typeId$ = 210;
_.this$0 = null;
function $clinit_448(){
$clinit_448 = nullMethod;
$clinit_74();
}
 
function $FormulaireDeConnexionVue(this$static, cm){
var boutonAnnuler, boutonOK, panneauFormulaire, panneauPrincipalDialogue, td_0, rowStyles, td, tr;
$clinit_448();
this$static.element = $doc.createElement('div');
this$static.animType = ($clinit_93() , CENTER);
this$static.resizeAnimation = $PopupPanel$ResizeAnimation(new PopupPanel$ResizeAnimation(), this$static);
this$static.element.appendChild($createElement_0());
$setPopupPosition(this$static, 0, 0);
this$static.element['className'] = 'gwt-PopupPanel';
$getContainerElement($getFirstChildElement(this$static.element))['className'] = 'popupContent';
this$static.autoHide = false;
this$static.modal = true;
rowStyles = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['dialog' + 'Top', 'dialog' + 'Middle', 'dialog' + 'Bottom']);
this$static.decPanel = $DecoratorPanel(new DecoratorPanel(), rowStyles, 1);
this$static.decPanel.getElement()['className'] = '';
setStylePrimaryName(this$static.element, 'gwt-DecoratedPopupPanel');
$setWidget(this$static, this$static.decPanel);
setStyleName($getContainerElement($getFirstChildElement(this$static.element)), 'popupContent', false);
setStyleName(this$static.decPanel.containerElem, 'dialog' + 'Content', true);
this$static.caption = $HTML(new HTML());
td_0 = (tr = $getChild(this$static.decPanel.tbody, 0) , td = $getChild(tr, 1) , $getFirstChildElement(td));
td_0.appendChild(this$static.caption.element);
$adopt(this$static, this$static.caption);
this$static.caption.getElement()['className'] = 'Caption';
$addMouseListener_0(this$static.caption, this$static);
this$static.element['className'] = 'gwt-DialogBox';
this$static.carnetEnLigneMediateur = cm;
panneauPrincipalDialogue = $Panel(new Panel_0());
panneauFormulaire = $FormPanel_0(new FormPanel(), ($clinit_133() , RIGHT_0));
$setTitle(panneauFormulaire, 'Connexion');
$setWidth_0(panneauFormulaire, 350);
$setAttribute(panneauFormulaire, 'labelWidth', 100, true, false);
this$static.email = $TextField_2(new TextField(), 'E-mail', 'email', 200);
$setAttribute_2(this$static.email, 'allowBlank', false, true, true);
$add_5(panneauFormulaire, this$static.email);
this$static.motDePasse = $TextField_2(new TextField(), 'Mot de passe', 'motDePasse', 200);
$setAttribute_2(this$static.motDePasse, 'allowBlank', false, true, true);
$setPassword(this$static.motDePasse, true);
$add_5(panneauFormulaire, this$static.motDePasse);
boutonOK = $Button_1(new Button_0(), 'Ok');
$addButton(panneauFormulaire, boutonOK);
boutonAnnuler = $Button_1(new Button_0(), 'Annuler');
$addButton(panneauFormulaire, boutonAnnuler);
$addListener_1(boutonOK, $FormulaireDeConnexionVue$1(new FormulaireDeConnexionVue$1(), this$static));
$addListener_1(boutonAnnuler, $FormulaireDeConnexionVue$2(new FormulaireDeConnexionVue$2(), this$static));
$addKeyListener_0(this$static.email, ($clinit_122() , ENTER), $FormulaireDeConnexionVue$3(new FormulaireDeConnexionVue$3(), this$static));
$addKeyListener_0(this$static.motDePasse, ENTER, $FormulaireDeConnexionVue$4(new FormulaireDeConnexionVue$4(), this$static));
$add_5(panneauPrincipalDialogue, panneauFormulaire);
$setWidget_0(this$static.decPanel, panneauPrincipalDialogue);
$maybeUpdateSize(this$static);
return this$static;
}
 
function getClass_338(){
return Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue_2_classLit;
}
 
function onKeyDownPreview_0(key, modifiers){
if (key == 27) {
$hide(this);
}
return true;
}
 
function FormulaireDeConnexionVue(){
}
 
_ = FormulaireDeConnexionVue.prototype = new DialogBox();
_.getClass$ = getClass_338;
_.onKeyDownPreview = onKeyDownPreview_0;
_.typeId$ = 211;
_.carnetEnLigneMediateur = null;
_.email = null;
_.motDePasse = null;
function $FormulaireDeConnexionVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_334(){
return Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue$1_2_classLit;
}
 
function onClick_10(button, e){
$connecterUtilisateur(this.this$0.carnetEnLigneMediateur, $getValueAsString(this.this$0.email), $getValueAsString(this.this$0.motDePasse));
}
 
function FormulaireDeConnexionVue$1(){
}
 
_ = FormulaireDeConnexionVue$1.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_334;
_.onClick_0 = onClick_10;
_.typeId$ = 0;
_.this$0 = null;
function $FormulaireDeConnexionVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_335(){
return Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue$2_2_classLit;
}
 
function onClick_11(button, e){
$hide(this.this$0);
}
 
function FormulaireDeConnexionVue$2(){
}
 
_ = FormulaireDeConnexionVue$2.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_335;
_.onClick_0 = onClick_11;
_.typeId$ = 0;
_.this$0 = null;
function $FormulaireDeConnexionVue$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_336(){
return Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue$3_2_classLit;
}
 
function onKey_1(key, e){
$connecterUtilisateur(this.this$0.carnetEnLigneMediateur, $getValueAsString(this.this$0.email), $getValueAsString(this.this$0.motDePasse));
}
 
function FormulaireDeConnexionVue$3(){
}
 
_ = FormulaireDeConnexionVue$3.prototype = new Object_0();
_.getClass$ = getClass_336;
_.onKey = onKey_1;
_.typeId$ = 0;
_.this$0 = null;
function $FormulaireDeConnexionVue$4(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_337(){
return Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue$4_2_classLit;
}
 
function onKey_2(key, e){
$connecterUtilisateur(this.this$0.carnetEnLigneMediateur, $getValueAsString(this.this$0.email), $getValueAsString(this.this$0.motDePasse));
}
 
function FormulaireDeConnexionVue$4(){
}
 
_ = FormulaireDeConnexionVue$4.prototype = new Object_0();
_.getClass$ = getClass_337;
_.onKey = onKey_2;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_454(){
$clinit_454 = nullMethod;
$clinit_193();
}
 
function $FormulaireSaisieObservationVue(this$static, obs){
var panneauFormulaire, panneauIntermediaire, panneauPremierColonne, panneauSecondeColonne, listenerConfigCommune, listenerConfigEspece;
$clinit_454();
$Component(this$static);
this$static.boutonOK = $Button_1(new Button_0(), 'Ok');
this$static.boutonAnnuler = $Button_1(new Button_0(), 'Annuler');
this$static.observationMediateur = obs;
$setAttribute_2(this$static, 'header', true, false, false);
$setTitle(this$static, 'Saisie');
$setAttribute_2(this$static, 'collapsible', true, true, false);
panneauFormulaire = $FormPanel_0(new FormPanel(), ($clinit_133() , RIGHT_0));
$setAttribute_2(panneauFormulaire, 'border', false, true, false);
panneauIntermediaire = $Panel(new Panel_0());
panneauIntermediaire.setLayout($ColumnLayout(new ColumnLayout()));
$setAttribute_2(panneauIntermediaire, 'border', false, true, false);
panneauPremierColonne = $Panel(new Panel_0());
panneauPremierColonne.setLayout($FormLayout(new FormLayout()));
$setAttribute_2(panneauPremierColonne, 'border', false, true, false);
panneauSecondeColonne = $Panel(new Panel_0());
panneauSecondeColonne.setLayout($FormLayout(new FormLayout()));
$setAttribute_2(panneauSecondeColonne, 'border', false, true, false);
this$static.commune = $ComboBox_1(new ComboBox(), 'Commune', 'commune', 275);
$setTpl_0(this$static.commune, '<div class="search-item-commune">{commune}<\/div>');
$setAttribute_1(this$static.commune, 'mode', ($clinit_228() , REMOTE).mode, true, true);
$setAttribute_1(this$static.commune, 'itemSelector', 'div.search-item-commune', true, false);
$setAttribute_2(this$static.commune, 'typeAhead', true, true, false);
$setAttribute_1(this$static.commune, 'loadingText', 'Recherche...', true, true);
$setAttribute_2(this$static.commune, 'hideTrigger', true, true, false);
$add_5(panneauPremierColonne, this$static.commune);
this$static.station = $TextField_2(new TextField(), 'Station', 'station', 275);
$setAttribute_2(this$static.station, 'allowBlank', true, true, true);
$add_5(panneauPremierColonne, this$static.station);
this$static.date = $DateField_1(new DateField(), 'Date', 'date', 100);
$setAttribute_2(this$static.date, 'allowBlank', true, true, true);
$setAttribute_1(this$static.date, 'format', 'd/m/Y', true, true);
$add_5(panneauPremierColonne, this$static.date);
this$static.espece = $ComboBox_1(new ComboBox(), 'Esp\xE8ce', 'nom', 275);
$setTpl_0(this$static.espece, '<div class="search-item-espece">{nom}<\/div>');
$setAttribute_1(this$static.espece, 'mode', REMOTE.mode, true, true);
$setAttribute_1(this$static.espece, 'itemSelector', 'div.search-item-espece', true, false);
$setAttribute_2(this$static.espece, 'typeAhead', true, true, false);
$setAttribute_1(this$static.espece, 'loadingText', 'Recherche...', true, true);
$setAttribute_2(this$static.espece, 'hideTrigger', true, true, false);
$add_5(panneauPremierColonne, this$static.espece);
this$static.comment = $TextField_2(new TextField(), 'Notes', 'comment', 275);
$setAttribute_2(this$static.comment, 'allowBlank', true, true, true);
$add_5(panneauPremierColonne, this$static.comment);
this$static.lieudit = $TextField_2(new TextField(), 'Lieu-dit', 'lieudit', 275);
$setAttribute_2(this$static.lieudit, 'allowBlank', true, true, true);
$add_5(panneauSecondeColonne, this$static.lieudit);
this$static.milieu = $TextField_2(new TextField(), 'Milieu', 'milieu', 275);
$setAttribute_2(this$static.milieu, 'allowBlank', true, true, true);
$add_5(panneauSecondeColonne, this$static.milieu);
$add_6(panneauIntermediaire, panneauPremierColonne, $ColumnLayoutData(new ColumnLayoutData(), 0.5));
$add_6(panneauIntermediaire, panneauSecondeColonne, $ColumnLayoutData(new ColumnLayoutData(), 0.5));
$add_5(panneauFormulaire, panneauIntermediaire);
$addButton(panneauFormulaire, this$static.boutonOK);
$addButton(panneauFormulaire, this$static.boutonAnnuler);
$add_5(this$static, panneauFormulaire);
$setAttribute_2(this$static, 'autoHeight', true, true, false);
$addListener_8(this$static.commune, $FormulaireSaisieObservationVue$1(new FormulaireSaisieObservationVue$1(), this$static));
listenerConfigCommune = $ListenerConfig(new ListenerConfig());
listenerConfigCommune.jsObj['delay'] = 10;
listenerConfigCommune.jsObj['stopPropagation'] = false;
listenerConfigCommune.jsObj['stopEvent'] = false;
$addKeyPressListener_0(this$static.commune, $FormulaireSaisieObservationVue$2(new FormulaireSaisieObservationVue$2(), this$static), listenerConfigCommune);
$addListener_8(this$static.espece, $FormulaireSaisieObservationVue$3(new FormulaireSaisieObservationVue$3(), this$static));
listenerConfigEspece = $ListenerConfig(new ListenerConfig());
listenerConfigEspece.jsObj['delay'] = 10;
listenerConfigEspece.jsObj['stopPropagation'] = false;
listenerConfigEspece.jsObj['stopEvent'] = false;
$addKeyPressListener_0(this$static.espece, $FormulaireSaisieObservationVue$4(new FormulaireSaisieObservationVue$4(), this$static), listenerConfigEspece);
$addListener_1(this$static.boutonOK, new FormulaireSaisieObservationVue$5());
return this$static;
}
 
function $obtenirListeReferentielCommune_1(this$static){
var com;
com = $replaceAll($getValueAsString(this$static.commune), ' ', '/');
com = $replaceAll(com, '%', '');
$obtenirListeReferentielCommune_0(this$static.observationMediateur.observationModele, this$static, com);
}
 
function $obtenirListeReferentielNom_1(this$static){
var esp;
esp = $replaceAll($getValueAsString(this$static.espece), ' ', '/');
esp = $replaceAll(esp, '%', '');
$obtenirListeReferentielNom_0(this$static.observationMediateur.observationModele, this$static, esp);
}
 
function $rafraichir_6(this$static, nouvelleDonnees){
var communeData, data, dataProxy, defCommune, defDepartement, defNom, defNumeroNom, defTab, i, it, nomData, rd, reader, ref, store, entrySet, outerIter, entry, entrySet_0, outerIter_0, entry_0;
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 74)) {
data = dynamicCast(nouvelleDonnees, 74);
communeData = initDims_0([_3_3Ljava_lang_Object_2_classLit, _3Ljava_lang_Object_2_classLit], [266, 260], [31, 0], [data.size, 2], 0, 2, 0);
i = 0;
for (it = (outerIter = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), (entrySet = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), data) , $AbstractMap$1(new AbstractMap$1(), data, entrySet)).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter)); $hasNext_0(it.val$outerIter.iter);) {
ref = dynamicCast($get_2(data, (entry = $next_0(it.val$outerIter) , entry.getKey_0())), 75);
setCheck(communeData[i], 0, ref.commune);
setCheck(communeData[i], 1, ref.departement);
++i;
}
defCommune = $StringFieldDef(new StringFieldDef(), 'commune');
defDepartement = $StringFieldDef(new StringFieldDef(), 'departement');
defTab = initValues(_3Lcom_gwtext_client_data_FieldDef_2_classLit, 247, 37, [defCommune, defDepartement]);
rd = $RecordDef(new RecordDef(), defTab);
dataProxy = $MemoryProxy(new MemoryProxy(), communeData);
reader = $ArrayReader_0(new ArrayReader(), rd);
store = $Store_1(new Store(), dataProxy, reader);
$load(store);
$setStore_0(this$static.commune, store);
}
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 76)) {
data = dynamicCast(nouvelleDonnees, 76);
nomData = initDims_0([_3_3Ljava_lang_Object_2_classLit, _3Ljava_lang_Object_2_classLit], [266, 260], [31, 0], [data.size, 2], 0, 2, 0);
i = 0;
for (it = (outerIter_0 = $AbstractHashMap$EntrySetIterator(new AbstractHashMap$EntrySetIterator(), (entrySet_0 = $AbstractHashMap$EntrySet(new AbstractHashMap$EntrySet(), data) , $AbstractMap$1(new AbstractMap$1(), data, entrySet_0)).val$entrySet.this$0) , $AbstractMap$1$1(new AbstractMap$1$1(), outerIter_0)); $hasNext_0(it.val$outerIter.iter);) {
ref = dynamicCast($get_2(data, (entry_0 = $next_0(it.val$outerIter) , entry_0.getKey_0())), 77);
setCheck(nomData[i], 0, ref.nom);
setCheck(nomData[i], 1, ref.numeroNom);
++i;
}
defNom = $StringFieldDef(new StringFieldDef(), 'nom');
defNumeroNom = $StringFieldDef(new StringFieldDef(), 'numeroNom');
defTab = initValues(_3Lcom_gwtext_client_data_FieldDef_2_classLit, 247, 37, [defNom, defNumeroNom]);
rd = $RecordDef(new RecordDef(), defTab);
dataProxy = $MemoryProxy(new MemoryProxy(), nomData);
reader = $ArrayReader_0(new ArrayReader(), rd);
store = $Store_1(new Store(), dataProxy, reader);
$load(store);
$setStore_0(this$static.espece, store);
}
}
 
function getClass_344(){
return Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue_2_classLit;
}
 
function FormulaireSaisieObservationVue(){
}
 
_ = FormulaireSaisieObservationVue.prototype = new Panel_0();
_.getClass$ = getClass_344;
_.typeId$ = 212;
_.comment = null;
_.commune = null;
_.date = null;
_.espece = null;
_.lieudit = null;
_.milieu = null;
_.observationMediateur = null;
_.selectionCommune = false;
_.selectionEspece = false;
_.station = null;
function $FormulaireSaisieObservationVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_339(){
return Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$1_2_classLit;
}
 
function onSelect_1(comboBox, record, index){
$setValue_0(this.this$0.commune, $getAsString(record, 'commune'));
this.this$0.selectionCommune = true;
}
 
function FormulaireSaisieObservationVue$1(){
}
 
_ = FormulaireSaisieObservationVue$1.prototype = new ComboBoxListenerAdapter();
_.getClass$ = getClass_339;
_.onSelect = onSelect_1;
_.typeId$ = 0;
_.this$0 = null;
function $FormulaireSaisieObservationVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_23(e){
switch ($getKey(e)) {
case 18:
case 17:
case 40:
case 35:
case 27:
case 36:
case 37:
case 34:
case 33:
case 39:
case 16:
case 9:
case 38:
break;
case 13:
if (this.this$0.selectionCommune) {
this.this$0.selectionCommune = false;
}
else {
}
 
break;
default:$obtenirListeReferentielCommune_1(this.this$0);
}
}
 
function getClass_340(){
return Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$2_2_classLit;
}
 
function FormulaireSaisieObservationVue$2(){
}
 
_ = FormulaireSaisieObservationVue$2.prototype = new Object_0();
_.execute_0 = execute_23;
_.getClass$ = getClass_340;
_.typeId$ = 0;
_.this$0 = null;
function $FormulaireSaisieObservationVue$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_341(){
return Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$3_2_classLit;
}
 
function onSelect_2(comboBox, record, index){
$setValue_0(this.this$0.espece, $getAsString(record, 'nom'));
this.this$0.selectionEspece = true;
}
 
function FormulaireSaisieObservationVue$3(){
}
 
_ = FormulaireSaisieObservationVue$3.prototype = new ComboBoxListenerAdapter();
_.getClass$ = getClass_341;
_.onSelect = onSelect_2;
_.typeId$ = 0;
_.this$0 = null;
function $FormulaireSaisieObservationVue$4(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_24(e){
switch ($getKey(e)) {
case 18:
case 17:
case 40:
case 35:
case 27:
case 36:
case 37:
case 34:
case 33:
case 39:
case 16:
case 9:
case 38:
break;
case 13:
if (this.this$0.selectionEspece) {
this.this$0.selectionEspece = false;
}
else {
}
 
break;
default:$obtenirListeReferentielNom_1(this.this$0);
}
}
 
function getClass_342(){
return Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$4_2_classLit;
}
 
function FormulaireSaisieObservationVue$4(){
}
 
_ = FormulaireSaisieObservationVue$4.prototype = new Object_0();
_.execute_0 = execute_24;
_.getClass$ = getClass_342;
_.typeId$ = 0;
_.this$0 = null;
function getClass_343(){
return Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$5_2_classLit;
}
 
function onClick_12(button, e){
}
 
function FormulaireSaisieObservationVue$5(){
}
 
_ = FormulaireSaisieObservationVue$5.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_343;
_.onClick_0 = onClick_12;
_.typeId$ = 0;
function $clinit_459(){
$clinit_459 = nullMethod;
$clinit_193();
}
 
function $GalerieImageVue(this$static, im){
$clinit_459();
$Component(this$static);
$setTitle(this$static, 'Galerie');
this$static.iMediateur = im;
$addListener_4(this$static, $GalerieImageVue$1(new GalerieImageVue$1(), this$static));
this$static.pt = $pageToolBarVue(new pageToolBarVue(), im);
$setAttribute_0(this$static, 'bbar', $getOrCreateJsObj(this$static.pt), false, false);
return this$static;
}
 
function $getIdSelectionnees(this$static){
var i, id_selection, selection, taille, dv, records;
selection = (dv = this$static.dView.getOrCreateJsObj() , records = dv.getSelectedRecords() , convertFromNativeRecordsArray(records));
taille = selection.length;
id_selection = initDim(_3Ljava_lang_String_2_classLit, 261, 1, taille, 0);
for (i = 0; i < selection.length; ++i) {
id_selection[i] = $getAsString(selection[i], 'num_image');
}
return id_selection;
}
 
function $initialiser(this$static){
var defAppImage, defDatImage, defLieImage, defNumImage, defTab, defUrlImage, defUrlImageM, defUrlImageS, rd, template, dtc;
template = $XTemplate(new XTemplate(), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ["<tpl for='.'>", "<div class='thumb-wrap' id='{num_image}'>", "<div class='thumb'><img src='{url_image_M}' title='{num_image}'><\/div>", '<span>{nom}<\/span><\/div>', '<\/tpl>', "<div class='x-clear'><\/div>"]));
$compile_0(template);
this$static.dView = $GalerieImageVue$3(new GalerieImageVue$3(), 'div.thumb-wrap');
$setAttribute_0(this$static.dView, 'tpl', template.jsObj, true, true);
$setAttribute_2(this$static, 'autoScroll', true, true, false);
$setAttribute_2(this$static.dView, 'autoHeight', true, true, false);
$setAttribute_2(this$static.dView, 'multiSelect', true, true, false);
$setAttribute_1(this$static.dView, 'overClass', 'x-view-over', true, false);
$setAttribute_1(this$static.dView, 'emptyText', 'Aucune image \xE0 afficher', true, true);
defNumImage = $IntegerFieldDef(new IntegerFieldDef(), 'num_image');
defDatImage = $StringFieldDef(new StringFieldDef(), 'dat_image');
defLieImage = $StringFieldDef(new StringFieldDef(), 'lie_image');
defAppImage = $StringFieldDef(new StringFieldDef(), 'app_image');
defUrlImageS = $StringFieldDef(new StringFieldDef(), 'url_image_S');
defUrlImageM = $StringFieldDef(new StringFieldDef(), 'url_image_M');
defUrlImage = $StringFieldDef(new StringFieldDef(), 'url_image');
defTab = initValues(_3Lcom_gwtext_client_data_FieldDef_2_classLit, 247, 37, [defNumImage, defDatImage, defLieImage, defAppImage, defUrlImageS, defUrlImageM, defUrlImage]);
rd = $RecordDef(new RecordDef(), defTab);
this$static.st = $Store_2(new Store(), rd);
$setStore(this$static.dView, this$static.st);
$setAttribute_1(this$static.dView, 'loadingText', 'chargement', true, false);
$addListener_5(this$static.dView, $GalerieImageVue$2(new GalerieImageVue$2(), this$static));
dtc = $DropTargetConfig(new DropTargetConfig());
dtc.jsObj['ddGroup'] = 'DragGroupName';
$GalerieImageVue$4(new GalerieImageVue$4(), this$static, dtc, this$static);
$add_5(this$static, this$static.dView);
$obtenirPhotoGalerie(this$static.iMediateur);
this$static.estInstancie = true;
}
 
function $rafraichir_7(this$static, nouvelleDonnees, repandreRafraichissement){
var store;
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 61)) {
this$static.st = dynamicCast(nouvelleDonnees, 61);
store = this$static.st.getJsObj();
store.load();
$setStore(this$static.dView, this$static.st);
$refresh(this$static.dView);
}
if (repandreRafraichissement) {
$synchroniserDonneesZoomListeGalerie(this$static.iMediateur, nouvelleDonnees, this$static);
}
if (!this$static.estInstancie) {
this$static.estInstancie = true;
}
}
 
function getClass_349(){
return Lorg_tela_1botanica_client_vues_GalerieImageVue_2_classLit;
}
 
function getIdSelectionnees(){
return $getIdSelectionnees(this);
}
 
function GalerieImageVue(){
}
 
_ = GalerieImageVue.prototype = new Panel_0();
_.getClass$ = getClass_349;
_.getIdSelectionnees = getIdSelectionnees;
_.typeId$ = 213;
_.dView = null;
_.estInstancie = false;
_.iMediateur = null;
_.pt = null;
_.st = null;
function $GalerieImageVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_345(){
return Lorg_tela_1botanica_client_vues_GalerieImageVue$1_2_classLit;
}
 
function onShow_1(component){
if (!this.this$0.estInstancie) {
$initialiser(this.this$0);
}
}
 
function GalerieImageVue$1(){
}
 
_ = GalerieImageVue$1.prototype = new ContainerListenerAdapter();
_.getClass$ = getClass_345;
_.onShow = onShow_1;
_.typeId$ = 0;
_.this$0 = null;
function $GalerieImageVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_346(){
return Lorg_tela_1botanica_client_vues_GalerieImageVue$2_2_classLit;
}
 
function onClick_13(source, index, node, e){
$clicGalerieImage(this.this$0.iMediateur, node, e);
}
 
function onContextMenu_2(source, index, node, e){
$stopEvent(e);
$montrerContextMenu(this.this$0.iMediateur, e);
}
 
function onDblClick_2(source, index, node, e){
$clicGalerieImage(this.this$0.iMediateur, node, e);
}
 
function onSelectionChange_1(view, selections){
if (selections.length <= 0) {
$aucuneSelection(this.this$0.iMediateur);
}
else {
$selection(this.this$0.iMediateur);
$synchroniserSelection(this.this$0.iMediateur, 'galerie');
}
}
 
function GalerieImageVue$2(){
}
 
_ = GalerieImageVue$2.prototype = new DataViewListenerAdapter();
_.getClass$ = getClass_346;
_.onClick_1 = onClick_13;
_.onContextMenu = onContextMenu_2;
_.onDblClick = onDblClick_2;
_.onSelectionChange = onSelectionChange_1;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_457(){
$clinit_457 = nullMethod;
$clinit_187();
}
 
function $GalerieImageVue$3(this$static, $anonymous0){
$clinit_457();
$Component(this$static);
$setAttribute_1(this$static, 'itemSelector', $anonymous0, true, false);
return this$static;
}
 
function getClass_347(){
return Lorg_tela_1botanica_client_vues_GalerieImageVue$3_2_classLit;
}
 
function prepareData_0(data){
var ret;
$setProperty_0(data, 'shortName', $wnd.Ext.util.Format.ellipsis((ret = data.jsObj['num_image'] , ret === undefined?null:String(ret)), 15));
}
 
function GalerieImageVue$3(){
}
 
_ = GalerieImageVue$3.prototype = new DataView();
_.getClass$ = getClass_347;
_.prepareData_0 = prepareData_0;
_.typeId$ = 214;
function $clinit_458(){
$clinit_458 = nullMethod;
$clinit_162();
}
 
function $GalerieImageVue$4(this$static, $anonymous0, $anonymous1, this$0){
$clinit_458();
this$static.this$0 = this$0;
$DragDrop_0(this$static, $anonymous0, $anonymous1);
return this$static;
}
 
function getClass_348(){
return Lorg_tela_1botanica_client_vues_GalerieImageVue$4_2_classLit;
}
 
function notifyDrop_0(source, e, data){
var dd;
if (data != null && canCast(data.typeId$, 62)) {
return $lierObsDD(this.this$0.iMediateur, e, data, (dd = this.getJsObj() , dd.id));
}
return false;
}
 
function notifyOver_0(source, e, data){
return 'x-dd-drop-ok';
}
 
function GalerieImageVue$4(){
}
 
_ = GalerieImageVue$4.prototype = new DropTarget();
_.getClass$ = getClass_348;
_.notifyDrop_0 = notifyDrop_0;
_.notifyOver_0 = notifyOver_0;
_.typeId$ = 215;
_.this$0 = null;
function $clinit_470(){
$clinit_470 = nullMethod;
$clinit_259();
}
 
function $ListeImageVue(this$static){
$clinit_470();
$Component(this$static);
return this$static;
}
 
function $ListeImageVue_0(this$static, im){
var cm, defAppImage, defDatImage, defLieImage, defNoteImage, defNumImage, defTab, defUrlImage, defUrlImageM, defUrlImageS, rd, grid, dtc;
$clinit_470();
$Component(this$static);
$ListeImageVue(new ListeImageVue());
$setAttribute_1(this$static, 'id', 'listeImageGrid', false, false);
this$static.id_0 = 'listeImageGrid';
this$static.iMediateur = im;
this$static.bt = $pageToolBarVue(new pageToolBarVue(), this$static.iMediateur);
$setAttribute_0(this$static, 'bbar', $getOrCreateJsObj(this$static.bt), false, false);
this$static.numImage = $ColumnConfig_1(new ColumnConfig(), 'num\xE9ro', 'num_image', 30, true, new ListeImageVue$1());
this$static.datImage = $ColumnConfig_1(new ColumnConfig(), 'date', 'dat_image', 120, true, new ListeImageVue$2());
this$static.lieImage = $ColumnConfig_1(new ColumnConfig(), 'lieu', 'lie_image', 120, true, new ListeImageVue$3());
this$static.appImage = $ColumnConfig_1(new ColumnConfig(), 'appareil', 'app_image', 120, true, new ListeImageVue$4());
this$static.urlImage = $ColumnConfig_1(new ColumnConfig(), 'Image', 'url_image_S', 30, true, new ListeImageVue$5());
this$static.noteImage = $ColumnConfig_1(new ColumnConfig(), 'note', 'note_image', 80, true, new ListeImageVue$6());
cm = initValues(_3Lcom_gwtext_client_widgets_grid_ColumnConfig_2_classLit, 254, 52, [this$static.numImage, this$static.urlImage, this$static.datImage, this$static.lieImage, this$static.appImage, this$static.noteImage]);
this$static.modeleColonnes = $ColumnModel_0(new ColumnModel(), cm);
$setAttribute_0(this$static, 'cm', this$static.modeleColonnes.jsObj, true, false);
$setAttribute_2(this$static, 'autoScroll', true, true, false);
$setAttribute_2(this$static, 'autoWidth', true, true, false);
$setAttribute_2(this$static, 'enableColumnResize', true, true, false);
defNumImage = $IntegerFieldDef(new IntegerFieldDef(), 'num_image');
defDatImage = $StringFieldDef(new StringFieldDef(), 'dat_image');
defLieImage = $StringFieldDef(new StringFieldDef(), 'lie_image');
defAppImage = $StringFieldDef(new StringFieldDef(), 'app_image');
defUrlImageS = $StringFieldDef(new StringFieldDef(), 'url_image_S');
defUrlImageM = $StringFieldDef(new StringFieldDef(), 'url_image_M');
defUrlImage = $StringFieldDef(new StringFieldDef(), 'url_image');
defNoteImage = $StringFieldDef(new StringFieldDef(), 'note_image');
defTab = initValues(_3Lcom_gwtext_client_data_FieldDef_2_classLit, 247, 37, [defNumImage, defDatImage, defLieImage, defAppImage, defUrlImageS, defUrlImageM, defUrlImage, defNoteImage]);
rd = $RecordDef(new RecordDef(), defTab);
this$static.st = $Store_2(new Store(), rd);
$setStore_1(this$static, this$static.st);
$GridView_0(new GridView(), $getOrCreateJsObj(this$static).getView()).configJS['autoFill'] = true;
grid = this$static.getOrCreateJsObj();
grid.loadMask.msg = 'chargement';
$setAttribute_2(this$static, 'enableDragDrop', true, true, false);
$setAttribute_1(this$static, 'ddGroup', 'DragGroupName', true, false);
$addListener_4(this$static, $ListeImageVue$7(new ListeImageVue$7(), this$static));
$addGridRowListener(this$static, $ListeImageVue$8(new ListeImageVue$8(), this$static));
$addListener_10($getSelectionModel(this$static), $ListeImageVue$9(new ListeImageVue$9(), this$static));
$setAttribute_2(this$static, 'enableDragDrop', true, true, false);
$setAttribute_1(this$static, 'ddGroup', 'DragGroupName', true, false);
dtc = $DropTargetConfig(new DropTargetConfig());
dtc.jsObj['ddGroup'] = 'DragGroupName';
$ListeImageVue$10(new ListeImageVue$10(), this$static, dtc, this$static);
return this$static;
}
 
function $getIdSelectionnees_0(this$static){
var i, id_selection, selection, taille, sm, records;
selection = (sm = $getSelectionModel(this$static).getJsObj() , records = sm.getSelections() , records == null?null:convertFromNativeRecordsArray(records));
taille = selection.length;
id_selection = initDim(_3Ljava_lang_String_2_classLit, 261, 1, taille, 0);
for (i = 0; i < selection.length; ++i) {
id_selection[i] = $getAsString(selection[i], 'num_image');
}
return id_selection;
}
 
function $mettreAjourInfos(this$static, date, note){
var i, sm, sm_0, records, sm_1, records_0;
for (i = 0; i < (sm = $getSelectionModel(this$static).getJsObj() , sm.getCount()); ++i) {
$set((sm_0 = $getSelectionModel(this$static).getJsObj() , records = sm_0.getSelections() , records == null?null:convertFromNativeRecordsArray(records))[i], 'note_image', note);
$set((sm_1 = $getSelectionModel(this$static).getJsObj() , records_0 = sm_1.getSelections() , records_0 == null?null:convertFromNativeRecordsArray(records_0))[i], 'dat_image', date);
}
}
 
function $rafraichir_8(this$static, nouvelleDonnees, repandreRafraichissement){
var store;
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 61)) {
this$static.st = dynamicCast(nouvelleDonnees, 61);
store = this$static.st.getJsObj();
store.load();
$reconfigure(this$static, this$static.st, $ColumnModel(new ColumnModel(), $getOrCreateJsObj(this$static).getColumnModel()));
}
if (repandreRafraichissement) {
$synchroniserDonneesZoomListeGalerie(this$static.iMediateur, nouvelleDonnees, this$static);
}
}
 
function $selectionnerEnregistrements(this$static, sel){
var sm;
if (this$static.estInstancie) {
sm = $getSelectionModel(this$static).getJsObj();
sm.clearSelections();
$selectRecords($getSelectionModel(this$static), sel);
}
}
 
function getClass_360(){
return Lorg_tela_1botanica_client_vues_ListeImageVue_2_classLit;
}
 
function getIdSelectionnees_0(){
return $getIdSelectionnees_0(this);
}
 
function ListeImageVue(){
}
 
_ = ListeImageVue.prototype = new GridPanel();
_.getClass$ = getClass_360;
_.getIdSelectionnees = getIdSelectionnees_0;
_.typeId$ = 216;
_.appImage = null;
_.bt = null;
_.datImage = null;
_.estInstancie = false;
_.iMediateur = null;
_.lieImage = null;
_.modeleColonnes = null;
_.noteImage = null;
_.numImage = null;
_.st = null;
_.urlImage = null;
function getClass_351(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$1_2_classLit;
}
 
function render(value, cellMetadata, record, rowIndex, colNum, store){
var ImgNum;
ImgNum = $getAsString(record, 'num_image');
return '<div class="centered-list">' + ImgNum + '<\/div>';
}
 
function ListeImageVue$1(){
}
 
_ = ListeImageVue$1.prototype = new Object_0();
_.getClass$ = getClass_351;
_.render_0 = render;
_.typeId$ = 0;
function $clinit_460(){
$clinit_460 = nullMethod;
$clinit_162();
}
 
function $ListeImageVue$10(this$static, $anonymous0, $anonymous1, this$0){
$clinit_460();
this$static.this$0 = this$0;
$DragDrop_0(this$static, $anonymous0, $anonymous1);
return this$static;
}
 
function getClass_350(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$10_2_classLit;
}
 
function notifyDrop_1(source, e, data){
var gdd, dd;
if (data != null && canCast(data.typeId$, 62)) {
gdd = dynamicCast(data, 62);
if ($equals_1($getGrid(gdd).id_0, 'listeImageGrid')) {
return false;
}
else {
return $lierObsDD(this.this$0.iMediateur, e, data, (dd = this.getJsObj() , dd.id));
}
}
else {
return false;
}
}
 
function notifyOver_1(source, e, data){
return 'x-dd-drop-ok';
}
 
function ListeImageVue$10(){
}
 
_ = ListeImageVue$10.prototype = new DropTarget();
_.getClass$ = getClass_350;
_.notifyDrop_0 = notifyDrop_1;
_.notifyOver_0 = notifyOver_1;
_.typeId$ = 217;
_.this$0 = null;
function getClass_352(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$2_2_classLit;
}
 
function render_0(value, cellMetadata, record, rowIndex, colNum, store){
var ImgDat;
ImgDat = $getAsString(record, 'dat_image');
if (ImgDat == null) {
ImgDat = ' ';
}
return '<div class="centered-list">' + ImgDat + '<\/div>';
}
 
function ListeImageVue$2(){
}
 
_ = ListeImageVue$2.prototype = new Object_0();
_.getClass$ = getClass_352;
_.render_0 = render_0;
_.typeId$ = 0;
function getClass_353(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$3_2_classLit;
}
 
function render_1(value, cellMetadata, record, rowIndex, colNum, store){
var ImgLie;
ImgLie = $getAsString(record, 'lie_image');
if (ImgLie == null) {
ImgLie = ' ';
}
return '<div class="centered-list">' + ImgLie + '<\/div>';
}
 
function ListeImageVue$3(){
}
 
_ = ListeImageVue$3.prototype = new Object_0();
_.getClass$ = getClass_353;
_.render_0 = render_1;
_.typeId$ = 0;
function getClass_354(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$4_2_classLit;
}
 
function render_2(value, cellMetadata, record, rowIndex, colNum, store){
var ImgApp;
ImgApp = $getAsString(record, 'app_image');
if (ImgApp == null) {
ImgApp = ' ';
}
return '<div class="centered-list">' + ImgApp + '<\/div>';
}
 
function ListeImageVue$4(){
}
 
_ = ListeImageVue$4.prototype = new Object_0();
_.getClass$ = getClass_354;
_.render_0 = render_2;
_.typeId$ = 0;
function getClass_355(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$5_2_classLit;
}
 
function render_3(value, cellMetadata, record, rowIndex, colNum, store){
var ImgNum, ImgUrl;
ImgUrl = $getAsString(record, 'url_image_S');
ImgNum = $getAsString(record, 'num_image');
return '<div class="img-list centered-list"> <img src="' + ImgUrl + '" title=\'' + ImgNum + "'> <\/div>";
}
 
function ListeImageVue$5(){
}
 
_ = ListeImageVue$5.prototype = new Object_0();
_.getClass$ = getClass_355;
_.render_0 = render_3;
_.typeId$ = 0;
function getClass_356(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$6_2_classLit;
}
 
function render_4(value, cellMetadata, record, rowIndex, colNum, store){
var htmlImage, i, noteImg;
htmlImage = '';
noteImg = $getAsInteger(record, 'note_image');
if (noteImg >= 0) {
htmlImage += '<div class="img-note centered-list">';
for (i = 0; i <= noteImg; ++i) {
htmlImage += '<img src="note-on.gif">';
}
htmlImage += '<\/div>';
}
return htmlImage;
}
 
function ListeImageVue$6(){
}
 
_ = ListeImageVue$6.prototype = new Object_0();
_.getClass$ = getClass_356;
_.render_0 = render_4;
_.typeId$ = 0;
function $ListeImageVue$7(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_357(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$7_2_classLit;
}
 
function onHide_1(component){
}
 
function onRender_1(component){
var grid;
if (!this.this$0.estInstancie) {
this.this$0.estInstancie = true;
grid = this.this$0.getOrCreateJsObj();
grid.ddText = "Glissez les images sur la liste d'observation pour les lier";
$synchroniserSelection(this.this$0.iMediateur, 'galerie');
}
}
 
function onShow_2(component){
}
 
function ListeImageVue$7(){
}
 
_ = ListeImageVue$7.prototype = new ContainerListenerAdapter();
_.getClass$ = getClass_357;
_.onHide = onHide_1;
_.onRender = onRender_1;
_.onShow = onShow_2;
_.typeId$ = 0;
_.this$0 = null;
function $ListeImageVue$8(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_358(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$8_2_classLit;
}
 
function onRowClick(grid, rowIndex, e){
$clicListeImage(this.this$0.iMediateur);
}
 
function onRowContextMenu(grid, rowIndex, e){
$stopEvent(e);
$montrerContextMenu(this.this$0.iMediateur, e);
}
 
function onRowDblClick(grid, rowIndex, e){
$doubleClicListeImage(this.this$0.iMediateur);
}
 
function ListeImageVue$8(){
}
 
_ = ListeImageVue$8.prototype = new Object_0();
_.getClass$ = getClass_358;
_.onRowClick = onRowClick;
_.onRowContextMenu = onRowContextMenu;
_.onRowDblClick = onRowDblClick;
_.typeId$ = 0;
_.this$0 = null;
function $ListeImageVue$9(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_359(){
return Lorg_tela_1botanica_client_vues_ListeImageVue$9_2_classLit;
}
 
function onSelectionChange_2(sm){
if ($getCount_0(sm) <= 0) {
$aucuneSelection(this.this$0.iMediateur);
}
else {
$selection(this.this$0.iMediateur);
$synchroniserSelection(this.this$0.iMediateur, 'liste');
}
}
 
function ListeImageVue$9(){
}
 
_ = ListeImageVue$9.prototype = new RowSelectionListenerAdapter();
_.getClass$ = getClass_359;
_.onSelectionChange_0 = onSelectionChange_2;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_473(){
$clinit_473 = nullMethod;
$clinit_259();
}
 
function $ListeObservationVue(this$static, obs){
var cm, defDateObservation, defEtatObservation, defLieuObservation, defNomRetenuObservation, defNomSaisiObservation, defOrdreObservation, defTab, rd, grid;
$clinit_473();
$Component(this$static);
this$static.observationMediateur = obs;
$setAttribute_2(this$static, 'header', true, false, false);
$setTitle(this$static, 'Observations');
this$static.bt = $BarrePaginationObservationVue(new BarrePaginationObservationVue(), this$static.observationMediateur);
$setAttribute_0(this$static, 'bbar', $getOrCreateJsObj(this$static.bt), false, false);
this$static.etatObservation = $ColumnConfig(new ColumnConfig(), 'Transmis', 'etat_observation', 50);
this$static.nomSaisiObservation = $ColumnConfig(new ColumnConfig(), 'Nom saisi', 'nomSaisi_observation', 200);
this$static.nomRetenuObservation = $ColumnConfig(new ColumnConfig(), 'Nom retenu', 'nomRetenu_observation', 200);
this$static.lieuObservation = $ColumnConfig(new ColumnConfig(), 'Lieu', 'lieu_observation', 200);
this$static.dateObservation = $ColumnConfig(new ColumnConfig(), 'Date', 'date_observation', 70);
this$static.ordreObservation = $ColumnConfig(new ColumnConfig(), 'Ordre', 'ordre_observation', 50);
cm = initValues(_3Lcom_gwtext_client_widgets_grid_ColumnConfig_2_classLit, 254, 52, [this$static.etatObservation, this$static.nomSaisiObservation, this$static.nomRetenuObservation, this$static.lieuObservation, this$static.dateObservation, this$static.ordreObservation]);
this$static.modeleColonnes = $ColumnModel_0(new ColumnModel(), cm);
$setAttribute_0(this$static, 'cm', this$static.modeleColonnes.jsObj, true, false);
$setAttribute_2(this$static, 'autoScroll', true, true, false);
$setAttribute_2(this$static, 'autoWidth', true, true, false);
$setAttribute_2(this$static, 'enableColumnResize', true, true, false);
$setSize_0(this$static, 800, 400);
defEtatObservation = $StringFieldDef(new StringFieldDef(), 'etat_observation');
defNomSaisiObservation = $StringFieldDef(new StringFieldDef(), 'nomSaisi_observation');
defNomRetenuObservation = $StringFieldDef(new StringFieldDef(), 'nomRetenu_observation');
defLieuObservation = $StringFieldDef(new StringFieldDef(), 'lieu_observation');
defDateObservation = $StringFieldDef(new StringFieldDef(), 'date_observation');
defOrdreObservation = $StringFieldDef(new StringFieldDef(), 'ordre_observation');
defTab = initValues(_3Lcom_gwtext_client_data_FieldDef_2_classLit, 247, 37, [defEtatObservation, defNomSaisiObservation, defNomRetenuObservation, defLieuObservation, defDateObservation, defOrdreObservation]);
rd = $RecordDef(new RecordDef(), defTab);
this$static.st = $Store_2(new Store(), rd);
$setStore_1(this$static, this$static.st);
$GridView_0(new GridView(), $getOrCreateJsObj(this$static).getView()).configJS['autoFill'] = true;
grid = this$static.getOrCreateJsObj();
grid.loadMask.msg = 'Chargement';
$addListener_4(this$static, new ListeObservationVue$1());
$addListener_10($getSelectionModel(this$static), new ListeObservationVue$2());
return this$static;
}
 
function $demasquerChargement_0(this$static){
var masked, elem, el;
masked = get_1(this$static.id_0);
if (masked) {
if (elem = masked.getJsObj() , elem.isMasked()) {
el = masked.getJsObj();
el.unmask();
}
}
}
 
function $masquerChargement_0(this$static){
var masked, el, me;
masked = get_1(this$static.id_0);
if (masked) {
el = masked.getJsObj();
me = el.mask('Chargement', 'x-mask-loading');
$clinit_123();
$ExtElement(new ExtElement(), me);
}
}
 
function $rafraichir_9(this$static, nouvelleDonnees){
var store;
if (nouvelleDonnees) {
this$static.st = nouvelleDonnees;
store = this$static.st.getJsObj();
store.load();
$reconfigure(this$static, this$static.st, $ColumnModel(new ColumnModel(), $getOrCreateJsObj(this$static).getColumnModel()));
$demasquerChargement_0(this$static);
}
}
 
function getClass_363(){
return Lorg_tela_1botanica_client_vues_ListeObservationVue_2_classLit;
}
 
function getIdSelectionnees_1(){
var i, id_selection, selection, taille, sm, records;
selection = (sm = $getSelectionModel(this).getJsObj() , records = sm.getSelections() , records == null?null:convertFromNativeRecordsArray(records));
taille = selection.length;
id_selection = initDim(_3Ljava_lang_String_2_classLit, 261, 1, taille, 0);
for (i = 0; i < selection.length; ++i) {
id_selection[i] = $getAsString(selection[i], 'ordre_observation');
}
return id_selection;
}
 
function ListeObservationVue(){
}
 
_ = ListeObservationVue.prototype = new GridPanel();
_.getClass$ = getClass_363;
_.getIdSelectionnees = getIdSelectionnees_1;
_.typeId$ = 218;
_.bt = null;
_.dateObservation = null;
_.etatObservation = null;
_.lieuObservation = null;
_.modeleColonnes = null;
_.nomRetenuObservation = null;
_.nomSaisiObservation = null;
_.observationMediateur = null;
_.ordreObservation = null;
_.st = null;
function getClass_361(){
return Lorg_tela_1botanica_client_vues_ListeObservationVue$1_2_classLit;
}
 
function onHide_2(component){
}
 
function onRender_2(component){
}
 
function onShow_3(component){
}
 
function ListeObservationVue$1(){
}
 
_ = ListeObservationVue$1.prototype = new ContainerListenerAdapter();
_.getClass$ = getClass_361;
_.onHide = onHide_2;
_.onRender = onRender_2;
_.onShow = onShow_3;
_.typeId$ = 0;
function getClass_362(){
return Lorg_tela_1botanica_client_vues_ListeObservationVue$2_2_classLit;
}
 
function onSelectionChange_3(sm){
$getCount_0(sm) <= 0;
}
 
function ListeObservationVue$2(){
}
 
_ = ListeObservationVue$2.prototype = new RowSelectionListenerAdapter();
_.getClass$ = getClass_362;
_.onSelectionChange_0 = onSelectionChange_3;
_.typeId$ = 0;
function $MenuFiltreVue(this$static){
$Menu(this$static);
this$static.chercherImage = $Item_0(new Item(), 'Filtrer par les mots cl\xE9s');
this$static.chercherCommentaire = $Item_0(new Item(), 'Filtrer par les commentaires');
$addItem_0(this$static, this$static.chercherImage);
$addItem_0(this$static, this$static.chercherCommentaire);
$addListener_11(this$static, $MenuFiltreVue$1(new MenuFiltreVue$1(), this$static));
return this$static;
}
 
function getClass_365(){
return Lorg_tela_1botanica_client_vues_MenuFiltreVue_2_classLit;
}
 
function MenuFiltreVue(){
}
 
_ = MenuFiltreVue.prototype = new Menu();
_.getClass$ = getClass_365;
_.typeId$ = 219;
_.chercherCommentaire = null;
_.chercherImage = null;
function $MenuFiltreVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_364(){
return Lorg_tela_1botanica_client_vues_MenuFiltreVue$1_2_classLit;
}
 
function onItemClick_1(item, e){
var menu;
$equals_0(item, this.this$0.chercherImage);
$equals_0(item, this.this$0.chercherCommentaire);
menu = this.this$0.getOrCreateJsObj();
menu.hide();
}
 
function MenuFiltreVue$1(){
}
 
_ = MenuFiltreVue$1.prototype = new MenuListenerAdapter();
_.getClass$ = getClass_364;
_.onItemClick = onItemClick_1;
_.typeId$ = 0;
_.this$0 = null;
function $MenuIdVue(this$static, im){
$Menu(this$static);
this$static.iMediateur = im;
this$static.changerId = $Item_0(new Item(), "Changer d'utilisateur");
$addItem_0(this$static, this$static.changerId);
$addListener_11(this$static, $MenuIdVue$1(new MenuIdVue$1(), this$static));
return this$static;
}
 
function getClass_367(){
return Lorg_tela_1botanica_client_vues_MenuIdVue_2_classLit;
}
 
function MenuIdVue(){
}
 
_ = MenuIdVue.prototype = new Menu();
_.getClass$ = getClass_367;
_.typeId$ = 220;
_.changerId = null;
_.iMediateur = null;
function $MenuIdVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_366(){
return Lorg_tela_1botanica_client_vues_MenuIdVue$1_2_classLit;
}
 
function onItemClick_2(item, e){
var i, w, menu;
if ($equals_0(item, this.this$0.changerId)) {
i = $IdVue(new IdVue(), this.this$0.iMediateur);
w = i.getOrCreateJsObj();
w.show();
}
menu = this.this$0.getOrCreateJsObj();
menu.hide();
}
 
function MenuIdVue$1(){
}
 
_ = MenuIdVue$1.prototype = new MenuListenerAdapter();
_.getClass$ = getClass_366;
_.onItemClick = onItemClick_2;
_.typeId$ = 0;
_.this$0 = null;
function $MenuImageVue(this$static, im){
var menu;
$Menu(this$static);
this$static.iMediateur = im;
this$static.uploaderImage = $Item_0(new Item(), 'Uploader des images');
this$static.supprimerImage = $Item_0(new Item(), 'Supprimer les images selectionn\xE9es');
this$static.ajouterImageSelection = $Item_0(new Item(), 'Ajouter les images s\xE9lectionn\xE9es au tampon');
this$static.viderSelection = $Item_0(new Item(), 'Vider le tampon');
this$static.afficherSelection = $Item_0(new Item(), 'Afficher le tampon');
$addItem_0(this$static, this$static.uploaderImage);
$addItem_0(this$static, this$static.supprimerImage);
menu = this$static.getOrCreateJsObj();
menu.addSeparator();
$addItem_0(this$static, this$static.ajouterImageSelection);
$addItem_0(this$static, this$static.viderSelection);
$addItem_0(this$static, this$static.afficherSelection);
$addListener_11(this$static, $MenuImageVue$1(new MenuImageVue$1(), this$static));
return this$static;
}
 
function getClass_369(){
return Lorg_tela_1botanica_client_vues_MenuImageVue_2_classLit;
}
 
function MenuImageVue(){
}
 
_ = MenuImageVue.prototype = new Menu();
_.getClass$ = getClass_369;
_.typeId$ = 221;
_.afficherSelection = null;
_.ajouterImageSelection = null;
_.iMediateur = null;
_.supprimerImage = null;
_.uploaderImage = null;
_.viderSelection = null;
function $MenuImageVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_368(){
return Lorg_tela_1botanica_client_vues_MenuImageVue$1_2_classLit;
}
 
function onItemClick_3(item, e){
var menu;
if ($equals_0(item, this.this$0.uploaderImage)) {
$ImageUploaderAsynchroneDAO(new ImageUploaderAsynchroneDAO(), this.this$0.iMediateur.iModele);
choisirMethodeUpload();
}
if ($equals_0(item, this.this$0.supprimerImage)) {
$supprimerImages(this.this$0.iMediateur);
}
if ($equals_0(item, this.this$0.ajouterImageSelection)) {
$ajouterImagesSelection(this.this$0.iMediateur);
}
if ($equals_0(item, this.this$0.viderSelection)) {
$clear(this.this$0.iMediateur.iModele.selectionImages.arrayList);
$wnd.alert('Le tampon a \xE9t\xE9 vid\xE9 ');
}
if ($equals_0(item, this.this$0.afficherSelection)) {
$wnd.alert('Contenu du tampon : ' + $renvoyerSelection(this.this$0.iMediateur.iModele));
}
menu = this.this$0.getOrCreateJsObj();
menu.hide();
}
 
function MenuImageVue$1(){
}
 
_ = MenuImageVue$1.prototype = new MenuListenerAdapter();
_.getClass$ = getClass_368;
_.onItemClick = onItemClick_3;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_481(){
$clinit_481 = nullMethod;
$clinit_259();
}
 
function $MiniListeObservationVue(this$static, im){
var columnModel, columns, store, dtc, grid;
$clinit_481();
$Component(this$static);
this$static.iMediateur = im;
$setAttribute_1(this$static, 'id', 'x-view-mini-obs', false, false);
this$static.id_0 = 'x-view-mini-obs';
store = $SimpleStore_0(new SimpleStore(), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['id_obs', 'plante']), initValues(_3_3Ljava_lang_Object_2_classLit, 266, 31, [initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['1', 'Plantum bizarrum']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['2', 'Feuillum etrangum']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['3', 'Spirus cotapilis']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['4', 'Birita raborum']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['5', 'Spacea sinea']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['6', 'Spacea subtea']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['7', 'Buissnum petitum']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['8', 'Acer monspessulanum']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['9', 'Geranium prouticorum']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['10', 'Rosae epania']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['11', 'Rosea rougea']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['12', 'Liciea rosa']), initValues(_3Ljava_lang_Object_2_classLit, 260, 0, ['13', 'Liciea bella'])]));
columns = initValues(_3Lcom_gwtext_client_widgets_grid_ColumnConfig_2_classLit, 254, 52, [$ColumnConfig_0(new ColumnConfig(), 'Numero', 'id_obs', 65, true), $ColumnConfig_0(new ColumnConfig(), 'Taxon', 'plante', 150, true)]);
columnModel = $ColumnModel_0(new ColumnModel(), columns);
$setTitle(this$static, 'Observations');
$setAttribute_0(this$static, 'cm', columnModel.jsObj, true, false);
$setHeight(this$static, 390);
$setWidth_0(this$static, 200);
$setAttribute_2(this$static, 'enableDragDrop', true, true, false);
$setAttribute_1(this$static, 'ddGroup', 'DragGroupName', true, false);
$load(store);
$setAttribute_0(this$static, 'store', $getJsObj_2(store), true, false);
this$static.store_0 = store;
grid = this$static.getOrCreateJsObj();
grid.ddText = "Faites glisser la selection d'observations sur une image pour les lier";
$setAttribute_2(this$static, 'enableDragDrop', true, true, false);
$setAttribute_1(this$static, 'ddGroup', 'DragGroupName', true, false);
dtc = $DropTargetConfig(new DropTargetConfig());
dtc.jsObj['ddGroup'] = 'DragGroupName';
$MiniListeObservationVue$1(new MiniListeObservationVue$1(), this$static, dtc, this$static);
return this$static;
}
 
function getClass_371(){
return Lorg_tela_1botanica_client_vues_MiniListeObservationVue_2_classLit;
}
 
function MiniListeObservationVue(){
}
 
_ = MiniListeObservationVue.prototype = new GridPanel();
_.getClass$ = getClass_371;
_.typeId$ = 222;
_.iMediateur = null;
function $clinit_480(){
$clinit_480 = nullMethod;
$clinit_162();
}
 
function $MiniListeObservationVue$1(this$static, $anonymous0, $anonymous1, this$0){
$clinit_480();
this$static.this$0 = this$0;
$DragDrop_0(this$static, $anonymous0, $anonymous1);
return this$static;
}
 
function getClass_370(){
return Lorg_tela_1botanica_client_vues_MiniListeObservationVue$1_2_classLit;
}
 
function notifyDrop_2(source, e, data){
var gdd;
if (data != null && canCast(data.typeId$, 62)) {
gdd = dynamicCast(data, 62);
if ($equals_1($getGrid(gdd).id_0, 'x-view-mini-obs')) {
return false;
}
else {
return $lierImagesDD(this.this$0.iMediateur, e, data);
}
}
return false;
}
 
function notifyOver_2(source, e, data){
return 'x-dd-drop-ok';
}
 
function MiniListeObservationVue$1(){
}
 
_ = MiniListeObservationVue$1.prototype = new DropTarget();
_.getClass$ = getClass_370;
_.notifyDrop_0 = notifyDrop_2;
_.notifyOver_0 = notifyOver_2;
_.typeId$ = 223;
_.this$0 = null;
function $clinit_483(){
$clinit_483 = nullMethod;
$clinit_193();
}
 
function $PanneauFiltresVues(this$static, im){
var panelValidation;
$clinit_483();
$Component(this$static);
$setTitle(this$static, 'Rechercher des images');
this$static.iMediateur = im;
$setAttribute_2(this$static, 'collapsible', true, true, false);
$setLayout(this$static, $VerticalLayout(new VerticalLayout()));
this$static.commFiltresVues = $BarreRechercheFiltreVue(new BarreRechercheFiltreVue(), im);
$add_5(this$static, this$static.commFiltresVues);
this$static.dateFiltreVues = $DateFiltreVue(new DateFiltreVue());
$add_5(this$static, this$static.dateFiltreVues);
this$static.selectionFiltreVue = $SelectionFiltreVue(new SelectionFiltreVue(), im);
$add_5(this$static, this$static.selectionFiltreVue);
this$static.motsClesFiltres = $ArbreMotsClesFiltreVue(new ArbreMotsClesFiltreVue(), im);
$add_5(this$static, this$static.motsClesFiltres);
panelValidation = $Panel(new Panel_0());
this$static.valider = $Button_1(new Button_0(), 'Rechercher');
$add_5(panelValidation, this$static.valider);
$setAttribute_2(panelValidation, 'border', false, true, false);
$add_5(this$static, panelValidation);
$addListener_1(this$static.valider, $PanneauFiltresVues$1(new PanneauFiltresVues$1(), this$static));
return this$static;
}
 
function $renvoyerValeursAFiltrer_2(this$static){
var filtres;
filtres = initValues(_3_3Ljava_lang_String_2_classLit, 267, 32, [$renvoyerValeursAFiltrer(this$static.motsClesFiltres), $renvoyerValeursAFiltrer_0(this$static.commFiltresVues), $renvoyerValeursAFiltrer_1(this$static.dateFiltreVues), $renvoyerValeursAFiltrer_3(this$static.selectionFiltreVue)]);
return filtres;
}
 
function getClass_373(){
return Lorg_tela_1botanica_client_vues_PanneauFiltresVues_2_classLit;
}
 
function PanneauFiltresVues(){
}
 
_ = PanneauFiltresVues.prototype = new Panel_0();
_.getClass$ = getClass_373;
_.typeId$ = 224;
_.commFiltresVues = null;
_.dateFiltreVues = null;
_.iMediateur = null;
_.motsClesFiltres = null;
_.selectionFiltreVue = null;
_.valider = null;
function $PanneauFiltresVues$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_372(){
return Lorg_tela_1botanica_client_vues_PanneauFiltresVues$1_2_classLit;
}
 
function onClick_14(button, e){
$obtenirPhotoGalerie(this.this$0.iMediateur);
}
 
function PanneauFiltresVues$1(){
}
 
_ = PanneauFiltresVues$1.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_372;
_.onClick_0 = onClick_14;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_487(){
$clinit_487 = nullMethod;
$clinit_197();
}
 
function $PanneauMetadonneesVue(this$static, im){
var labelComm, labelDate, labelNote, sousPanneauInfosGenerales, container;
$clinit_487();
$TabPanel(this$static);
this$static.imediateur = im;
this$static.panneauExifGrid = $Panel_1(new Panel_0(), 'Exif');
this$static.panneauIptcGrid = $Panel_1(new Panel_0(), 'Iptc');
this$static.panneauInfoGrid = $Panel_1(new Panel_0(), 'info');
this$static.panneauMotsCles = $ArbreMotsClesVue(new ArbreMotsClesVue(), im);
$setHeight_0(this$static.panneauMotsCles, '500px');
sousPanneauInfosGenerales = $Panel_1(new Panel_0(), 'Infos G\xE9n\xE9rales');
sousPanneauInfosGenerales.setLayout($VerticalLayout(new VerticalLayout()));
$setAttribute_2(sousPanneauInfosGenerales, 'border', false, true, false);
$setHeight(sousPanneauInfosGenerales, 200);
$setAttribute_2(sousPanneauInfosGenerales, 'autoWidth', true, true, false);
$setMargins(sousPanneauInfosGenerales, 5, 5, 5, 5);
$setPaddings(sousPanneauInfosGenerales, 5, 5, 5, 5);
$setAttribute_2(sousPanneauInfosGenerales, 'collapsible', true, true, false);
labelComm = $Label(new Label(), 'Commentaires :');
labelComm.element.style['height'] = '20px';
this$static.commentaireGeneral = $TextArea(new TextArea());
$setWidth_1(this$static.commentaireGeneral, '90%');
labelDate = $Label(new Label(), 'Date :');
labelNote = $Label(new Label(), 'Note :');
$setAttribute_2(this$static.panneauMotsCles, 'border', false, true, false);
labelDate.element.style['height'] = '20px';
this$static.dateImage = $DateField(new DateField());
$setAttribute_2(this$static.dateImage, 'autoWidth', true, true, false);
$setAttribute_1(this$static.dateImage, 'format', 'd/m/Y', true, true);
this$static.validerInfo = $Button_1(new Button_0(), 'OK');
this$static.noteVue = $BarreNotationVue(new BarreNotationVue(), 5);
this$static.miniListeObservation = $MiniListeObservationVue(new MiniListeObservationVue(), im);
$add_3(sousPanneauInfosGenerales, labelComm);
$add_5(sousPanneauInfosGenerales, this$static.commentaireGeneral);
$add_3(sousPanneauInfosGenerales, labelDate);
$add_5(sousPanneauInfosGenerales, this$static.dateImage);
$add_3(sousPanneauInfosGenerales, labelNote);
$add_5(sousPanneauInfosGenerales, this$static.noteVue);
$add_5(sousPanneauInfosGenerales, this$static.validerInfo);
sousPanneauInfosGenerales.setAutoHeight(true);
$setAttribute_2(this$static.panneauMotsCles, 'autoHeight', true, true, false);
$setAttribute_2(this$static.panneauInfoGrid, 'border', false, true, false);
this$static.panneauInfoGrid.setAutoHeight(true);
$add_5(this$static.panneauInfoGrid, sousPanneauInfosGenerales);
$add_5(this$static.panneauInfoGrid, this$static.panneauMotsCles);
$add_5(this$static, this$static.panneauInfoGrid);
$add_5(this$static, this$static.panneauExifGrid);
$add_5(this$static, this$static.panneauIptcGrid);
$add_5(this$static, this$static.miniListeObservation);
this$static.gViewExif = $GridView(new GridView());
this$static.gViewExif.configJS['forceFit'] = true;
this$static.ExifGrid = $PropertyGridPanel(new PropertyGridPanel());
$setId_0(this$static.ExifGrid, 'meta_exif');
$setAttribute_0(this$static.ExifGrid, 'view', $getJsObj_4(this$static.gViewExif), true, false);
$setAttribute_1(this$static.ExifGrid, 'nameText', 'M\xE9tadonn\xE9es Exif', true, false);
$setAttribute_2(this$static.ExifGrid, 'autoWidth', true, true, false);
$setAttribute_2(this$static.ExifGrid, 'autoHeight', true, true, false);
this$static.ExifGrid.sorted = false;
this$static.gViewIptc = $GridView(new GridView());
this$static.gViewIptc.configJS['forceFit'] = true;
this$static.IptcGrid = $PropertyGridPanel(new PropertyGridPanel());
$setId_0(this$static.IptcGrid, 'meta_iptc');
$setAttribute_0(this$static.IptcGrid, 'view', $getJsObj_4(this$static.gViewIptc), true, false);
$setAttribute_1(this$static.IptcGrid, 'nameText', 'M\xE9tadonn\xE9es IPTC', true, false);
$setAttribute_2(this$static.IptcGrid, 'autoWidth', true, true, false);
$setAttribute_2(this$static.IptcGrid, 'autoHeight', true, true, false);
this$static.IptcGrid.sorted = false;
$add_5(this$static.panneauExifGrid, this$static.ExifGrid);
$add_5(this$static.panneauIptcGrid, this$static.IptcGrid);
$addListener_1(this$static.validerInfo, $PanneauMetadonneesVue$1(new PanneauMetadonneesVue$1(), this$static));
$addGridCellListener(this$static.ExifGrid, $PanneauMetadonneesVue$2(new PanneauMetadonneesVue$2(), this$static));
$addGridCellListener(this$static.IptcGrid, $PanneauMetadonneesVue$3(new PanneauMetadonneesVue$3(), this$static));
container = this$static.getOrCreateJsObj();
container.doLayout(true);
return this$static;
}
 
function $rafraichir_10(this$static, nouvelleDonnees){
var exif, exifSource, gen, i, iptc, iptcSource, maxLength, meta;
if (nouvelleDonnees != null) {
meta = nouvelleDonnees;
exif = dynamicCast(meta[0], 78);
iptc = dynamicCast(meta[1], 78);
gen = dynamicCast(meta[2], 78);
exifSource = initDim(_3Lcom_gwtext_client_core_NameValuePair_2_classLit, 245, 48, exif.length, 0);
iptcSource = initDim(_3Lcom_gwtext_client_core_NameValuePair_2_classLit, 245, 48, iptc.length, 0);
if (exif.length <= iptc.length) {
maxLength = iptc.length;
}
else {
maxLength = exif.length;
}
for (i = 0; i < maxLength; ++i) {
if (i < exif.length && !$equals_1(exif[i][0], 'null')) {
setCheck(exifSource, i, $NameValuePair(new NameValuePair(), exif[i][0], exif[i][1]));
}
if (i < iptc.length && !$equals_1(iptc[i][0], 'null')) {
setCheck(iptcSource, i, $NameValuePair(new NameValuePair(), iptc[i][0], iptc[i][1]));
}
}
$setValue_0(this$static.commentaireGeneral, gen[0][1]);
$setRawValue(this$static.dateImage, gen[1][1]);
$setSource(this$static.ExifGrid, exifSource);
$setSource(this$static.IptcGrid, iptcSource);
}
}
 
function getClass_377(){
return Lorg_tela_1botanica_client_vues_PanneauMetadonneesVue_2_classLit;
}
 
function PanneauMetadonneesVue(){
}
 
_ = PanneauMetadonneesVue.prototype = new TabPanel();
_.getClass$ = getClass_377;
_.typeId$ = 225;
_.ExifGrid = null;
_.IptcGrid = null;
_.commentaireGeneral = null;
_.dateImage = null;
_.gViewExif = null;
_.gViewIptc = null;
_.imediateur = null;
_.miniListeObservation = null;
_.noteVue = null;
_.panneauExifGrid = null;
_.panneauInfoGrid = null;
_.panneauIptcGrid = null;
_.panneauMotsCles = null;
_.validerInfo = null;
function $PanneauMetadonneesVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_374(){
return Lorg_tela_1botanica_client_vues_PanneauMetadonneesVue$1_2_classLit;
}
 
function onClick_15(button, e){
var field;
$focus(button);
$mettreAJourInfo(this.this$0.imediateur, $getValueAsString(this.this$0.commentaireGeneral), (field = this.this$0.dateImage.getOrCreateJsObj() , field.getRawValue()), '' + this.this$0.noteVue.noteEnCours);
}
 
function PanneauMetadonneesVue$1(){
}
 
_ = PanneauMetadonneesVue$1.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_374;
_.onClick_0 = onClick_15;
_.typeId$ = 0;
_.this$0 = null;
function $PanneauMetadonneesVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_375(){
return Lorg_tela_1botanica_client_vues_PanneauMetadonneesVue$2_2_classLit;
}
 
function onCellClick_0(grid_0, rowIndex, colIndex, e){
var grid;
$stopEvent(e);
grid = this.this$0.ExifGrid.getOrCreateJsObj();
grid.stopEditing();
}
 
function onCellDblClick_0(grid_0, rowIndex, colIndex, e){
var grid;
$stopEvent(e);
grid = this.this$0.ExifGrid.getOrCreateJsObj();
grid.stopEditing();
}
 
function PanneauMetadonneesVue$2(){
}
 
_ = PanneauMetadonneesVue$2.prototype = new GridCellListenerAdapter();
_.getClass$ = getClass_375;
_.onCellClick = onCellClick_0;
_.onCellDblClick = onCellDblClick_0;
_.typeId$ = 0;
_.this$0 = null;
function $PanneauMetadonneesVue$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_376(){
return Lorg_tela_1botanica_client_vues_PanneauMetadonneesVue$3_2_classLit;
}
 
function onCellClick_1(grid_0, rowIndex, colIndex, e){
var grid;
$stopEvent(e);
grid = this.this$0.ExifGrid.getOrCreateJsObj();
grid.stopEditing();
}
 
function onCellDblClick_1(grid_0, rowIndex, colIndex, e){
var grid;
$stopEvent(e);
grid = this.this$0.ExifGrid.getOrCreateJsObj();
grid.stopEditing();
}
 
function PanneauMetadonneesVue$3(){
}
 
_ = PanneauMetadonneesVue$3.prototype = new GridCellListenerAdapter();
_.getClass$ = getClass_376;
_.onCellClick = onCellClick_1;
_.onCellDblClick = onCellDblClick_1;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_488(){
$clinit_488 = nullMethod;
$clinit_193();
}
 
function $SelectionFiltreVue(this$static, im){
var labelRecherche;
$clinit_488();
$Component(this$static);
this$static.iMediateur = im;
labelRecherche = $Label(new Label(), 'Afficher uniquement les images dans le tampon :');
$add_3(this$static, labelRecherche);
$setAttribute_2(this$static, 'border', false, true, false);
$setPaddings(this$static, 5, 5, 5, 5);
this$static.check = $Checkbox(new Checkbox());
$setChecked(this$static.check, false);
$add_5(this$static, this$static.check);
return this$static;
}
 
function $renvoyerValeursAFiltrer_3(this$static){
var val, cb;
if (cb = this$static.check.getOrCreateJsObj() , cb.getValue()) {
val = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_id_tampon', $renvoyerSelection(this$static.iMediateur.iModele)]);
return val;
}
val = initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['ci_id_tampon', '']);
return val;
}
 
function getClass_378(){
return Lorg_tela_1botanica_client_vues_SelectionFiltreVue_2_classLit;
}
 
function SelectionFiltreVue(){
}
 
_ = SelectionFiltreVue.prototype = new Panel_0();
_.getClass$ = getClass_378;
_.typeId$ = 226;
_.check = null;
_.iMediateur = null;
function $clinit_495(){
$clinit_495 = nullMethod;
$clinit_193();
}
 
function $ZoomImageVue(this$static, im){
var dtc;
$clinit_495();
$Component(this$static);
$setTitle(this$static, 'Zoom');
this$static.image = $Image_0(new Image_0(), 'vide.jpg');
this$static.prev = $Button(new Button());
this$static.suiv = $Button(new Button());
$setAttribute_1(this$static, 'id', 'x-view-zoom-panel', false, false);
this$static.id_0 = 'x-view-zoom-panel';
this$static.iMediateur = im;
setStylePrimaryName(this$static.prev.getElement(), 'x-view-zoom-button-p');
setStylePrimaryName(this$static.suiv.getElement(), 'x-view-zoom-button-s');
this$static.image = $ZoomImageVue$1(new ZoomImageVue$1(), this$static);
$setAttribute_2(this$static, 'header', false, false, false);
this$static.imageConteneur = $Panel(new Panel_0());
$setAttribute_2(this$static.imageConteneur, 'border', false, true, false);
$add_3(this$static.imageConteneur, this$static.image);
$setId_0(this$static.imageConteneur, 'x-view-zoom-img');
$sinkEvents(this$static.image, 2);
$sinkEvents(this$static.image, 131072);
this$static.image.element.src = 'vide.jpg';
$setLayout(this$static, $BorderLayout(new BorderLayout()));
this$static.prev.getElement().style['width'] = '60px';
this$static.suiv.getElement().style['width'] = '60px';
$add_4(this$static, this$static.prev, $BorderLayoutData(new BorderLayoutData(), ($clinit_134() , WEST)));
$add_6(this$static, this$static.imageConteneur, $BorderLayoutData(new BorderLayoutData(), CENTER_0));
$add_4(this$static, this$static.suiv, $BorderLayoutData(new BorderLayoutData(), EAST));
$setAttribute_2(this$static.imageConteneur, 'maskDisabled', true, true, false);
$setAttribute_2(this$static, 'border', false, true, false);
this$static.conteneurInitialise = true;
this$static.initialise = true;
dtc = $DropTargetConfig(new DropTargetConfig());
dtc.jsObj['ddGroup'] = 'DragGroupName';
$ZoomImageVue$6(new ZoomImageVue$6(), this$static, dtc, this$static);
$addClickListener(this$static.prev, $ZoomImageVue$2(new ZoomImageVue$2(), this$static));
$addClickListener(this$static.suiv, $ZoomImageVue$3(new ZoomImageVue$3(), this$static));
$addListener_6(this$static, $ZoomImageVue$4(new ZoomImageVue$4(), this$static));
$addListener_6(this$static.imageConteneur, $ZoomImageVue$5(new ZoomImageVue$5(), this$static));
return this$static;
}
 
function $activerPanneau(this$static){
this$static.prev.element['disabled'] = !true;
this$static.suiv.element['disabled'] = !true;
}
 
function $desactiverPanneau(this$static){
this$static.image.element.src = 'vide.jpeg';
this$static.prev.element['disabled'] = !false;
this$static.suiv.element['disabled'] = !false;
}
 
function $rafraichir_11(this$static, nouvelleDonnees){
var infos, x_0, y;
if (nouvelleDonnees != null && canCast(nouvelleDonnees.typeId$, 32) && this$static.initialise && this$static.conteneurInitialise) {
infos = dynamicCast(nouvelleDonnees, 32);
if (infos[0] != null && infos[1] != null && infos[2] != null && infos[3] != null) {
this$static.image.element.src = infos[0];
x_0 = __parseAndValidateInt(infos[1], 10, -2147483648, 2147483647);
y = __parseAndValidateInt(infos[2], 10, -2147483648, 2147483647);
this$static.imageHeight = y;
this$static.imageWidth = x_0;
this$static.idImage = infos[3];
$verifierEtRetaillerImage(this$static);
}
}
else {
this$static.image.element.src = 'vide.jpeg';
}
}
 
function $verifierEtRetaillerImage(this$static){
var fOriginalX, fOriginalY, nouvelleTailleX, nouvelleTailleY, originalX, originalY, rapportTaille, tailleConteneurX, tailleConteneurY, taille, taille_0;
if (!this$static.image) {
return;
}
originalX = (taille = initValues(_3I_classLit, 256, -1, [this$static.imageHeight, this$static.imageWidth]) , taille)[0];
originalY = (taille_0 = initValues(_3I_classLit, 256, -1, [this$static.imageHeight, this$static.imageWidth]) , taille_0)[1];
fOriginalX = $Float(new Float(), originalX).value;
fOriginalY = $Float(new Float(), originalY).value;
rapportTaille = fOriginalX / fOriginalY;
nouvelleTailleX = originalX;
nouvelleTailleY = originalY;
tailleConteneurX = $getWidth_0(this$static.imageConteneur);
tailleConteneurY = $getHeight_0(this$static.imageConteneur);
if (originalY > tailleConteneurY || originalX > tailleConteneurX) {
if (originalX > originalY) {
nouvelleTailleX = tailleConteneurX;
nouvelleTailleY = round_int(Math.floor(nouvelleTailleX / rapportTaille));
}
else {
nouvelleTailleY = tailleConteneurY;
nouvelleTailleX = round_int(Math.floor(nouvelleTailleY * rapportTaille));
}
}
$setSize(this$static.image, '' + nouvelleTailleX + 'px', '' + nouvelleTailleY + 'px');
}
 
function getClass_385(){
return Lorg_tela_1botanica_client_vues_ZoomImageVue_2_classLit;
}
 
function ZoomImageVue(){
}
 
_ = ZoomImageVue.prototype = new Panel_0();
_.getClass$ = getClass_385;
_.typeId$ = 227;
_.conteneurInitialise = false;
_.iMediateur = null;
_.idImage = '0';
_.imageConteneur = null;
_.imageHeight = 0;
_.imageWidth = 0;
_.initialise = false;
function $clinit_489(){
$clinit_489 = nullMethod;
$clinit_86();
}
 
function $ZoomImageVue$1(this$static, this$0){
$clinit_489();
this$static.this$0 = this$0;
$Image$UnclippedState(new Image$UnclippedState(), this$static);
this$static.element['className'] = 'gwt-Image';
return this$static;
}
 
function getClass_379(){
return Lorg_tela_1botanica_client_vues_ZoomImageVue$1_2_classLit;
}
 
function onBrowserEvent_3(event_0){
if (2 == $eventGetTypeInt(event_0)) {
$doubleClicZoomImage(this.this$0.iMediateur);
}
if (131072 == $eventGetTypeInt(event_0)) {
if ((event_0.detail || 0) >= 1) {
this.this$0.prev.element.click();
}
if ((event_0.detail || 0) <= -1) {
this.this$0.suiv.element.click();
}
}
}
 
function ZoomImageVue$1(){
}
 
_ = ZoomImageVue$1.prototype = new Image_0();
_.getClass$ = getClass_379;
_.onBrowserEvent = onBrowserEvent_3;
_.typeId$ = 228;
_.this$0 = null;
function $ZoomImageVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_380(){
return Lorg_tela_1botanica_client_vues_ZoomImageVue$2_2_classLit;
}
 
function onClick_16(sender){
$clicBoutonZoomImage(this.this$0.iMediateur, 'prev');
}
 
function ZoomImageVue$2(){
}
 
_ = ZoomImageVue$2.prototype = new Object_0();
_.getClass$ = getClass_380;
_.onClick = onClick_16;
_.typeId$ = 229;
_.this$0 = null;
function $ZoomImageVue$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_381(){
return Lorg_tela_1botanica_client_vues_ZoomImageVue$3_2_classLit;
}
 
function onClick_17(sender){
$clicBoutonZoomImage(this.this$0.iMediateur, 'suiv');
}
 
function ZoomImageVue$3(){
}
 
_ = ZoomImageVue$3.prototype = new Object_0();
_.getClass$ = getClass_381;
_.onClick = onClick_17;
_.typeId$ = 230;
_.this$0 = null;
function $ZoomImageVue$4(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_382(){
return Lorg_tela_1botanica_client_vues_ZoomImageVue$4_2_classLit;
}
 
function onBodyResize_0(panel, width, height){
$verifierEtRetaillerImage(this.this$0);
}
 
function ZoomImageVue$4(){
}
 
_ = ZoomImageVue$4.prototype = new PanelListenerAdapter();
_.getClass$ = getClass_382;
_.onBodyResize = onBodyResize_0;
_.typeId$ = 0;
_.this$0 = null;
function $ZoomImageVue$5(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_383(){
return Lorg_tela_1botanica_client_vues_ZoomImageVue$5_2_classLit;
}
 
function onAfterLayout_0(self){
$verifierEtRetaillerImage(this.this$0);
}
 
function ZoomImageVue$5(){
}
 
_ = ZoomImageVue$5.prototype = new PanelListenerAdapter();
_.getClass$ = getClass_383;
_.onAfterLayout = onAfterLayout_0;
_.typeId$ = 0;
_.this$0 = null;
function $clinit_494(){
$clinit_494 = nullMethod;
$clinit_162();
}
 
function $ZoomImageVue$6(this$static, $anonymous0, $anonymous1, this$0){
$clinit_494();
this$static.this$0 = this$0;
$DragDrop_0(this$static, $anonymous0, $anonymous1);
return this$static;
}
 
function getClass_384(){
return Lorg_tela_1botanica_client_vues_ZoomImageVue$6_2_classLit;
}
 
function notifyDrop_3(source, e, data){
var dd;
if (data != null && canCast(data.typeId$, 62)) {
return $lierObsDD(this.this$0.iMediateur, e, data, (dd = this.getJsObj() , dd.id));
}
return false;
}
 
function notifyOver_3(source, e, data){
return 'x-dd-drop-ok';
}
 
function ZoomImageVue$6(){
}
 
_ = ZoomImageVue$6.prototype = new DropTarget();
_.getClass$ = getClass_384;
_.notifyDrop_0 = notifyDrop_3;
_.notifyOver_0 = notifyOver_3;
_.typeId$ = 231;
_.this$0 = null;
function $clinit_501(){
$clinit_501 = nullMethod;
$clinit_204();
}
 
function $pageToolBarVue(this$static, im){
var store, tp, pages, template;
$clinit_501();
$Component(this$static);
this$static.prevPage = $ToolbarButton(new ToolbarButton());
this$static.suivPage = $ToolbarButton(new ToolbarButton());
this$static.page = $ToolbarTextItem(new ToolbarTextItem(), 'Page ');
this$static.champPage = $TextField_1(new TextField(), '' + (this$static.pageCourante + 1));
this$static.surTotalPage = $ToolbarTextItem(new ToolbarTextItem(), ' sur ' + this$static.pageTotale);
this$static.afficherNbElem = $ToolbarTextItem(new ToolbarTextItem(), 'Afficher ');
this$static.selecteurTaillePage = $ComboBox(new ComboBox());
this$static.nbElemParPage = $ToolbarTextItem(new ToolbarTextItem(), ' images par page ');
this$static.intervalleElements = $ToolbarTextItem(new ToolbarTextItem(), 'Images ' + this$static.pageCourante * this$static.taillePage + ' sur ' + this$static.nbElement);
this$static.iMediateur = im;
$addButton_0(this$static, this$static.prevPage);
$addSpacer(this$static);
$addItem(this$static, this$static.page);
$addField(this$static, this$static.champPage);
$addItem(this$static, this$static.surTotalPage);
$addSpacer(this$static);
$addButton_0(this$static, this$static.suivPage);
$setWidth_0(this$static.champPage, 30);
$addSpacer(this$static);
$addItem(this$static, this$static.afficherNbElem);
$setIcon(this$static.prevPage, 'page_prev.png');
$setIcon(this$static.suivPage, 'page_suiv.png');
store = $SimpleStore_0(new SimpleStore(), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['nb_page']), (pages = initValues(_3_3Ljava_lang_String_2_classLit, 267, 32, [initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['200']), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['100']), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['50']), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['20']), initValues(_3Ljava_lang_String_2_classLit, 261, 1, ['10'])]) , pages));
$load(store);
tp = $Template(new Template(), '<div class="x-combo-list-item">{nb_page}<div class="x-clear"><\/div><\/div>');
template = tp.getJsObj();
template.compile();
$setTpl(this$static.selecteurTaillePage, tp);
$setStore_0(this$static.selecteurTaillePage, store);
$setWidth_0(this$static.selecteurTaillePage, 40);
$setEditable(this$static.selecteurTaillePage, false);
$addField(this$static, this$static.selecteurTaillePage);
$setValue_0(this$static.selecteurTaillePage, '50');
$setWidth_0(this$static.selecteurTaillePage, 50);
$addItem(this$static, this$static.nbElemParPage);
$addFill(this$static);
$addItem(this$static, this$static.intervalleElements);
$addSpacer(this$static);
$addListener_1(this$static.prevPage, $pageToolBarVue$1(new pageToolBarVue$1(), this$static));
$addListener_1(this$static.suivPage, $pageToolBarVue$2(new pageToolBarVue$2(), this$static));
$addListener_9(this$static.champPage, $pageToolBarVue$3(new pageToolBarVue$3(), this$static));
$addKeyPressListener(this$static.champPage, $pageToolBarVue$4(new pageToolBarVue$4(), this$static));
$addListener_8(this$static.selecteurTaillePage, $pageToolBarVue$5(new pageToolBarVue$5(), this$static));
return this$static;
}
 
function $rafraichir_12(this$static, nouvelleDonnees){
var page;
if (nouvelleDonnees != null) {
page = nouvelleDonnees;
this$static.pageTotale = page[0];
this$static.pageCourante = page[1];
this$static.taillePage = page[2];
this$static.nbElement = page[3];
if (this$static.pageCourante >= this$static.pageTotale && this$static.pageCourante != 0) {
this$static.pageCourante = this$static.pageTotale - 1;
$changerNumeroPage(this$static.iMediateur, this$static.pageCourante);
}
}
$rafraichirNumeroPage_0(this$static);
}
 
function $rafraichirNumeroPage_0(this$static){
var tbi, tbi_0, tbi_1, tbi_2;
tbi = this$static.surTotalPage.jsObj;
tbi.el.innerHTML = ' sur ' + this$static.pageTotale;
if (this$static.nbElement == 0) {
this$static.champPage.setValue_1('0');
tbi_0 = this$static.intervalleElements.jsObj;
tbi_0.el.innerHTML = 'Images 0 - 0 sur 0';
}
else {
this$static.champPage.setValue_1('' + (this$static.pageCourante + 1));
if (this$static.pageCourante + 1 != this$static.pageTotale) {
tbi_1 = this$static.intervalleElements.jsObj;
tbi_1.el.innerHTML = 'Images ' + this$static.pageCourante * this$static.taillePage + ' - ' + (this$static.pageCourante + 1) * this$static.taillePage + ' sur ' + this$static.nbElement;
}
else {
tbi_2 = this$static.intervalleElements.jsObj;
tbi_2.el.innerHTML = 'Images ' + this$static.pageCourante * this$static.taillePage + ' - ' + this$static.nbElement + ' sur ' + this$static.nbElement;
}
}
}
 
function getClass_391(){
return Lorg_tela_1botanica_client_vues_pageToolBarVue_2_classLit;
}
 
function pageToolBarVue(){
}
 
_ = pageToolBarVue.prototype = new Toolbar();
_.getClass$ = getClass_391;
_.typeId$ = 232;
_.iMediateur = null;
_.nbElement = 0;
_.pageCourante = 0;
_.pageTotale = 1;
_.taillePage = 0;
function $pageToolBarVue$1(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_386(){
return Lorg_tela_1botanica_client_vues_pageToolBarVue$1_2_classLit;
}
 
function onClick_18(button, e){
if (this.this$0.pageCourante > 0) {
--this.this$0.pageCourante;
$rafraichirNumeroPage_0(this.this$0);
$changerNumeroPage(this.this$0.iMediateur, this.this$0.pageCourante);
}
}
 
function pageToolBarVue$1(){
}
 
_ = pageToolBarVue$1.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_386;
_.onClick_0 = onClick_18;
_.typeId$ = 0;
_.this$0 = null;
function $pageToolBarVue$2(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_387(){
return Lorg_tela_1botanica_client_vues_pageToolBarVue$2_2_classLit;
}
 
function onClick_19(button, e){
if (this.this$0.pageCourante < this.this$0.pageTotale - 1) {
++this.this$0.pageCourante;
$rafraichirNumeroPage_0(this.this$0);
$changerNumeroPage(this.this$0.iMediateur, this.this$0.pageCourante);
}
}
 
function pageToolBarVue$2(){
}
 
_ = pageToolBarVue$2.prototype = new ButtonListenerAdapter();
_.getClass$ = getClass_387;
_.onClick_0 = onClick_19;
_.typeId$ = 0;
_.this$0 = null;
function $pageToolBarVue$3(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_388(){
return Lorg_tela_1botanica_client_vues_pageToolBarVue$3_2_classLit;
}
 
function onFocus_1(field){
$focus_0(this.this$0.champPage, true);
}
 
function onSpecialKey_1(field_0, e){
var $e0, nouvellePage, field;
if ($getKey(e) == ($clinit_122() , ENTER)) {
nouvellePage = this.this$0.pageCourante;
try {
nouvellePage = __parseAndValidateInt((field = this.this$0.champPage.getOrCreateJsObj() , field.getRawValue()), 10, -2147483648, 2147483647);
}
catch ($e0) {
$e0 = caught($e0);
if (instanceOf($e0, 73)) {
$rafraichirNumeroPage_0(this.this$0);
$focus_0(this.this$0.champPage, true);
return;
}
else
throw $e0;
}
if (nouvellePage != this.this$0.pageCourante + 1 && nouvellePage > 0 && nouvellePage <= this.this$0.pageTotale) {
this.this$0.pageCourante = nouvellePage - 1;
$changerNumeroPage(this.this$0.iMediateur, this.this$0.pageCourante);
}
else {
$rafraichirNumeroPage_0(this.this$0);
$focus_0(this.this$0.champPage, true);
}
}
}
 
function pageToolBarVue$3(){
}
 
_ = pageToolBarVue$3.prototype = new TextFieldListenerAdapter();
_.getClass$ = getClass_388;
_.onFocus = onFocus_1;
_.onSpecialKey = onSpecialKey_1;
_.typeId$ = 0;
_.this$0 = null;
function $pageToolBarVue$4(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function execute_25(e){
if (null != String.fromCharCode($getCharCode(e) & 65535).match(/\d/)) {
return;
}
if ($getKey(e) == ($clinit_122() , ENTER) || $getKey(e) == BACKSPACE) {
return;
}
else {
$rafraichirNumeroPage_0(this.this$0);
$stopEvent(e);
}
}
 
function getClass_389(){
return Lorg_tela_1botanica_client_vues_pageToolBarVue$4_2_classLit;
}
 
function pageToolBarVue$4(){
}
 
_ = pageToolBarVue$4.prototype = new Object_0();
_.execute_0 = execute_25;
_.getClass$ = getClass_389;
_.typeId$ = 0;
_.this$0 = null;
function $pageToolBarVue$5(this$static, this$0){
this$static.this$0 = this$0;
return this$static;
}
 
function getClass_390(){
return Lorg_tela_1botanica_client_vues_pageToolBarVue$5_2_classLit;
}
 
function onSelect_3(comboBox, record_0, index){
var nouvelleTaillePage, nouvelleTaillePageString, record, value;
nouvelleTaillePageString = (record = $getAt(comboBox.store_0, index).getJsObj() , value = record.get('nb_page') , value === undefined || (value == null || value === '')?null:value.toString());
nouvelleTaillePage = __parseAndValidateInt(nouvelleTaillePageString, 10, -2147483648, 2147483647);
if (nouvelleTaillePage != this.this$0.taillePage) {
$changerTaillePage(this.this$0.iMediateur, nouvelleTaillePage);
}
$setValue_0(comboBox, nouvelleTaillePageString);
}
 
function pageToolBarVue$5(){
}
 
_ = pageToolBarVue$5.prototype = new ComboBoxListenerAdapter();
_.getClass$ = getClass_390;
_.onSelect = onSelect_3;
_.typeId$ = 0;
_.this$0 = null;
function init_36(){
var carnetEnLigneMediateur;
!!$stats && $stats({moduleName:$moduleName, subSystem:'startup', evtGroup:'moduleStartup', millis:(new Date()).getTime(), type:'onModuleLoadStart', className:'org.tela_botanica.client.cel2'});
carnetEnLigneMediateur = Instance();
$Viewport(new Viewport(), carnetEnLigneMediateur.panneauPrincipalCarnetEnLigne);
$getEtatUtilisateur(carnetEnLigneMediateur.carnetEnLigneModele, carnetEnLigneMediateur);
}
 
function gwtOnLoad(errFn, modName, modBase){
$moduleName = modName;
$moduleBase = modBase;
if (errFn)
try {
init_36();
}
catch (e) {
errFn(modName);
}
else {
init_36();
}
}
 
function nullMethod(){
}
 
var _3Lcom_google_gwt_animation_client_Animation_2_classLit = createForArray('[Lcom.google.gwt.animation.client.', 'Animation;'), Ljava_lang_Object_2_classLit = createForClass('java.lang.', 'Object'), Lcom_google_gwt_animation_client_Animation_2_classLit = createForClass('com.google.gwt.animation.client.', 'Animation'), Lcom_google_gwt_user_client_Timer_2_classLit = createForClass('com.google.gwt.user.client.', 'Timer'), Lcom_google_gwt_animation_client_Animation$1_2_classLit = createForClass('com.google.gwt.animation.client.', 'Animation$1'), Ljava_lang_Throwable_2_classLit = createForClass('java.lang.', 'Throwable'), Ljava_lang_Exception_2_classLit = createForClass('java.lang.', 'Exception'), Ljava_lang_RuntimeException_2_classLit = createForClass('java.lang.', 'RuntimeException'), Lcom_google_gwt_core_client_JavaScriptException_2_classLit = createForClass('com.google.gwt.core.client.', 'JavaScriptException'), Lcom_google_gwt_core_client_JavaScriptObject_2_classLit = createForClass('com.google.gwt.core.client.', 'JavaScriptObject$'), Lcom_google_gwt_http_client_Request_2_classLit = createForClass('com.google.gwt.http.client.', 'Request'), Lcom_google_gwt_http_client_Response_2_classLit = createForClass('com.google.gwt.http.client.', 'Response'), Lcom_google_gwt_http_client_Request$1_2_classLit = createForClass('com.google.gwt.http.client.', 'Request$1'), Lcom_google_gwt_http_client_Request$2_2_classLit = createForClass('com.google.gwt.http.client.', 'Request$2'), Lcom_google_gwt_user_client_impl_HTTPRequestImpl_2_classLit = createForClass('com.google.gwt.user.client.impl.', 'HTTPRequestImpl'), Lcom_google_gwt_http_client_RequestBuilder_2_classLit = createForClass('com.google.gwt.http.client.', 'RequestBuilder'), Lcom_google_gwt_http_client_RequestBuilder$Method_2_classLit = createForClass('com.google.gwt.http.client.', 'RequestBuilder$Method'), Lcom_google_gwt_http_client_RequestException_2_classLit = createForClass('com.google.gwt.http.client.', 'RequestException'), Lcom_google_gwt_http_client_RequestPermissionException_2_classLit = createForClass('com.google.gwt.http.client.', 'RequestPermissionException'), Lcom_google_gwt_http_client_RequestTimeoutException_2_classLit = createForClass('com.google.gwt.http.client.', 'RequestTimeoutException'), _3Ljava_lang_String_2_classLit = createForArray('[Ljava.lang.', 'String;'), Ljava_util_Date_2_classLit = createForClass('java.util.', 'Date'), _3I_classLit = createForArray('', '[I'), Lcom_google_gwt_i18n_client_Dictionary_2_classLit = createForClass('com.google.gwt.i18n.client.', 'Dictionary'), Ljava_lang_Enum_2_classLit = createForClass('java.lang.', 'Enum'), Lcom_google_gwt_json_client_JSONValue_2_classLit = createForClass('com.google.gwt.json.client.', 'JSONValue'), Lcom_google_gwt_json_client_JSONArray_2_classLit = createForClass('com.google.gwt.json.client.', 'JSONArray'), Lcom_google_gwt_json_client_JSONBoolean_2_classLit = createForClass('com.google.gwt.json.client.', 'JSONBoolean'), Lcom_google_gwt_json_client_JSONException_2_classLit = createForClass('com.google.gwt.json.client.', 'JSONException'), Lcom_google_gwt_json_client_JSONNull_2_classLit = createForClass('com.google.gwt.json.client.', 'JSONNull'), Lcom_google_gwt_json_client_JSONNumber_2_classLit = createForClass('com.google.gwt.json.client.', 'JSONNumber'), Lcom_google_gwt_json_client_JSONObject_2_classLit = createForClass('com.google.gwt.json.client.', 'JSONObject'), Lcom_google_gwt_json_client_JSONString_2_classLit = createForClass('com.google.gwt.json.client.', 'JSONString'), _3_3D_classLit = createForArray('', '[[D'), Lcom_google_gwt_user_client_impl_DocumentRootImpl_2_classLit = createForClass('com.google.gwt.user.client.impl.', 'DocumentRootImpl'), Lcom_google_gwt_user_client_ui_impl_PopupImplMozilla$1_2_classLit = createForClass('com.google.gwt.user.client.ui.impl.', 'PopupImplMozilla$1'), Lcom_google_gwt_user_client_ui_UIObject_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'UIObject'), Lcom_google_gwt_user_client_ui_Widget_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'Widget'), Lcom_google_gwt_user_client_ui_Panel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'Panel'), Lcom_google_gwt_user_client_ui_ComplexPanel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'ComplexPanel'), Lcom_google_gwt_user_client_ui_AbsolutePanel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'AbsolutePanel'), Lcom_google_gwt_user_client_ui_FocusWidget_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'FocusWidget'), Lcom_google_gwt_user_client_ui_ButtonBase_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'ButtonBase'), Lcom_google_gwt_user_client_ui_Button_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'Button'), Ljava_util_AbstractCollection_2_classLit = createForClass('java.util.', 'AbstractCollection'), Ljava_util_AbstractList_2_classLit = createForClass('java.util.', 'AbstractList'), Ljava_util_ArrayList_2_classLit = createForClass('java.util.', 'ArrayList'), Lcom_google_gwt_user_client_ui_ClickListenerCollection_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'ClickListenerCollection'), Lcom_google_gwt_user_client_ui_SimplePanel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'SimplePanel'), Lcom_google_gwt_user_client_ui_PopupPanel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'PopupPanel'), Lcom_google_gwt_user_client_ui_DecoratedPopupPanel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'DecoratedPopupPanel'), Lcom_google_gwt_user_client_ui_DecoratorPanel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'DecoratorPanel'), Lcom_google_gwt_user_client_ui_DialogBox_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'DialogBox'), Lcom_google_gwt_user_client_ui_Label_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'Label'), Lcom_google_gwt_user_client_ui_HTML_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'HTML'), Lcom_google_gwt_user_client_ui_Image_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'Image'), Lcom_google_gwt_user_client_ui_Image$State_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'Image$State'), Lcom_google_gwt_user_client_ui_Image$UnclippedState_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'Image$UnclippedState'), Lcom_google_gwt_user_client_ui_MouseListenerAdapter_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'MouseListenerAdapter'), Lcom_google_gwt_user_client_ui_MouseListenerCollection_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'MouseListenerCollection'), Lcom_google_gwt_user_client_ui_PopupPanel$AnimationType_2_classLit = createForEnum('com.google.gwt.user.client.ui.', 'PopupPanel$AnimationType'), Lcom_google_gwt_user_client_ui_PopupPanel$ResizeAnimation_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'PopupPanel$ResizeAnimation'), Lcom_google_gwt_user_client_ui_PopupPanel$ResizeAnimation$1_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'PopupPanel$ResizeAnimation$1'), Lcom_google_gwt_user_client_ui_RootPanel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'RootPanel'), Lcom_google_gwt_user_client_ui_RootPanel$DefaultRootPanel_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'RootPanel$DefaultRootPanel'), Lcom_google_gwt_user_client_ui_RootPanel$1_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'RootPanel$1'), Lcom_google_gwt_user_client_ui_SimplePanel$1_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'SimplePanel$1'), _3Lcom_google_gwt_user_client_ui_Widget_2_classLit = createForArray('[Lcom.google.gwt.user.client.ui.', 'Widget;'), Lcom_google_gwt_user_client_ui_WidgetCollection_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'WidgetCollection'), Lcom_google_gwt_user_client_ui_WidgetCollection$WidgetIterator_2_classLit = createForClass('com.google.gwt.user.client.ui.', 'WidgetCollection$WidgetIterator'), Lcom_google_gwt_user_client_CommandCanceledException_2_classLit = createForClass('com.google.gwt.user.client.', 'CommandCanceledException'), Lcom_google_gwt_user_client_CommandExecutor_2_classLit = createForClass('com.google.gwt.user.client.', 'CommandExecutor'), Lcom_google_gwt_user_client_CommandExecutor$CircularIterator_2_classLit = createForClass('com.google.gwt.user.client.', 'CommandExecutor$CircularIterator'), Lcom_google_gwt_user_client_CommandExecutor$1_2_classLit = createForClass('com.google.gwt.user.client.', 'CommandExecutor$1'), Lcom_google_gwt_user_client_CommandExecutor$2_2_classLit = createForClass('com.google.gwt.user.client.', 'CommandExecutor$2'), Lcom_google_gwt_user_client_Timer$1_2_classLit = createForClass('com.google.gwt.user.client.', 'Timer$1'), Lcom_gwtext_client_core_JsObject_2_classLit = createForClass('com.gwtext.client.core.', 'JsObject'), Lcom_gwtext_client_core_BaseConfig_2_classLit = createForClass('com.gwtext.client.core.', 'BaseConfig'), Lcom_gwtext_client_core_BaseElement_2_classLit = createForClass('com.gwtext.client.core.', 'BaseElement'), _3Lcom_google_gwt_core_client_JavaScriptObject_2_classLit = createForArray('[Lcom.google.gwt.core.client.', 'JavaScriptObject$;'), Lcom_gwtext_client_core_DomConfig_2_classLit = createForClass('com.gwtext.client.core.', 'DomConfig'), Lcom_gwtext_client_core_EventObject_2_classLit = createForClass('com.gwtext.client.core.', 'EventObject'), Lcom_gwtext_client_core_ExtElement_2_classLit = createForClass('com.gwtext.client.core.', 'ExtElement'), Lcom_gwtext_client_core_GenericConfig_2_classLit = createForClass('com.gwtext.client.core.', 'GenericConfig'), Lcom_gwtext_client_core_ListenerConfig_2_classLit = createForClass('com.gwtext.client.core.', 'ListenerConfig'), Lcom_gwtext_client_core_Margins_2_classLit = createForClass('com.gwtext.client.core.', 'Margins'), Lcom_gwtext_client_core_NameValuePair_2_classLit = createForClass('com.gwtext.client.core.', 'NameValuePair'), Lcom_gwtext_client_core_Paddings_2_classLit = createForClass('com.gwtext.client.core.', 'Paddings'), Lcom_gwtext_client_core_Position_2_classLit = createForClass('com.gwtext.client.core.', 'Position'), Lcom_gwtext_client_core_RegionPosition_2_classLit = createForClass('com.gwtext.client.core.', 'RegionPosition'), Lcom_gwtext_client_core_Template_2_classLit = createForClass('com.gwtext.client.core.', 'Template'), Lcom_gwtext_client_core_UrlParam_2_classLit = createForClass('com.gwtext.client.core.', 'UrlParam'), Lcom_gwtext_client_core_XTemplate_2_classLit = createForClass('com.gwtext.client.core.', 'XTemplate'), Lcom_gwtext_client_data_Reader_2_classLit = createForClass('com.gwtext.client.data.', 'Reader'), Lcom_gwtext_client_data_ArrayReader_2_classLit = createForClass('com.gwtext.client.data.', 'ArrayReader'), Lcom_gwtext_client_data_DataProxy_2_classLit = createForClass('com.gwtext.client.data.', 'DataProxy'), Lcom_gwtext_client_data_FieldDef_2_classLit = createForClass('com.gwtext.client.data.', 'FieldDef'), Lcom_gwtext_client_data_IntegerFieldDef_2_classLit = createForClass('com.gwtext.client.data.', 'IntegerFieldDef'), Lcom_gwtext_client_data_MemoryProxy_2_classLit = createForClass('com.gwtext.client.data.', 'MemoryProxy'), _3Lcom_gwtext_client_data_Node_2_classLit = createForArray('[Lcom.gwtext.client.data.', 'Node;'), Lcom_gwtext_client_data_Node_2_classLit = createForClass('com.gwtext.client.data.', 'Node'), Lcom_gwtext_client_data_Record_2_classLit = createForClass('com.gwtext.client.data.', 'Record'), Lcom_gwtext_client_data_Record$Operation_2_classLit = createForClass('com.gwtext.client.data.', 'Record$Operation'), _3_3Ljava_lang_Object_2_classLit = createForArray('[[Ljava.lang.', 'Object;'), Lcom_gwtext_client_data_RecordDef_2_classLit = createForClass('com.gwtext.client.data.', 'RecordDef'), _3Ljava_lang_Object_2_classLit = createForArray('[Ljava.lang.', 'Object;'), _3Lcom_gwtext_client_data_FieldDef_2_classLit = createForArray('[Lcom.gwtext.client.data.', 'FieldDef;'), Lcom_gwtext_client_data_Store_2_classLit = createForClass('com.gwtext.client.data.', 'Store'), Lcom_gwtext_client_data_SimpleStore_2_classLit = createForClass('com.gwtext.client.data.', 'SimpleStore'), _3Lcom_gwtext_client_core_UrlParam_2_classLit = createForArray('[Lcom.gwtext.client.core.', 'UrlParam;'), _3Lcom_gwtext_client_data_Record_2_classLit = createForArray('[Lcom.gwtext.client.data.', 'Record;'), Lcom_gwtext_client_data_StringFieldDef_2_classLit = createForClass('com.gwtext.client.data.', 'StringFieldDef'), Lcom_gwtext_client_data_Tree_2_classLit = createForClass('com.gwtext.client.data.', 'Tree'), Lcom_gwtext_client_dd_DragDrop_2_classLit = createForClass('com.gwtext.client.dd.', 'DragDrop'), Lcom_gwtext_client_dd_DD_2_classLit = createForClass('com.gwtext.client.dd.', 'DD'), Lcom_gwtext_client_dd_DDProxy_2_classLit = createForClass('com.gwtext.client.dd.', 'DDProxy'), Lcom_gwtext_client_dd_DDTarget_2_classLit = createForClass('com.gwtext.client.dd.', 'DDTarget'), Lcom_gwtext_client_dd_DragData_2_classLit = createForClass('com.gwtext.client.dd.', 'DragData'), _3Lcom_gwtext_client_dd_DragDrop_2_classLit = createForArray('[Lcom.gwtext.client.dd.', 'DragDrop;'), Lcom_gwtext_client_dd_DragDrop$1_2_classLit = createForClass('com.gwtext.client.dd.', 'DragDrop$1'), Lcom_gwtext_client_dd_DragDropConfig_2_classLit = createForClass('com.gwtext.client.dd.', 'DragDropConfig'), Lcom_gwtext_client_dd_DragSource_2_classLit = createForClass('com.gwtext.client.dd.', 'DragSource'), Lcom_gwtext_client_dd_DropTarget_2_classLit = createForClass('com.gwtext.client.dd.', 'DropTarget'), Lcom_gwtext_client_dd_DropTargetConfig_2_classLit = createForClass('com.gwtext.client.dd.', 'DropTargetConfig'), _3Lcom_gwtext_client_widgets_Component_2_classLit = createForArray('[Lcom.gwtext.client.widgets.', 'Component;'), Lcom_gwtext_client_util_KeyMap_2_classLit = createForClass('com.gwtext.client.util.', 'KeyMap'), Lcom_gwtext_client_widgets_event_ComponentListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.event.', 'ComponentListenerAdapter'), Lcom_gwtext_client_widgets_event_BoxComponentListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.event.', 'BoxComponentListenerAdapter'), Lcom_gwtext_client_widgets_event_ButtonListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.event.', 'ButtonListenerAdapter'), Lcom_gwtext_client_widgets_event_ContainerListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.event.', 'ContainerListenerAdapter'), Lcom_gwtext_client_widgets_event_DataViewListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.event.', 'DataViewListenerAdapter'), Lcom_gwtext_client_widgets_event_PanelListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.event.', 'PanelListenerAdapter'), Lcom_gwtext_client_widgets_event_WindowListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.event.', 'WindowListenerAdapter'), Lcom_gwtext_client_widgets_form_event_ComboBoxCallback_2_classLit = createForClass('com.gwtext.client.widgets.form.event.', 'ComboBoxCallback'), Lcom_gwtext_client_widgets_form_event_FieldListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.form.event.', 'FieldListenerAdapter'), Lcom_gwtext_client_widgets_form_event_ComboBoxListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.form.event.', 'ComboBoxListenerAdapter'), Lcom_gwtext_client_widgets_form_event_TextFieldListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.form.event.', 'TextFieldListenerAdapter'), Lcom_gwtext_client_widgets_Component_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component'), Lcom_gwtext_client_widgets_BoxComponent_2_classLit = createForClass('com.gwtext.client.widgets.', 'BoxComponent'), Lcom_gwtext_client_widgets_form_Field_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'Field'), Lcom_gwtext_client_widgets_form_Checkbox_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'Checkbox'), Lcom_gwtext_client_widgets_form_TextField_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'TextField'), Lcom_gwtext_client_widgets_form_ComboBox_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'ComboBox'), Lcom_gwtext_client_widgets_form_ComboBox$Mode_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'ComboBox$Mode'), Lcom_gwtext_client_widgets_form_ComboBox$Trigger_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'ComboBox$Trigger'), Lcom_gwtext_client_widgets_form_DateField_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'DateField'), Lcom_gwtext_client_widgets_Container_2_classLit = createForClass('com.gwtext.client.widgets.', 'Container'), Lcom_gwtext_client_widgets_Panel_2_classLit = createForClass('com.gwtext.client.widgets.', 'Panel'), Lcom_gwtext_client_widgets_form_FieldSet_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'FieldSet'), Lcom_gwtext_client_widgets_form_FormPanel_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'FormPanel'), Lcom_gwtext_client_widgets_form_Hidden_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'Hidden'), Lcom_gwtext_client_widgets_form_HtmlEditor_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'HtmlEditor'), Lcom_gwtext_client_widgets_form_Label_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'Label'), Lcom_gwtext_client_widgets_form_NumberField_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'NumberField'), Lcom_gwtext_client_widgets_form_Radio_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'Radio'), Lcom_gwtext_client_widgets_form_TextArea_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'TextArea'), Lcom_gwtext_client_widgets_form_TextField$1_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'TextField$1'), Lcom_gwtext_client_widgets_form_TextField$4_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'TextField$4'), Lcom_gwtext_client_widgets_form_TextField$5_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'TextField$5'), Lcom_gwtext_client_widgets_form_TimeField_2_classLit = createForClass('com.gwtext.client.widgets.form.', 'TimeField'), Lcom_gwtext_client_widgets_grid_event_GridCellListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.grid.event.', 'GridCellListenerAdapter'), Lcom_gwtext_client_widgets_grid_event_RowSelectionListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.grid.event.', 'RowSelectionListenerAdapter'), Lcom_gwtext_client_widgets_grid_AbstractSelectionModel_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'AbstractSelectionModel'), Lcom_gwtext_client_widgets_grid_BaseColumnConfig_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'BaseColumnConfig'), Lcom_gwtext_client_widgets_grid_ColumnConfig_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'ColumnConfig'), Lcom_gwtext_client_widgets_grid_ColumnModel_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'ColumnModel'), Lcom_gwtext_client_widgets_grid_ColumnModel$1_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'ColumnModel$1'), Lcom_gwtext_client_widgets_grid_GridPanel_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'GridPanel'), Lcom_gwtext_client_widgets_grid_EditorGridPanel_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'EditorGridPanel'), Lcom_gwtext_client_widgets_grid_GridDragData_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'GridDragData'), Lcom_gwtext_client_widgets_grid_GridView_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'GridView'), Lcom_gwtext_client_widgets_grid_PropertyGridPanel_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'PropertyGridPanel'), Lcom_gwtext_client_widgets_grid_PropertyGridPanel$1_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'PropertyGridPanel$1'), Lcom_gwtext_client_widgets_grid_RowParams_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'RowParams'), Lcom_gwtext_client_widgets_grid_RowSelectionModel_2_classLit = createForClass('com.gwtext.client.widgets.grid.', 'RowSelectionModel'), Lcom_gwtext_client_widgets_layout_ContainerLayout_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'ContainerLayout'), Lcom_gwtext_client_widgets_layout_FitLayout_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'FitLayout'), Lcom_gwtext_client_widgets_layout_AnchorLayout_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'AnchorLayout'), Lcom_gwtext_client_widgets_layout_LayoutData_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'LayoutData'), Lcom_gwtext_client_widgets_layout_BorderLayout_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'BorderLayout'), Lcom_gwtext_client_widgets_layout_BorderLayoutData_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'BorderLayoutData'), Lcom_gwtext_client_widgets_layout_ColumnLayout_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'ColumnLayout'), Lcom_gwtext_client_widgets_layout_ColumnLayoutData_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'ColumnLayoutData'), Lcom_gwtext_client_widgets_layout_FormLayout_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'FormLayout'), Lcom_gwtext_client_widgets_layout_TableLayout_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'TableLayout'), Lcom_gwtext_client_widgets_layout_VerticalLayout_2_classLit = createForClass('com.gwtext.client.widgets.layout.', 'VerticalLayout'), Lcom_gwtext_client_widgets_menu_event_MenuListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.menu.event.', 'MenuListenerAdapter'), Lcom_gwtext_client_widgets_menu_BaseItem_2_classLit = createForClass('com.gwtext.client.widgets.menu.', 'BaseItem'), Lcom_gwtext_client_widgets_menu_Item_2_classLit = createForClass('com.gwtext.client.widgets.menu.', 'Item'), Lcom_gwtext_client_widgets_menu_Menu_2_classLit = createForClass('com.gwtext.client.widgets.menu.', 'Menu'), Lcom_gwtext_client_widgets_tree_event_TreePanelListenerAdapter_2_classLit = createForClass('com.gwtext.client.widgets.tree.event.', 'TreePanelListenerAdapter'), Lcom_gwtext_client_widgets_tree_TreeDragData_2_classLit = createForClass('com.gwtext.client.widgets.tree.', 'TreeDragData'), Lcom_gwtext_client_widgets_Editor_2_classLit = createForClass('com.gwtext.client.widgets.', 'Editor'), Lcom_gwtext_client_widgets_tree_TreeEditor_2_classLit = createForClass('com.gwtext.client.widgets.tree.', 'TreeEditor'), Lcom_gwtext_client_widgets_tree_TreeNode_2_classLit = createForClass('com.gwtext.client.widgets.tree.', 'TreeNode'), Lcom_gwtext_client_widgets_tree_TreeNodeUI_2_classLit = createForClass('com.gwtext.client.widgets.tree.', 'TreeNodeUI'), Lcom_gwtext_client_widgets_tree_TreePanel_2_classLit = createForClass('com.gwtext.client.widgets.tree.', 'TreePanel'), Lcom_gwtext_client_widgets_tree_TreePanel$3_2_classLit = createForClass('com.gwtext.client.widgets.tree.', 'TreePanel$3'), Lcom_gwtext_client_widgets_BaseExtWidget_2_classLit = createForClass('com.gwtext.client.widgets.', 'BaseExtWidget'), Lcom_gwtext_client_widgets_Button_2_classLit = createForClass('com.gwtext.client.widgets.', 'Button'), Lcom_gwtext_client_widgets_ColorPalette_2_classLit = createForClass('com.gwtext.client.widgets.', 'ColorPalette'), Lcom_gwtext_client_widgets_Component$1_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$1'), Lcom_gwtext_client_widgets_Component$1$1_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$1$1'), Lcom_gwtext_client_widgets_Component$2_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$2'), Lcom_gwtext_client_widgets_Component$3_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$3'), Lcom_gwtext_client_widgets_Component$3$1_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$3$1'), Lcom_gwtext_client_widgets_Component$4_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$4'), Lcom_gwtext_client_widgets_Component$5_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$5'), Lcom_gwtext_client_widgets_Component$6_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$6'), Lcom_gwtext_client_widgets_Component$6$1_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$6$1'), Lcom_gwtext_client_widgets_Component$7_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$7'), Lcom_gwtext_client_widgets_Component$8_2_classLit = createForClass('com.gwtext.client.widgets.', 'Component$8'), Lcom_gwtext_client_widgets_SplitButton_2_classLit = createForClass('com.gwtext.client.widgets.', 'SplitButton'), Lcom_gwtext_client_widgets_CycleButton_2_classLit = createForClass('com.gwtext.client.widgets.', 'CycleButton'), Lcom_gwtext_client_widgets_DataView_2_classLit = createForClass('com.gwtext.client.widgets.', 'DataView'), Lcom_gwtext_client_widgets_DataView$Data_2_classLit = createForClass('com.gwtext.client.widgets.', 'DataView$Data'), Lcom_gwtext_client_widgets_DatePicker_2_classLit = createForClass('com.gwtext.client.widgets.', 'DatePicker'), Lcom_gwtext_client_widgets_Toolbar_2_classLit = createForClass('com.gwtext.client.widgets.', 'Toolbar'), Lcom_gwtext_client_widgets_PagingToolbar_2_classLit = createForClass('com.gwtext.client.widgets.', 'PagingToolbar'), Lcom_gwtext_client_widgets_PanelDragData_2_classLit = createForClass('com.gwtext.client.widgets.', 'PanelDragData'), Lcom_gwtext_client_widgets_ProgressBar_2_classLit = createForClass('com.gwtext.client.widgets.', 'ProgressBar'), Lcom_gwtext_client_widgets_TabPanel_2_classLit = createForClass('com.gwtext.client.widgets.', 'TabPanel'), Lcom_gwtext_client_widgets_ToolbarButton_2_classLit = createForClass('com.gwtext.client.widgets.', 'ToolbarButton'), Lcom_gwtext_client_widgets_ToolbarItem_2_classLit = createForClass('com.gwtext.client.widgets.', 'ToolbarItem'), Lcom_gwtext_client_widgets_ToolbarFill_2_classLit = createForClass('com.gwtext.client.widgets.', 'ToolbarFill'), Lcom_gwtext_client_widgets_ToolbarMenuButton_2_classLit = createForClass('com.gwtext.client.widgets.', 'ToolbarMenuButton'), Lcom_gwtext_client_widgets_ToolbarSpacer_2_classLit = createForClass('com.gwtext.client.widgets.', 'ToolbarSpacer'), Lcom_gwtext_client_widgets_ToolbarTextItem_2_classLit = createForClass('com.gwtext.client.widgets.', 'ToolbarTextItem'), Lcom_gwtext_client_widgets_Viewport_2_classLit = createForClass('com.gwtext.client.widgets.', 'Viewport'), Lcom_gwtext_client_widgets_WidgetComponent_2_classLit = createForClass('com.gwtext.client.widgets.', 'WidgetComponent'), Lcom_gwtext_client_widgets_WidgetComponent$1_2_classLit = createForClass('com.gwtext.client.widgets.', 'WidgetComponent$1'), Lcom_gwtext_client_widgets_Window_2_classLit = createForClass('com.gwtext.client.widgets.', 'Window'), Lcom_gwtext_client_widgets_Window$CloseAction_2_classLit = createForClass('com.gwtext.client.widgets.', 'Window$CloseAction'), Lcom_gwtextux_client_widgets_upload_UploadDialog_2_classLit = createForClass('com.gwtextux.client.widgets.upload.', 'UploadDialog'), Lcom_gwtextux_client_widgets_upload_UploadDialogListenerAdapter_2_classLit = createForClass('com.gwtextux.client.widgets.upload.', 'UploadDialogListenerAdapter'), Ljava_lang_ArithmeticException_2_classLit = createForClass('java.lang.', 'ArithmeticException'), Ljava_lang_IndexOutOfBoundsException_2_classLit = createForClass('java.lang.', 'IndexOutOfBoundsException'), Ljava_lang_ArrayStoreException_2_classLit = createForClass('java.lang.', 'ArrayStoreException'), Ljava_lang_Boolean_2_classLit = createForClass('java.lang.', 'Boolean'), Ljava_lang_Number_2_classLit = createForClass('java.lang.', 'Number'), _3C_classLit = createForArray('', '[C'), Ljava_lang_Class_2_classLit = createForClass('java.lang.', 'Class'), Ljava_lang_ClassCastException_2_classLit = createForClass('java.lang.', 'ClassCastException'), Ljava_lang_Double_2_classLit = createForClass('java.lang.', 'Double'), Ljava_lang_Float_2_classLit = createForClass('java.lang.', 'Float'), Ljava_lang_IllegalArgumentException_2_classLit = createForClass('java.lang.', 'IllegalArgumentException'), Ljava_lang_IllegalStateException_2_classLit = createForClass('java.lang.', 'IllegalStateException'), Ljava_lang_Integer_2_classLit = createForClass('java.lang.', 'Integer'), Ljava_lang_Long_2_classLit = createForClass('java.lang.', 'Long'), Ljava_lang_NullPointerException_2_classLit = createForClass('java.lang.', 'NullPointerException'), Ljava_lang_NumberFormatException_2_classLit = createForClass('java.lang.', 'NumberFormatException'), Ljava_lang_String_2_classLit = createForClass('java.lang.', 'String'), Ljava_lang_StringBuffer_2_classLit = createForClass('java.lang.', 'StringBuffer'), Ljava_lang_StringBuilder_2_classLit = createForClass('java.lang.', 'StringBuilder'), Ljava_lang_UnsupportedOperationException_2_classLit = createForClass('java.lang.', 'UnsupportedOperationException'), Ljava_util_AbstractMap_2_classLit = createForClass('java.util.', 'AbstractMap'), Ljava_util_AbstractHashMap_2_classLit = createForClass('java.util.', 'AbstractHashMap'), Ljava_util_AbstractSet_2_classLit = createForClass('java.util.', 'AbstractSet'), Ljava_util_AbstractHashMap$EntrySet_2_classLit = createForClass('java.util.', 'AbstractHashMap$EntrySet'), Ljava_util_AbstractHashMap$EntrySetIterator_2_classLit = createForClass('java.util.', 'AbstractHashMap$EntrySetIterator'), Ljava_util_AbstractMapEntry_2_classLit = createForClass('java.util.', 'AbstractMapEntry'), Ljava_util_AbstractHashMap$MapEntryNull_2_classLit = createForClass('java.util.', 'AbstractHashMap$MapEntryNull'), Ljava_util_AbstractHashMap$MapEntryString_2_classLit = createForClass('java.util.', 'AbstractHashMap$MapEntryString'), Ljava_util_AbstractList$IteratorImpl_2_classLit = createForClass('java.util.', 'AbstractList$IteratorImpl'), Ljava_util_AbstractMap$1_2_classLit = createForClass('java.util.', 'AbstractMap$1'), Ljava_util_AbstractMap$1$1_2_classLit = createForClass('java.util.', 'AbstractMap$1$1'), Ljava_util_HashMap_2_classLit = createForClass('java.util.', 'HashMap'), Ljava_util_HashSet_2_classLit = createForClass('java.util.', 'HashSet'), Ljava_util_MapEntryImpl_2_classLit = createForClass('java.util.', 'MapEntryImpl'), Ljava_util_MissingResourceException_2_classLit = createForClass('java.util.', 'MissingResourceException'), Ljava_util_NoSuchElementException_2_classLit = createForClass('java.util.', 'NoSuchElementException'), Ljava_util_Vector_2_classLit = createForClass('java.util.', 'Vector'), Lorg_tela_1botanica_client_image_ImageMediateur_2_classLit = createForClass('org.tela_botanica.client.image.', 'ImageMediateur'), Lorg_tela_1botanica_client_image_ImageMediateur$1_2_classLit = createForClass('org.tela_botanica.client.image.', 'ImageMediateur$1'), _3_3Ljava_lang_String_2_classLit = createForArray('[[Ljava.lang.', 'String;'), Lorg_tela_1botanica_client_image_ImageModele_2_classLit = createForClass('org.tela_botanica.client.image.', 'ImageModele'), Lorg_tela_1botanica_client_interfaces_IdVue_2_classLit = createForClass('org.tela_botanica.client.interfaces.', 'IdVue'), Lorg_tela_1botanica_client_interfaces_IdVue$1_2_classLit = createForClass('org.tela_botanica.client.interfaces.', 'IdVue$1'), Lorg_tela_1botanica_client_interfaces_IdVue$2_2_classLit = createForClass('org.tela_botanica.client.interfaces.', 'IdVue$2'), Lorg_tela_1botanica_client_interfaces_IdVue$3_2_classLit = createForClass('org.tela_botanica.client.interfaces.', 'IdVue$3'), Lorg_tela_1botanica_client_modeles_Configuration_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'Configuration'), Lorg_tela_1botanica_client_modeles_ImageAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ImageAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_ImageAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ImageAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_ImageAsynchroneDAO$2_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ImageAsynchroneDAO$2'), Lorg_tela_1botanica_client_modeles_ImageCarnet_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ImageCarnet'), Lorg_tela_1botanica_client_modeles_ImageUploaderAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ImageUploaderAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_ImageUploaderAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ImageUploaderAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_ImageUploaderAsynchroneDAO$2_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ImageUploaderAsynchroneDAO$2'), Lorg_tela_1botanica_client_modeles_LienImageAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'LienImageAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_LienImageAsynchroneDAO$2_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'LienImageAsynchroneDAO$2'), Lorg_tela_1botanica_client_modeles_ListeImageAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeImageAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_ListeImageAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeImageAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_ListeImageAsynchroneDAO$3_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeImageAsynchroneDAO$3'), Lorg_tela_1botanica_client_modeles_ListeImageCarnet_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeImageCarnet'), Lorg_tela_1botanica_client_modeles_ListeObservation_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeObservation'), Lorg_tela_1botanica_client_modeles_ListeObservationAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeObservationAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_ListeObservationAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeObservationAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_ListeReferentielCommune_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeReferentielCommune'), Lorg_tela_1botanica_client_modeles_ListeReferentielCommuneAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeReferentielCommuneAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_ListeReferentielCommuneAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeReferentielCommuneAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_ListeReferentielNom_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeReferentielNom'), Lorg_tela_1botanica_client_modeles_ListeReferentielNomAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeReferentielNomAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_ListeReferentielNomAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ListeReferentielNomAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'MotsClesAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'MotsClesAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$2_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'MotsClesAsynchroneDAO$2'), Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$3_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'MotsClesAsynchroneDAO$3'), Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$4_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'MotsClesAsynchroneDAO$4'), Lorg_tela_1botanica_client_modeles_MotsClesAsynchroneDAO$5_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'MotsClesAsynchroneDAO$5'), Lorg_tela_1botanica_client_modeles_NombreImageAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'NombreImageAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_NombreImageAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'NombreImageAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_NombreObservationAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'NombreObservationAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_NombreObservationAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'NombreObservationAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_Observation_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'Observation'), Lorg_tela_1botanica_client_modeles_ReferentielCommune_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ReferentielCommune'), Lorg_tela_1botanica_client_modeles_ReferentielNom_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'ReferentielNom'), Lorg_tela_1botanica_client_modeles_Utilisateur_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'Utilisateur'), Lorg_tela_1botanica_client_modeles_UtilisateurAsynchroneDAO_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'UtilisateurAsynchroneDAO'), Lorg_tela_1botanica_client_modeles_UtilisateurAsynchroneDAO$1_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'UtilisateurAsynchroneDAO$1'), Lorg_tela_1botanica_client_modeles_UtilisateurAsynchroneDAO$2_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'UtilisateurAsynchroneDAO$2'), Lorg_tela_1botanica_client_modeles_UtilisateurAsynchroneDAO$3_2_classLit = createForClass('org.tela_botanica.client.modeles.', 'UtilisateurAsynchroneDAO$3'), Lorg_tela_1botanica_client_observation_ObservationMediateur_2_classLit = createForClass('org.tela_botanica.client.observation.', 'ObservationMediateur'), Lorg_tela_1botanica_client_observation_ObservationModele_2_classLit = createForClass('org.tela_botanica.client.observation.', 'ObservationModele'), Lorg_tela_1botanica_client_vues_ArbreMotsClesFiltreVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesFiltreVue'), Lorg_tela_1botanica_client_vues_ArbreMotsClesFiltreVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesFiltreVue$1'), Lorg_tela_1botanica_client_vues_ArbreMotsClesFiltreVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesFiltreVue$2'), Lorg_tela_1botanica_client_vues_ArbreMotsClesFiltreVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesFiltreVue$3'), Lorg_tela_1botanica_client_vues_ArbreMotsClesVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesVue'), Lorg_tela_1botanica_client_vues_ArbreMotsClesVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesVue$1'), Lorg_tela_1botanica_client_vues_ArbreMotsClesVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesVue$2'), Lorg_tela_1botanica_client_vues_ArbreMotsClesVue$2$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesVue$2$1'), Lorg_tela_1botanica_client_vues_ArbreMotsClesVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ArbreMotsClesVue$3'), _3Lcom_google_gwt_user_client_ui_Image_2_classLit = createForArray('[Lcom.google.gwt.user.client.ui.', 'Image;'), Lorg_tela_1botanica_client_vues_BarreNotationVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarreNotationVue'), Lorg_tela_1botanica_client_vues_BarreNotationVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarreNotationVue$1'), Lorg_tela_1botanica_client_vues_BarreNotationVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarreNotationVue$2'), Lorg_tela_1botanica_client_vues_BarreOutilsVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarreOutilsVue'), Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarrePaginationObservationVue'), Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarrePaginationObservationVue$1'), Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarrePaginationObservationVue$2'), Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarrePaginationObservationVue$3'), Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$4_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarrePaginationObservationVue$4'), Lorg_tela_1botanica_client_vues_BarrePaginationObservationVue$5_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarrePaginationObservationVue$5'), Lorg_tela_1botanica_client_vues_BarreRechercheFiltreVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarreRechercheFiltreVue'), Lorg_tela_1botanica_client_vues_BarreRechercheFiltreVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'BarreRechercheFiltreVue$1'), Lorg_tela_1botanica_client_vues_DateFiltreVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'DateFiltreVue'), Lorg_tela_1botanica_client_vues_EtatConnexionVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'EtatConnexionVue'), Lorg_tela_1botanica_client_vues_EtatConnexionVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'EtatConnexionVue$1'), Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireDeConnexionVue'), Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireDeConnexionVue$1'), Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireDeConnexionVue$2'), Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireDeConnexionVue$3'), Lorg_tela_1botanica_client_vues_FormulaireDeConnexionVue$4_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireDeConnexionVue$4'), Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireSaisieObservationVue'), Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireSaisieObservationVue$1'), Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireSaisieObservationVue$2'), Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireSaisieObservationVue$3'), Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$4_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireSaisieObservationVue$4'), Lorg_tela_1botanica_client_vues_FormulaireSaisieObservationVue$5_2_classLit = createForClass('org.tela_botanica.client.vues.', 'FormulaireSaisieObservationVue$5'), Lorg_tela_1botanica_client_vues_GalerieImageVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'GalerieImageVue'), Lorg_tela_1botanica_client_vues_GalerieImageVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'GalerieImageVue$1'), Lorg_tela_1botanica_client_vues_GalerieImageVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'GalerieImageVue$2'), Lorg_tela_1botanica_client_vues_GalerieImageVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'GalerieImageVue$3'), Lorg_tela_1botanica_client_vues_GalerieImageVue$4_2_classLit = createForClass('org.tela_botanica.client.vues.', 'GalerieImageVue$4'), _3Lcom_gwtext_client_widgets_grid_ColumnConfig_2_classLit = createForArray('[Lcom.gwtext.client.widgets.grid.', 'ColumnConfig;'), Lorg_tela_1botanica_client_vues_ListeImageVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue'), Lorg_tela_1botanica_client_vues_ListeImageVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$1'), Lorg_tela_1botanica_client_vues_ListeImageVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$2'), Lorg_tela_1botanica_client_vues_ListeImageVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$3'), Lorg_tela_1botanica_client_vues_ListeImageVue$4_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$4'), Lorg_tela_1botanica_client_vues_ListeImageVue$5_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$5'), Lorg_tela_1botanica_client_vues_ListeImageVue$6_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$6'), Lorg_tela_1botanica_client_vues_ListeImageVue$7_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$7'), Lorg_tela_1botanica_client_vues_ListeImageVue$8_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$8'), Lorg_tela_1botanica_client_vues_ListeImageVue$9_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$9'), Lorg_tela_1botanica_client_vues_ListeImageVue$10_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeImageVue$10'), Lorg_tela_1botanica_client_vues_ListeObservationVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeObservationVue'), Lorg_tela_1botanica_client_vues_ListeObservationVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeObservationVue$1'), Lorg_tela_1botanica_client_vues_ListeObservationVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ListeObservationVue$2'), Lorg_tela_1botanica_client_vues_MenuFiltreVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'MenuFiltreVue'), Lorg_tela_1botanica_client_vues_MenuFiltreVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'MenuFiltreVue$1'), Lorg_tela_1botanica_client_vues_MenuIdVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'MenuIdVue'), Lorg_tela_1botanica_client_vues_MenuIdVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'MenuIdVue$1'), Lorg_tela_1botanica_client_vues_MenuImageVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'MenuImageVue'), Lorg_tela_1botanica_client_vues_MenuImageVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'MenuImageVue$1'), Lorg_tela_1botanica_client_vues_MiniListeObservationVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'MiniListeObservationVue'), Lorg_tela_1botanica_client_vues_MiniListeObservationVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'MiniListeObservationVue$1'), Lorg_tela_1botanica_client_vues_PanneauFiltresVues_2_classLit = createForClass('org.tela_botanica.client.vues.', 'PanneauFiltresVues'), Lorg_tela_1botanica_client_vues_PanneauFiltresVues$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'PanneauFiltresVues$1'), _3Lcom_gwtext_client_core_NameValuePair_2_classLit = createForArray('[Lcom.gwtext.client.core.', 'NameValuePair;'), Lorg_tela_1botanica_client_vues_PanneauMetadonneesVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'PanneauMetadonneesVue'), Lorg_tela_1botanica_client_vues_PanneauMetadonneesVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'PanneauMetadonneesVue$1'), Lorg_tela_1botanica_client_vues_PanneauMetadonneesVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'PanneauMetadonneesVue$2'), Lorg_tela_1botanica_client_vues_PanneauMetadonneesVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'PanneauMetadonneesVue$3'), Lorg_tela_1botanica_client_vues_SelectionFiltreVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'SelectionFiltreVue'), Lorg_tela_1botanica_client_vues_ZoomImageVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ZoomImageVue'), Lorg_tela_1botanica_client_vues_ZoomImageVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ZoomImageVue$1'), Lorg_tela_1botanica_client_vues_ZoomImageVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ZoomImageVue$2'), Lorg_tela_1botanica_client_vues_ZoomImageVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ZoomImageVue$3'), Lorg_tela_1botanica_client_vues_ZoomImageVue$4_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ZoomImageVue$4'), Lorg_tela_1botanica_client_vues_ZoomImageVue$5_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ZoomImageVue$5'), Lorg_tela_1botanica_client_vues_ZoomImageVue$6_2_classLit = createForClass('org.tela_botanica.client.vues.', 'ZoomImageVue$6'), Lorg_tela_1botanica_client_vues_pageToolBarVue_2_classLit = createForClass('org.tela_botanica.client.vues.', 'pageToolBarVue'), Lorg_tela_1botanica_client_vues_pageToolBarVue$1_2_classLit = createForClass('org.tela_botanica.client.vues.', 'pageToolBarVue$1'), Lorg_tela_1botanica_client_vues_pageToolBarVue$2_2_classLit = createForClass('org.tela_botanica.client.vues.', 'pageToolBarVue$2'), Lorg_tela_1botanica_client_vues_pageToolBarVue$3_2_classLit = createForClass('org.tela_botanica.client.vues.', 'pageToolBarVue$3'), Lorg_tela_1botanica_client_vues_pageToolBarVue$4_2_classLit = createForClass('org.tela_botanica.client.vues.', 'pageToolBarVue$4'), Lorg_tela_1botanica_client_vues_pageToolBarVue$5_2_classLit = createForClass('org.tela_botanica.client.vues.', 'pageToolBarVue$5'), Lorg_tela_1botanica_client_CarnetEnLigneMediateur_2_classLit = createForClass('org.tela_botanica.client.', 'CarnetEnLigneMediateur'), Lorg_tela_1botanica_client_CarnetEnLigneModele_2_classLit = createForClass('org.tela_botanica.client.', 'CarnetEnLigneModele');