I am thinking something like this:
class T {
static var A;
static setA(value) {
this.A = value;
}
static getA(value) {
return this.A;
}
}
so that it is stored in the class and can be both accessed and updated externally