Android Open Source - ascent Annotated Field






From Project

Back to project page ascent.

License

The source code is released under:

Apache License

If you think the Android project ascent listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package net.jamesbaca.ascent.internal;
//w w w .j av  a2 s . c o  m
import javax.lang.model.element.TypeElement;

class AnnotatedField {

    private final String name;
    private final String typeFaceName;
    private final TypeElement enclosingClassType;


    AnnotatedField(String name, String typeFaceName, TypeElement enclosingClassType) {
        this.name = name;
        this.typeFaceName = typeFaceName;
        this.enclosingClassType = enclosingClassType;

    }

    public String getName() {
        return name;
    }

    public String getTypefaceName() {
        return typeFaceName;
    }

    public TypeElement getEnclosingClassType() {
        return enclosingClassType;
    }

}




Java Source Code List

net.jamesbaca.ascent.Ascent.java
net.jamesbaca.ascent.FontHelper.java
net.jamesbaca.ascent.Font.java
net.jamesbaca.ascent.InjectedAscent.java
net.jamesbaca.ascent.demo.ApplicationTest.java
net.jamesbaca.ascent.demo.MainActivity.java
net.jamesbaca.ascent.internal.AnnotatedField.java
net.jamesbaca.ascent.internal.AnnotationsConverter.java
net.jamesbaca.ascent.internal.EnclosingClass.java
net.jamesbaca.ascent.internal.FontClassWriter.java
net.jamesbaca.ascent.internal.FontProcessor.java
net.jamesbaca.ascent.internal.WriterFactory.java
net.jamesbaca.ascent.mymodule.app.ApplicationTest.java
net.jamesbaca.ascent.mymodule.app.DemoApplicationModule.java
net.jamesbaca.ascent.mymodule.app.DemoApplication.java
net.jamesbaca.ascent.mymodule.app.MainActivity.java