All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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.

There is a newer version: 2.0.7
Show newest version
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