
com.flipboard.goldengate.BridgeParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Generate type safe java bridge into webview javascript code
The newest version!
package com.flipboard.goldengate;
import javax.lang.model.element.VariableElement;
import javax.lang.model.type.TypeMirror;
public class BridgeParameter {
public final String name;
public final TypeMirror type;
public BridgeParameter(VariableElement param) {
this.name = param.getSimpleName().toString();
this.type = param.asType();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy