net.java.html.lib.angular.ng.ComponentDefinition Maven / Gradle / Ivy
package net.java.html.lib.angular.ng;
public class ComponentDefinition extends net.java.html.lib.Objs {
protected ComponentDefinition(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(ComponentDefinition.class);
}
@Override
public ComponentDefinition create(java.lang.Object obj) {
return obj == null ? null : new ComponentDefinition(this, obj);
}
};
private static final $Constructor $AS = new $Constructor();
public static ComponentDefinition $as(java.lang.Object obj) {
return $AS.create(obj);
}
public net.java.html.lib.Objs.Property type = net.java.html.lib.Objs.Property.create(this, java.lang.String.class, "type");
public java.lang.String type() { return type.get(); }
public net.java.html.lib.Objs.Property loader = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.Function.class, "loader");
public net.java.html.lib.Function loader() { return loader.get(); }
public net.java.html.lib.Objs.Property component = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.angular.ng.Type.class, "component");
public net.java.html.lib.angular.ng.Type component() { return component.get(); }
}