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

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

// Input.java
// This file contains generated code and will be overwritten when you rerun code generation.package com.altova.io;

package com.altova.io;

public class Input 
{
	public final static byte IO_READER = 0;
	public final static byte IO_STREAM = 1;
	public final static byte IO_DOM = 2;
	
	private byte type;
	
	public Input(byte type)
	{
		this.type = type;
	}
	public byte getType() {return type;}
	public java.io.Reader getReader() {return null;}
	public java.io.InputStream getStream() {return null;} 
	public org.w3c.dom.Document getDocument() {return null;}
	public void close() throws Exception {}
	public String getFilename() {return "";}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy