Home | History | Annotate | Download | only in sourcer

Lines Matching refs:write

57         mOutput.write("package %s;\n", pkg);
60 mAccessSourcer.write(access & ~Opcodes.ACC_SUPER, AccessSourcer.IS_CLASS);
62 // write class name
63 mOutput.write(" class %s", mClassName);
66 // write template formal definition and super type
72 mOutput.write(sigSourcer.formalsToString());
75 mOutput.write(" extends %s", sigSourcer.getSuperClass().toString());
78 // write non-generic super type
79 mOutput.write(" extends %s", superName.replace('/', '.'));
82 // write interfaces defined, if any
84 mOutput.write(" implements ");
88 mOutput.write(", ");
90 mOutput.write(i.replace('/', '.'));
96 mOutput.write(" {\n");
101 mOutput.write("}\n");
106 mOutput.write("@%s", desc);
112 mOutput.write("%s /* non-standard class attribute */ ", attr.type);