How to control your swift variable casing from external jars

I have an external .jar file that has an object with a getter and setter:

// In Java
public class MyClass {
    private int myInteger;

    public int getMyInteger() {
        return myInteger;
    }

    public void setMyInteger(int newValue) {
        myInteger = newValue
    }
}

In Silver, I can access these properties in my swift code if I call the get/set methods as uppercase properties:

// In swift
...
let myObject = MyObject()
let myInteger = myObject.MyInteger
...

Is there any way to customize Silver’s settings so I could access these properties with lower case names? I am attempting to share some code between iOS and Android and being able to make the names lower case would be a HUGE time saver.

// Idealy in swift
...
let myObject = MyObject()
let myInteger = myObject.myInteger
...

if you turn on Cross Platform Compatibility, this will work, and the case of the first letter of members will be ignored.

That works perfectly - thanks!