net.java.html.lib.angular.Function Maven / Gradle / Ivy
package net.java.html.lib.angular;
public class Function extends net.java.html.lib.Objs {
protected Function(net.java.html.lib.Objs.Constructor> c, java.lang.Object js) {
super(c, js);
}
private static final class $Constructor extends net.java.html.lib.Objs.Constructor {
$Constructor() {
super(Function.class);
}
@Override
public Function create(java.lang.Object obj) {
return obj == null ? null : new Function(this, obj);
}
};
private static final $Constructor $AS = new $Constructor();
public static Function $as(java.lang.Object obj) {
return $AS.create(obj);
}
public net.java.html.lib.Objs.Property $inject = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Array.class, "$inject");
public java.lang.String[] $inject() { return $inject.get(); }
}