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

org.picocontainer.lifecycle.ThirdPartyStartableComponent Maven / Gradle / Ivy

There is a newer version: 2.15
Show newest version
package org.picocontainer.lifecycle;

public class ThirdPartyStartableComponent implements ThirdPartyStartable {
    StringBuilder sb;
    public ThirdPartyStartableComponent(StringBuilder sb) {
        this.sb = sb;
    }

    public void sstart() {
        sb.append("<");
    }

    public void sstop() {
        sb.append(">");
    }

    public void ddispose() {
        sb.append("!");
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy