net.sourceforge.retroweaver.runtime.java.lang.Appendable Maven / Gradle / Ivy
Go to download
Retroweaver is a tool, which converts Java 5 (or 6) compliant
class files into Java 1.x compliant class files. The jar file
retroweaver-rt.jar contains the runtime classes only.
To run the class processor, you need the jar file
retroweaver.jar.
package net.sourceforge.retroweaver.runtime.java.lang;
public interface Appendable {
Appendable append(char c);
Appendable append(CharSequence csq);
Appendable append(CharSequence csq, int start, int end);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy