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

org.wings.plaf.css.RawTextComponentCG Maven / Gradle / Ivy

The newest version!
package org.wings.plaf.css;

import java.io.IOException;

import org.wings.SComponent;
import org.wings.SRawTextComponent;
import org.wings.io.Device;

public final class RawTextComponentCG extends AbstractComponentCG implements org.wings.plaf.RawTextComponentCG {

	private static final long serialVersionUID = 1L;

	@Override
    public void writeInternal(Device device, SComponent component) throws IOException {
		SRawTextComponent _c = (SRawTextComponent) component;
        device.print("");
        device.print(_c.getText());
        device.print("");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy