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

com.altova.io.StringInput Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
// StringInput.java
// This file contains generated code and will be overwritten when you rerun code generation.package com.altova.io;

package com.altova.io;

import java.io.StringReader;

public class StringInput extends ReaderInput 
{
	private String content;
	
	public StringInput(String content)
	{
		super(new StringReader(content));
		this.content = content;
	}
	
	public String getString() {return content;}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy